* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Banner Topo */
.top-banner {
    background-color: #143747;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    z-index: 100;
}

.banner-text {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    min-height: 65.0vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 18px 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.text-content {
    max-width: 800px;
    width: 100%;
}

.contact-info {
    margin-bottom: 10px;
}

.phone-number {
    font-size: 16px;
    font-weight: 200;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #143747;
    letter-spacing: 1.5px;
    margin-left: 1%;
    margin-bottom: 1.5%;
    background-color: #24bf39;
    color: white;
    padding: 4px 16px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(36, 191, 57, 0.3);
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.0;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

.title-blue {
    color: #143747;
}

.title-yellow {
    color: #24bf39;
}

.description {
    margin-bottom: 40px;
}

.description p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.description strong {
    color: #333;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
    width: auto;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background: #24bf39;
    color: white;
}

.btn-call {
    background: #143747;
    color: white;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 275px;
    height: auto;
    border-radius: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .description p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image {
        width: 310px;
        max-width: 310px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 15px;
    }
    
    .description p {
        font-size: 19px;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .hero-image {
        width: 295px;
        max-width: 295px;
    }
}

/* Segunda Dobra - Meu Maior Diferencial */
.diferencial-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.diferencial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diferencial-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diferencial-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

.diferencial-content {
    max-width: 600px;
}

.diferencial-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.diferencial-description {
    margin-bottom: 40px;
}

.diferencial-description p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.diferencial-description strong {
    color: #333;
    font-weight: 700;
}

.diferencial-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.benefit-icon {
    background: #e8ba2f;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.diferencial-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

/* Responsividade para segunda dobra */
@media (max-width: 768px) {
    .diferencial-section {
        padding: 60px 0;
    }
    
    .diferencial-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .diferencial-title {
        font-size: 2rem;
    }
    
    .diferencial-description p {
        font-size: 16px;
    }
    
    .diferencial-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .diferencial-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .diferencial-img {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .diferencial-title {
        font-size: 1.8rem;
    }
    
    .diferencial-description p {
        font-size: 19px;
    }
    
    .benefit-text {
        font-size: 16px;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .diferencial-benefits {
        padding-left: 5%;
    }
    
    .diferencial-img {
        max-width: 320px;
    }
}

/* Terceira Dobra - Nossos Serviços */
.servicos-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.servicos-header {
    text-align: center;
    margin-bottom: 60px;
}

.servicos-subtitle {
    color: #143747;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.servicos-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.servicos-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    align-items: center;
}

.servico-card {
    background: #ffffff;
    border: 1px solid #24bf39;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
}

.servico-card .servico-icon {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
    background: transparent;
    color: #24bf39;
    width: auto;
    height: auto;
    border-radius: 0;
    flex-shrink: 0;
}

.servico-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 17px;
    line-height: 1.3;
}

.servico-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.servico-card-1 {
    grid-column: 1;
    grid-row: 1;
}

.servico-card-2 {
    grid-column: 1;
    grid-row: 2;
}

.servicos-center {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.center-image {
    position: relative;
    z-index: 2;
}

.rafael-center-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
}

.servico-card-3 {
    grid-column: 3;
    grid-row: 1;
}

.servico-card-4 {
    grid-column: 3;
    grid-row: 2;
}

.servicos-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsividade para terceira dobra */
@media (max-width: 768px) {
    .servicos-section {
        padding: 60px 0;
    }
    
    .servicos-title {
        font-size: 2rem;
    }
    
    .servicos-description {
        font-size: 16px;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        max-width: 400px;
    }
    
    .servico-card-1,
    .servico-card-2,
    .servico-card-3,
    .servico-card-4 {
        grid-column: 1;
        grid-row: auto;
        height: auto;
        min-height: 150px;
    }
    
    .servicos-center {
        grid-column: 1;
        grid-row: 3;
        margin: 20px 0;
    }
    
    .rafael-center-img {
        max-width: 300px;
    }
    
    .servicos-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .servicos-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .servicos-title {
        font-size: 1.8rem;
    }
    
    .servicos-description {
        font-size: 19px;
    }
    
    .servico-card {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .servico-title {
        font-size: 18px;
    }
    
    .servico-text {
        font-size: 16px;
    }
    
    .rafael-center-img {
        max-width: 300px;
    }
}

/* Quarta Dobra - Orçamento sem custo */
.orcamento-section {
    background-color: #f8f9fa;
    padding: 72px 0;
    text-align: center;
}

.orcamento-header {
    margin-bottom: 50px;
}

.orcamento-subtitle {
    color: #143747;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.orcamento-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.orcamento-description {
    font-size: 20px;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

.orcamento-content {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.orcamento-image {
    max-width: 600px;
    width: 100%;
}

.orcamento-img {
    width: 100%;
    height: auto;
}

.orcamento-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsividade para quarta dobra */
@media (max-width: 768px) {
    .orcamento-section {
        padding: 60px 0;
    }
    
    .orcamento-title {
        font-size: 2rem;
    }
    
    .orcamento-description {
        font-size: 18px;
    }
    
    .orcamento-image {
        max-width: 500px;
    }
    
    .orcamento-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .orcamento-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .orcamento-title {
        font-size: 1.8rem;
    }
    
    .orcamento-description {
        font-size: 19px;
        font-weight: 700;
    }
    
    .orcamento-image {
        max-width: 400px;
    }
    
    .orcamento-subtitle {
        font-size: 14px;
    }
}

/* Quinta Dobra - Mais Serviços e Orçamento Final */
.mais-servicos-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Primeira parte - Orçamento Top */
.orcamento-top {
    text-align: center;
    margin-bottom: 80px;
}

.orcamento-top-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.orcamento-top-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.orcamento-top-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Segunda parte - Mais Serviços */
.mais-servicos-content {
    text-align: center;
    margin-bottom: 80px;
}

.mais-servicos-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mais-servicos-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.servicos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.servico-item {
    background: #ffffff;
    color: #143747;
    border: 2px solid #143747;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(20, 55, 71, 0.1);
    cursor: pointer;
    white-space: nowrap;
}

.servico-icon {
    background: #e8ba2f;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.servico-nome {
    font-size: 14px;
    color: #143747;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

/* Remove as colunas antigas que não são mais necessárias */
.servicos-coluna {
    display: contents;
}

/* Terceira parte - Orçamento Final */
.orcamento-final {
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 0 20px;
    box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.5);
}

.orcamento-final-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.orcamento-final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsividade para quinta dobra */
@media (max-width: 768px) {
    .mais-servicos-section {
        padding: 60px 0;
    }
    
    .orcamento-top-title,
    .mais-servicos-title,
    .orcamento-final-title {
        font-size: 2rem;
    }
    
    .orcamento-top-description,
    .mais-servicos-description {
        font-size: 16px;
    }
    
    .servicos-lista {
        gap: 10px;
        max-width: 100%;
        justify-content: flex-start;
    }
    
    .servico-item {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .orcamento-top-buttons,
    .orcamento-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .orcamento-top-buttons .btn,
    .orcamento-final-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .orcamento-final {
        margin: 0 10px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .orcamento-top-title,
    .mais-servicos-title,
    .orcamento-final-title {
        font-size: 1.8rem;
    }
    
    .orcamento-top-description,
    .mais-servicos-description {
        font-size: 19px;
    }
    
    .servicos-lista {
        gap: 8px;
        max-width: 100%;
        justify-content: flex-start;
    }

    .servico-item {
        font-size: 12px;
        padding: 8px 14px;
    }

    .servico-nome {
        font-size: 12px;
    }

    .servico-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .orcamento-final {
        margin: 0 5px;
        padding: 30px 15px;
    }
}

/* Páginas Legais */
.legal-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 60px 0;
}

.legal-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 3px solid #61ce70;
    padding-bottom: 15px;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    color: #143747;
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-left: 4px solid #143747;
    padding-left: 15px;
}

.legal-section h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #34495e;
    text-align: justify;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #34495e;
}

.legal-section a {
    color: #143747;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.back-link .btn {
    background: linear-gradient(135deg, #61ce70 0%, #143747 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-link .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,108,182,0.3);
}

/* Responsividade para páginas legais */
@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-section ul {
        padding-left: 20px;
    }
}

/* Rodapé */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #61ce70;
}

.footer-separator {
    color: #666;
    font-size: 14px;
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
        margin-top: 40px;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 10px;
    }
}

/* Botão Flutuante de Contato */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #24bf39 0%, #24bf39 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-btn:active {
    transform: translateY(0);
}

.floating-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-width: 140px;
    justify-content: flex-start;
}

.whatsapp-option {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-option:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.phone-option {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A24 100%);
}

.phone-option:hover {
    background: linear-gradient(135deg, #EE5A24 0%, #FF6B6B 100%);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.floating-option svg {
    flex-shrink: 0;
}

.floating-option span {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Animação de pulso para chamar atenção */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.floating-btn.pulse {
    animation: pulse 2s infinite;
}

/* Responsividade para o botão flutuante */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-option {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .floating-option svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-menu {
        bottom: 75px;
    }
    
    .floating-option {
        padding: 10px 17px;
        font-size: 14px;
        min-width: 132px;
        gap: 10px;
    }
    
    .floating-option svg {
        width: 22px;
        height: 22px;
    }
} 