/* Reset and base styles */
:root {
    --primary-blue: #0055A4;
    --secondary-blue: #0066CC;
    --white: #ffffff;
    --light-blue: #F5F8FF;
    --green: #38CE58;
    --text-dark: #333333;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.floating-badge {
    position: absolute;
    top: 40%;
    right: 55%;
    background: rgba(255, 255, 255, 0.8);
    padding: 16px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 266px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.floating-badge img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.floating-badge span {
    color: #0050A3;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.floating-users {
    position: absolute;
    bottom: 30%;
    right: -10%;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.floating-users p {
    color: #0050A3;
    font-size: 16px;
    line-height: 117%;
    margin-bottom: 8px;
}

.floating-users strong {
    font-weight: 700;
}

.user-stack {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -20px;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-users {
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
}

.more-users img {
    width: 30px;
    height: 30px;
    position: static;
    margin: 0;
    margin-left: 4px;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #0050A3 0%, #001E3D 174.41%);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    height: 674px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 674px;
    background: url('../assets/bg.webp') no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(5.5px);
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 674px;
    background: linear-gradient(180deg, #0050A3 0%, #001E3D 174.41%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 554px; /* 674px - 120px padding-top */
}

.hero-content {
    flex: 1;
    color: var(--white);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.text-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.text-link img {
    width: 20px;
    height: 20px;
}

.text-link:hover {
    opacity: 0.8;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating span {
    color: var(--white);
    font-size: 14px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: 100%;
}

.hero-image img {
    object-fit: contain;
}

/* Simulation Banner */
.simulation-banner {
    background: #0050A3;
    padding: 40px 0;
}

.simulation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.simulation-banner h2 {
    color: #E6F0FD;
    font-size: 28px;
    line-height: 1.3;
    text-align: left;
    margin: 0;
}

.simulation-form {
    flex: 1;
    max-width: 500px;
}

.input-group {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.currency {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 18px;
    padding: 12px 0 12px 16px;
}

.simulation-input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 18px;
    outline: none;
    background: transparent;
}

.btn-simulate {
    /* Remove this class */
}

.btn-simulate:hover {
    /* Remove this class */
}

/* WhatsApp Button */
.whatsapp-button {
    /* Remove this class */
}

.whatsapp-button:hover {
    /* Remove this class */
}

.whatsapp-button img {
    /* Remove this class */
}

.center-button {
    /* Remove this class */
}

.center-button img {
    /* Remove this class */
}

.service-button {
    /* Remove this class */
}

.service-button img {
    /* Remove this class */
}

.btn-secondary.testimonial-button {
    /* Remove this class */
}

.center-button.faq-button {
    /* Remove this class */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero {
        height: auto;
        padding-bottom: 0;
        width: 100%;
        overflow: visible !important;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
        background-position: center;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: left !important;
        height: auto;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible !important;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: left !important;
        align-items: flex-start !important;
    }
    
    .hero-content h1 {
        font-size: 42px;
        text-align: left !important;
    }

    .hero-content p {
        font-size: 25px;
        text-align: left !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 100%;
        margin-left: 0 !important;
        text-align: left !important;
    }
    
    .rating {
        display: flex;
        align-items: center;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        width: 100%;
    }
    
    .rating img {
        margin-left: 0 !important;
    }
    
    .hero-image {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        overflow: visible !important;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    /* Reset any conflicts for floating elements without changing other styles */
    .floating-badge,
    .floating-users {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        z-index: 999 !important;
    }
    
    /* Position floating badge correctly */
    .floating-badge {
        top: 170px !important;
        left: 15px !important;
        transform: none !important;
        width: 210px !important;
        height: 29px;
        background-color: white !important;
        border-radius: 8px !important;
        padding: 8px 12px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Position floating users correctly */
    .floating-users {
        bottom: 40px !important;
        left: 60% !important;
        right: auto !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        width: 300px !important;
        background-color: rgba(230, 240, 253, 0.95) !important;
        border-radius: 12px !important;
        padding: 14px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Ensure floating users text is left-aligned */
    .floating-users p {
        text-align: left !important;
        color: #0050A3 !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    .floating-users strong {
        font-weight: 700 !important;
    }
    
    /* Make sure parent containers allow overflow */
    .hero-image {
        overflow: visible !important;
    }
    
    .hero .container {
        overflow: visible !important;
    }
    
    .hero {
        overflow: visible !important;
    }
    
    /* Ensure floating badge icon and text display correctly */
    .floating-badge img {
        width: 18px !important;
        height: 18px !important;
    }
    
    .floating-badge span {
        font-size: 14px !important;
        color: #0050A3 !important;
    }
    
    .verification-frame {
        position: absolute;
        right: 20px;
        top: 180px;
        background: white;
        border-radius: 8px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 30;
        width: auto;
        min-width: 200px;
    }
    
    .verification-frame .verified-icon {
        width: 18.228574752807617px;
        height: 18.789024353027344px;
        flex-shrink: 0;
        position: relative;
        top: 1.43px;
        left: 1.39px;
    }
    
    .verification-frame span {
        color: #0050A3;
        font-family: Roboto;
        font-weight: 500;
        font-size: 15px;
        line-height: 117%;
        letter-spacing: 0%;
        text-align: center;
    }
    
    .users-frame {
        position: absolute;
        width: 301px;
        height: 154.83px;
        top: 812px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(230, 240, 253, 0.95);
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 30;
    }
    
    .users-frame p {
        color: #0050A3;
        font-family: Roboto;
        font-size: 15px;
        line-height: 117%;
        margin-bottom: 12px;
        text-align: left;
        font-weight: 500;
    }
    
    .user-avatars {
        display: flex;
        align-items: center;
        margin-top: 8px;
    }
    
    .user-pic {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid white;
        margin-right: -12px;
        object-fit: cover;
    }
    
    .more-users-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #0055A4;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .more-users-icon img {
        width: 18px;
        height: 18px;
        position: static;
        transform: none;
        margin: 0;
    }
    
    .simulation-banner {
        padding: 30px 15px;
        width: 100%;
        overflow: hidden;
    }
    
    .simulation-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .simulation-form {
        width: 100%;
        max-width: 100%;
    }
    
    .input-group {
        flex-direction: row;
        height: 50px;
        border-radius: 4px;
        padding: 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .simulation-banner h2 {
        text-align: center;
        font-size: 22px;
        line-height: 1.3;
    }
    
    .currency {
        padding: 10px 15px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .simulation-input {
        width: 100%;
        text-align: left;
        font-size: 16px;
        padding: 10px 0;
    }
    
    .cta-simulation {
        height: 50px;
        padding: 0;
        border-radius: 0;
        font-size: 16px;
        width: 140px;
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Service Section - Complete Mobile Styling */
    .service-content {
        padding: 0;
        width: 100%;
        background-color: #E6F0FD;
        position: relative;
    }
    
    .service-image {
        position: relative;
        height: 550px;
        overflow-y: hidden;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .service-image img {
        width: 300px;
        height: auto;
        position: relative;
        margin-top: -30px;
        transform: none;
        z-index: 1;
    }
    
    .service-info {
        justify-content: center;
        width: 269px;
        height: 439px;
        margin: 0 auto;
        margin-top: 40px;
    }
    
    .service-info::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }
    
    .service-card {
        width: 269px;
        height: 186px;
        padding: 28px 14px;
        background: #ECF4FF;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .service-card h3 {
        width: 233px;
        height: 35px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 700;
        font-size: 35px;
        line-height: 101.24%;
        color: #0050A3;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .service-card p {
        width: 211px;
        height: 60px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 101.24%;
        color: #0050A3;
        text-align: left;
    }
    
    .service-scroll-indicator {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 16px auto;
        width: 100%;
    }
    
    .service-scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #B0D0F7;
    }
    
    .service-scroll-dot.active {
        background-color: #0050A3;
        width: 24px;
        border-radius: 4px;
    }
    
    .online-service {
        padding: 0;
        overflow: visible;
        width: 100%;
        background-color: #E6F0FD;
        position: relative;
    }
    
    .service-content {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .notification-frame {
        position: absolute;
        left: 10%;
        top: 15%;
        width: 216px;
        height: 84px;
        z-index: 30;
        opacity: 1;
        padding: 8px 10px;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }
    
    .notification-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 6px;
        width: 100%;
    }
    
    .notification-logo {
        height: 19px !important;
        width: 19px !important;
        margin: 0 !important;
        padding: 0 !important;
        position: static !important;
        transform: none !important;
        object-fit: contain !important;
        display: inline-block !important;
        vertical-align: top !important;
    }
    
    .notification-time {
        font-size: 12px;
        color: #666;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 19px !important;
    }
    
    .notification-text {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        color: #333 !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow: hidden !important;
        font-family: 'Roboto', sans-serif !important;
        letter-spacing: 0.2px !important;
        padding: 0 !important;
    }

    /* Vantagens Section Mobile */
    .vantagens {
        padding: 50px 0;
    }
    
    .vantagens .section-title {
        font-family: Roboto;
        font-weight: 800;
        font-size: 30px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 30px;
    }
    
    .vantagens-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 16px;
        align-items: center;
    }
    
    .vantagem-card {
        width: 90% !important;
        max-width: 320px;
        margin: 0 auto 16px !important;
        padding: 28px 20px !important;
    }
    
    .vantagem-card h3 {
        color: #0050A3;
        font-family: Roboto;
        font-weight: 700;
        font-size: 30px;
        line-height: 101%;
        letter-spacing: 0%;
        margin-bottom: 12px;
    }
    
    .vantagem-card p {
        color: #0050A3;
        font-family: Roboto;
        font-weight: 400;
        font-size: 20px;
        line-height: 101%;
        letter-spacing: 0%;
    }
    
    .icon-wrapper {
        margin-bottom: 20px;
    }

    /* Centralizar button-container na seção de online service para mobile */
    .service-info .button-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    /* Garantir que o botão de serviço esteja centralizado */
    .service-info .service-cta {
        margin: 0 auto !important;
        width: 269px !important;
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    
    /* Ajustar tamanho e centralização do container principal de service-info */
    .service-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important; 
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    /* Tipografia do título da seção FAQ para mobile */
    .faq .section-title {
        font-family: Roboto;
        font-weight: 800;
        font-size: 30px;
        line-height: 104%;
        letter-spacing: 0%;
        text-align: center;
        margin-bottom: 46px;
    }

    /* Testimonials section mobile adjustments */
    .testimonials {
        padding: 50px 0 40px;
        overflow: hidden;
        width: 100%;
    }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 15px;
        margin: 0 0 30px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        grid-template-columns: unset;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        width: 280px;
        scroll-snap-align: start;
        margin-bottom: 5px;
        box-sizing: border-box;
        padding: 20px 15px;
        background: #DEECFF;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .testimonial-text {
        color: #123664;
        font-family: 'Roboto', sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.3;
        width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .user-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 16px;
        width: 100%;
    }
    
    .user-avatar {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .user-details {
        width: calc(100% - 75px);
    }
    
    .testimonials .cta-whatsapp {
        width: 331px !important; /* Aumento de 20% em relação ao tamanho padrão de 276px */
        max-width: 100% !important; 
        font-size: 16px !important; /* Diminuir tamanho do texto do botão */
        height: auto !important;
        padding: 10px 16px !important;
    }
    
    .testimonials .cta-whatsapp img {
        margin-left: 8px !important;
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }
    
    .testimonials .section-title {
        font-size: 30px;
        line-height: 104%;
        margin-bottom: 30px;
    }
    
    .testimonials .subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .scroll-indicator {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 20px auto;
    }
    
    .scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #B0D0F7;
        cursor: pointer;
    }
    
    .scroll-dot.active {
        background-color: #0050A3;
        width: 24px;
        border-radius: 4px;
    }

    /* Sobrescrever margin-left para todos os button-container em mobile */
    .button-container {
        margin-left: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        margin-top: 30px !important;
    }
    
    /* Ajustes globais para botões cta-whatsapp em mobile */
    .cta-whatsapp {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 8px 16px !important;
        border-radius: 5px !important;
        margin: 0 auto !important;
        font-size: 16px !important;
    }
    
    /* Correção do overflow na página inteira */
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Ajustes adicionais para a seção de testimonials para prevenir scroll dentro de scroll */
    .testimonials {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonials .container {
        padding: 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonials-header {
        padding: 0 15px;
    }
    
    .testimonials .button-container {
        padding: 0 15px;
    }
}

/* Additional responsive breakpoint for smaller phones */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 20px;
    }


    .section-title {
        font-size: 32px;
    }

    .service-image img {
        max-width: 100%;
        height: auto;
        margin-left: 0px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .service-card p {
        font-size: 16px;
    }

    .simulation-banner {
        padding: 25px 15px;
    }

    .simulation-banner h2 {
        font-size: 20px;
    }

    .simulation-form {
        max-width: 100%;
    }

    .cta-primary,
    .cta-secondary,
    .cta-whatsapp {
        width: 60%;
        max-width: 280px;
        font-size: 18px;
    }

    .faq-cta {
        width: 100%;
        max-width: 280px;
    }
}

/* Vantagens Section */
.vantagens {
    padding: 80px 0;
    background: #D4E6FE;
}

.section-title {
    color: var(--primary-blue);
    font-size: 45px;
    text-align: center;
    margin-bottom: 40px;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
    justify-items: center;
}

.vantagem-card {
    text-align: left;
    width: 292px;
    height: 202px;
    padding: 28px 20px;
    background: #ECF4FF;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.icon-wrapper img {
    width: 32px;
    height: 32px;
}

.vantagem-card h3 {
    color: #0050A3;
    font-family: Roboto;
    font-weight: 700;
    font-size: 30px;
    line-height: 101%;
    letter-spacing: 0%;
    margin-bottom: 12px;
}

.vantagem-card p {
    color: #0050A3;
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 101%;
    letter-spacing: 0%;
    margin: 0;
}

/* Requirements Section */
.requirements {
    background: linear-gradient(91.26deg, #1F71C6 7.9%, #0050A3 100.75%);
    padding: 80px 0;
    color: var(--white);
    position: relative;
}

.requirements .button-container {
    margin-top: 40px;
    position: relative;
    z-index: 10; /* Keep z-index to ensure button is above other elements */
}

.requirements .section-title {
    color: var(--white);
    font-size: 45px;
    margin-bottom: 40px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 16px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.requirement-item img {
    width: 24px;
    height: 24px;
}

.requirement-item p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--white);
}

/* Online Service Section */
.online-service {
    background: #E6F0FD;
    padding: 0 0 0;
    overflow: visible;
    position: relative;
    z-index: 5;
}

.service-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.service-image {
    flex: 1;
    text-align: right;
    position: relative;
    margin-top: -100px;
    margin-left: 80px;
    margin: 0 auto;
    z-index: 20;
}

.service-image img {
    max-width: none;
    height: auto;
    margin-bottom: -4px;
    display: block;
    transform: scale(0.9);
    transform-origin: bottom right;
    position: relative;
    z-index: 20;
    object-fit: contain;  /* Garante que toda a imagem seja exibida */
    object-position: center; 
}

.notification-frame {
    position: absolute;
    left: 10%;
    top: 60%;
    background: white;
    border-radius: 12px;
    padding: 12px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 25;
    opacity: 0.8;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification-logo {
    height: 20px;
    width: auto;
}

.notification-time {
    color: #666;
    font-size: 14px;
}

.notification-text {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 40px;
}

.service-card {
    width: 269px;
    height: 186px;
    padding: 28px 14px;
    background: #ECF4FF;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 35px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-card p {
    color: var(--primary-blue);
    font-size: 20px;
    line-height: 1.0;
}

.service-info .button-container {
    width: 269px;
    margin-left: 0;
    padding: 0;
}

.service-cta {
    margin: 0;
    width: 269px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #D4E6FE;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.note {
    display: inline;
    color: #F44545;
    font-weight: 600;
}

.subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #0050A3;
    margin-bottom: 24px;
}

.testimonials .section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 45px;
    line-height: 52px;
    letter-spacing: 0;
    text-align: center;
    color: #0050A3;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #DEECFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.user-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h3 {
    color: #123664;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    padding-right: 0;
    width: 100%;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-details .rating-container {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.user-details .rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
    margin-bottom: 4px;
    margin-left: 0;
}

.user-details .rating img {
    height: 16px;
    width: 16px;
}

.google-review {
    font-family: 'Sora', sans-serif;
    font-weight: 200;
    font-size: 11px;
    line-height: 132%;
    letter-spacing: 0;
    color: #0050A3;
    display: inline-block;
}

.testimonial-text {
    color: #123664;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    width: 100%;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #E6F0FD;
}

.faq-header {
    text-align: center;
    margin-bottom: 0px;
}

.faq-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0;
    color: #F44545;
    text-align: center;
    margin-bottom: 24px;
    margin-top: -40px;
}

.extra-question {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #0050A3;
    text-align: center;
    margin-bottom: 12px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    margin-bottom: 16px;
    background: #ECF4FF;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #ECF4FF;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 85, 164, 0.05);
}

.arrow {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.arrow::before,
.arrow::after {
    content: '';
    position: absolute;
    background: var(--primary-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow::before {
    width: 2px;
    height: 12px;
}

.arrow::after {
    width: 12px;
    height: 2px;
}

.faq-item.active .arrow::before {
    display: none;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.cta-simulation {
    background: #1A6EC6;
    color: var(--white);
    border: none;
    padding: 18px 44px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 100%;
    white-space: nowrap;
}

.cta-simulation:hover {
    opacity: 0.9;
}

/* Footer Styles */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 101%;
    letter-spacing: 0;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a, .footer-column p {
    color: var(--white);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 20px;
    height: 20px;
}

.footer-column a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.footer-logo-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    width: 127px;
    height: 70px;
}

.footer-copyright {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    margin-top: 10px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 22px;
    display: inline-block;
}

.footer-copyright-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-disclaimer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.disclaimer-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: justify;
    color: var(--white);
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* Responsive adjustments for footer */
@media screen and (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-column h3 {
        font-size: 32px;
    }
}

@media screen and (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-section {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-logo-container {
        width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-copyright {
        margin-bottom: 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
        margin-top: 0;
        width: 100%;
    }
    
    .footer-legal a {
        font-size: 14px;
        line-height: 1.4;
        text-align: left;
        display: block;
        width: 100%;
    }
}

.footer-legal a:hover {
    opacity: 1;
}

/* Button Styles */
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
    gap: 10px;
    border-radius: 5px;
    padding: 10px 24px;
    width: auto;
    height: auto;
    min-height: 41px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
}

.cta-primary img {
    width: 24px;
    height: 24px;
    margin-left: 12px;
}

.header .cta-primary {
    color: #E6F0FD;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
    width: 154;
    height: 41;
    gap: 10px;
    border-radius: 5px;
    padding-top: 3px;
    padding-right: 18px;
    padding-bottom: 3px;
    padding-left: 18px;
    border-width: 1px;

}

.cta-secondary img {
    width: 24px;
    height: 24px;
    margin-left: 12px;
}

.cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #38CE58;
    color: var(--white);
    width: 276px;
    height: 41px;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.cta-whatsapp img {
    width: 24px;
    height: 24px;
    margin-left: 12px;
}

.faq-cta {
    width: 380px;
    height: 41px;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 20px;
    margin: 0 auto;
}

/* Add button container for section buttons */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-left: -95px;
}

/* Specific button container for sections that need adjustments */
.vantagens .button-container,
.requirements .button-container,
.testimonials .button-container,
.faq .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 40px auto 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--green);
    width: 78px; /* 30% larger than original 60px */
    height: 78px; /* 30% larger than original 60px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp img {
    width: 42px; /* 30% larger than original 32px */
    height: 42px; /* 30% larger than original 32px */
}

.cta-whatsapp img {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle img {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 8px 0;
        font-size: 18px;
        padding: 6px 0;
        border-bottom: 1px solid rgba(0, 85, 164, 0.1);
        width: 100%;
    }
    
    .nav-links .cta-primary {
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Header adjustments for mobile */
    .header {
        padding: 15px 0;
    }
    
    .logo img {
        height: 28px;
    }
}

/* Estilo para o body quando o menu está aberto */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu - Ajustes adicionais */
@media screen and (max-width: 768px) {
    .nav-links .cta-primary {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }
    
    .nav-links a {
        color: var(--primary-blue);
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 85, 164, 0.1);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
} 