/* =========================================
   1. VARIÁVEIS GLOBAIS E RESET
   ========================================= */
:root {
    /* Fontes */
    --font-main: 'Work Sans', sans-serif;

    /* Cores de Texto */
    --color-text-black: #000000;
    --color-text-yellow: #FFBD02;
    --color-text-white: #FFFFFF;
    --color-text-placeholder: #515151;

    /* Cores de Background */
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F6F5F2;

    /* Cores de Cards */
    --color-card-yellow: #FFBD02;
    --color-card-white: #FFFFFF;

    /* Bordas */
    --radius-button: 48px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-white);
    color: var(--color-text-black);
    font-weight: 400; /* Regular */
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem horizontal indesejada */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500; /* Medium */
}

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

.text-yellow {
    color: var(--color-text-yellow);
}



/* =========================================
   18. AVISO DE COOKIES (LGPD)
   ========================================= */
.cookie-consent {
    position: fixed;
    bottom: 200px; /* Posicionado acima do WhatsApp no Desktop */
    right: 40px;
    background-color: var(--color-bg-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 320px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--color-bg-light);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-black);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    flex: 1; /* Faz os dois botões terem o mesmo tamanho */
}

/* Novo botão com contorno preto */
.btn-outline-black {
    background-color: var(--color-bg-white);
    color: var(--color-text-black);
    border: 1px solid var(--color-text-black);
    border-radius: var(--radius-button);
}

.btn-outline-black:hover {
    background-color: var(--color-bg-light);
}

/* Classe aplicada via JS para fechar o card */
.cookie-consent.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}



/* =========================================
   2. BOTÕES GLOBAIS E INPUTS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-main);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.btn-yellow {
    background-color: var(--color-card-yellow);
    color: var(--color-text-black);
}

.btn-black {
    background-color: var(--color-text-black);
    color: var(--color-text-white);
}

.btn-outline {
    background-color: var(--color-bg-white);
    color: var(--color-text-black);
    border: 2px solid var(--color-bg-light);
    border-radius: var(--radius-button);
}

.btn-outline:hover {
    border-color: var(--color-text-black);
}

::placeholder {
    color: var(--color-text-placeholder);
    opacity: 1;
}

/* Falsos Botões (Tags Visuais) */
.badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: var(--radius-button);
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-bg-light);
    color: var(--color-text-black);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    cursor: default;
    user-select: none;
}

.badge2 {
    display: inline-block;
    padding: 8px 24px;
    border-radius: var(--radius-button);
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-bg-light);
    color: var(--color-text-black);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    cursor: default;
    user-select: none;
}

/* =========================================
   3. HEADER / MENU DESKTOP
   ========================================= */
.navbar {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 160px);
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 12px 24px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 32px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-black);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-text-yellow);
}

/* Esconde elementos do mobile no desktop */
.btn-mobile-open,
.mobile-menu-overlay {
    display: none;
}

/* =========================================
   4. SESSÃO 1 (HERO)
   ========================================= */
.hero-section {
    padding-top: 180px;
    position: relative;
    background-color: var(--color-bg-white);
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-media-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.hero-bg-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-cards {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 20%);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    align-items: end;
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.card p {
    font-size: 15px;
    color: var(--color-text-placeholder);
}

.card-highlight {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.card-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
}

.card-icon-placeholder {
    width: 120px;
    height: 120px;
    background-color: var(--color-card-yellow);
    border-radius: 16px;
}

/* =========================================
   5. SESSÃO 2 (GARANTIA DE RECEITA)
   ========================================= */
.section-garantia {
    margin-top: 100px;
    background-color: var(--color-bg-white);
    padding-bottom: 90px;
}

.garantia-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.garantia-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.garantia-title {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.garantia-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 88px; 
}

.garantia-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text-black);
    font-weight: 400;
    max-width: 520px;
}

/* =========================================
   6. SESSÃO 3 (COMO FUNCIONA)
   ========================================= */
.section-como-funciona {
    margin-top: 70px; 
    background-color: var(--color-bg-light); 
    border-radius: 24px; 
    padding: 80px 0; 
}

.como-funciona-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-white {
    background-color: var(--color-bg-white);
    border-color: var(--color-bg-white);
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background-color: var(--color-bg-white);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    background-color: #DEDEDE;
    opacity: 0.4;
    border-radius: 50%;
    z-index: 1;
}

.step-number {
    font-size: 64px;
    color: var(--color-text-yellow);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.step-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.step-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-text {
    font-size: 15px;
    color: var(--color-text-placeholder);
    line-height: 1.6;
}

/* =========================================
   7. SESSÃO 4 (SERVIÇOS / SCROLL HORIZONTAL)
   ========================================= */
.section-servicos {
    margin-top: 100px;
    background-color: var(--color-bg-white);
    position: relative;
}

.servicos-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 120px; 
}

.servicos-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-top: 32px;
    margin-bottom: 40px;
    max-width: 800px;
}

.scroll-track {
    height: 400vh; 
    position: relative;
}

.scroll-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.scroll-carousel {
    display: flex;
    gap: 40px;
    padding-left: max(80px, calc((100vw - 1280px) / 2));
    padding-right: max(80px, calc((100vw - 1280px) / 2));
    width: max-content;
    will-change: transform;
}

.servico-card {
    display: flex;
    width: 900px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.servico-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.servico-content {
    width: 50%;
    height: 100%;
    background: linear-gradient(160deg, #FFBD02 65%, #FFCA35 65%);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servico-content h3 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.servico-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--color-text-black);
}

.servico-content p strong {
    font-weight: 600;
}

.highlight-text {
    font-size: 18px !important;
    margin-top: 16px;
}

.servico-list {
    list-style: none;
    margin-top: 8px;
}

.servico-list li {
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.servico-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--color-text-black);
}

/* =========================================
   8. SESSÃO 5 (FAQ / ACORDEÃO)
   ========================================= */
.section-faq {
    margin-top: 50px;
    background-color: var(--color-bg-white);
    padding-bottom: 100px;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.faq-left {
    flex: 1;
    max-width: 500px;
}

.faq-title {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.faq-right {
    flex: 1;
    margin-top: 72px;
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #EAEAEA;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question h3 {
    font-size: 22px;
    font-weight: 500;
    margin-right: 20px;
    line-height: 1.3;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-black);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-answer p {
    font-size: 16px;
    color: var(--color-text-placeholder);
    line-height: 1.6;
    padding-bottom: 32px;
    padding-right: 40px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

/* =========================================
   9. SESSÃO 6 (SOBRE NÓS)
   ========================================= */
.section-sobre {
    margin-top: 70px;
    background-color: var(--color-bg-white);
}

.sobre-title {
    font-size: 48px;
    color: var(--color-text-black);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sobre-card {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-light {
    background-color: var(--color-bg-light);
    padding: 48px 40px;
}

.card-yellow {
    background-color: var(--color-text-yellow);
    padding: 0; 
}

.sobre-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sobre-content h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

.sobre-content p {
    font-size: 16px;
    color: var(--color-text-black);
    line-height: 1.6;
}

.sobre-yellow-content {
    padding: 0 40px 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
}

.sobre-yellow-content h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 40px;
}

.sobre-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 20% 20%;
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.badge-custom {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: var(--radius-button);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: default;
    user-select: none;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.badge-grey {
    background-color: var(--color-bg-light);
    border: 1px solid #C7C7C7;
    color: var(--color-text-black);
}

.badge-darkyellow {
    background-color: var(--color-text-yellow);
    border: 1px solid #C89506;
    color: var(--color-text-black);
}

.card-1-bg::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background-color: #EEEEEE;
    border-radius: 40%;
    transform: rotate(25deg);
    z-index: 1;
}

.card-3-bg::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 350px;
    height: 350px;
    background-color: #EFEFEF;
    border-radius: 50%;
    z-index: 1;
}



/* Card Retangular App (Sessão 6) */
.sobre-card-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    margin-top: 24px; /* Distância dos 3 cards de cima */
}

.sobre-wide-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sobre-wide-left h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 24px;
    color: var(--color-text-black);
}

.sobre-wide-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sobre-wide-right img {
    height: 48px; /* Altura padrão para selos de app stores */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sobre-wide-right a:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}


/* =========================================
   10. SESSÃO 7 (CONTATO)
   ========================================= */
.section-contato {
    margin-top: 150px;
    position: relative;
    background-image: url('images/img-bg-sessao7.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0;
    overflow: hidden;
}

.contato-bg-logo {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.contato-left {
    background-color: var(--color-bg-light);
    border-radius: 24px;
    padding: 56px 48px;
    max-width: 650px;
    width: 100%;
}

.contato-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 40px;
}

.typewriter-box {
    background-color: var(--color-bg-white);
    padding: 4px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 8px;
}

.cursor {
    display: inline-block;
    animation: blink 0.8s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-black);
}

.form-group input {
    background-color: var(--color-bg-white);
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 16px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--color-text-black);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--color-text-yellow);
}

.btn-submit {
    align-self: flex-start;
    margin-top: 8px;
}

.contato-right {
    margin-bottom: 40px;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 16px 32px 16px 16px; 
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.pill-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.pill-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-black);
}

/* =========================================
   11. SESSÃO 8 (RODAPÉ)
   ========================================= */
.section-footer {
    background-color: #393939;
    padding: 80px 0 40px 0;
    margin-top: 0;
    color: var(--color-text-white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
    gap: 40px;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 24px;
    object-fit: contain;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-info {
    display: flex;
    gap: 64px;
}

.footer-info p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 32px;
}

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

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

.footer-copyright {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--color-text-yellow);
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.6;
}

/* =========================================
   12. BOTÃO FLUTUANTE WHATSAPP
   ========================================= */
.floating-wpp {
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-color: #FCF3DA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wpp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.floating-wpp img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* =========================================
   14. PÁGINA: PROPOSTA (proposta.html) SESSÃO 1
   ========================================= */
.proposta-hero {
    padding-top: 180px; 
    padding-bottom: 80px;
    background-color: var(--color-bg-white);
}

.proposta-hero-container {
    display: flex;
    gap: 60px;
    align-items: flex-start; 
    justify-content: space-between;
}

.proposta-hero-left {
    flex: 1;
    max-width: 600px;
}

.proposta-title {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.proposta-desc {
    font-size: 18px;
    color: var(--color-text-placeholder);
    line-height: 1.6;
    margin-bottom: 40px;
}

.proposta-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    height: auto;
}

.proposta-hero-right {
    flex: 1;
    max-width: 650px;
}

/* =========================================
   15. PÁGINA: PROPOSTA SESSÃO 2 (COMO FUNCIONA)
   ========================================= */
.proposta-sec2 {
    margin-top: 50px !important; 
}

.proposta-sec2-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.proposta-sec2-left {
    flex: 1;
}

.proposta-sec2-title {
    margin-bottom: 40px; 
}

.steps-grid-proposta {
    grid-template-columns: repeat(2, 1fr) !important;
}

.proposta-sec2-right {
    flex: 1;
    max-width: 650px;
}

.form-white {
    background-color: var(--color-bg-white) !important; 
}

.form-white .typewriter-box {
    background-color: var(--color-bg-light) !important; 
}

.form-white .form-group input {
    background-color: var(--color-bg-light) !important; 
    border-color: var(--color-bg-light) !important;
}

.form-white .form-group input:focus {
    border-color: var(--color-text-yellow) !important;
}


/* =========================================
   16. PÁGINA: PROPOSTA - SESSÃO 3 (FAQ + FORM)
   ========================================= */
.proposta-sec3 {
    margin-top: 100px;
    padding-bottom: 120px;
    background-color: var(--color-bg-white);
}

.proposta-sec3-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.proposta-sec3-left {
    flex: 1;
    max-width: 600px;
}

.proposta-sec3-left .faq-accordion {
    margin-top: 40px; /* Distância entre o título FAQ e as perguntas */
}

/* Ajuste de tamanho da fonte do FAQ para caber bem na coluna mais estreita */
.proposta-sec3-left .faq-question h3 {
    font-size: 20px; 
}

.proposta-sec3-right {
    flex: 1;
    max-width: 650px;
}

/* =========================================
   17. PÁGINA: POLÍTICA DE PRIVACIDADE
   ========================================= */
.privacy-page {
    padding-top: 180px;
    padding-bottom: 120px;
    background-color: var(--color-bg-white);
}

.privacy-container {
    max-width: 960px;
}

.privacy-container h1 {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.privacy-content {
    color: var(--color-text-placeholder);
    font-size: 18px;
    line-height: 1.75;
}

.privacy-content section {
    margin-bottom: 48px;
}

.privacy-content h2,
.privacy-content h3 {
    color: var(--color-text-black);
    line-height: 1.25;
    margin-bottom: 18px;
}

.privacy-content h2 {
    font-size: 28px;
}

.privacy-content h3 {
    font-size: 22px;
    margin-top: 32px;
}

.privacy-content p {
    margin-bottom: 18px;
}

.privacy-content ul {
    padding-left: 24px;
    margin-bottom: 18px;
}

.privacy-content li {
    margin-bottom: 10px;
}

.privacy-content a {
    color: var(--color-text-black);
    font-weight: 500;
    text-decoration-color: var(--color-text-yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.privacy-contact-box {
    background-color: var(--color-bg-light);
    border-radius: 24px;
    padding: 32px;
    color: var(--color-text-black);
}

/* =========================================
   13. MEDIA QUERIES (RESPONSIVIDADE MÁXIMA)
   ========================================= */

/* Dispositivos Médios e Tablets (até 1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    

    /* Navbar e Menu Mobile */
    .desktop-btn, .nav-links { display: none; }
    .navbar { width: 90%; padding: 12px; }
    
/* ---------------------------------------------------
       ESTILOS DO NOVO BLOCO DE APP NO MENU MOBILE
       --------------------------------------------------- */
    .mobile-app-download {
        margin-top: 40px;
        padding-left: 20px;
    }

    .mobile-app-download p {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 16px;
        color: var(--color-text-black);
    }

    .mobile-app-buttons {
        display: flex;
        gap: 16px;
    }

    .mobile-app-buttons img {
        height: 40px; /* Reduzido para encaixar perfeito */
        width: auto;
    }

    /* ---------------------------------------------------
       AJUSTE DOS BOTÕES DO APP NA SESSÃO 6 (SOBRE NÓS)
       --------------------------------------------------- */
    .sobre-wide-right {
        flex-wrap: nowrap !important; /* Força os botões a ficarem na mesma linha */
        justify-content: flex-start;
        gap: 12px;
    }

    .sobre-wide-right img {
        height: 40px !important; /* Reduz o tamanho em ~15% (de 48px para 40px) no mobile */
    }



    .btn-mobile-open {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: var(--color-text-yellow);
        border: none;
        cursor: pointer;
    }
    .btn-mobile-open img {
        width: 20px;
        object-fit: contain;
    }

    .mobile-menu-overlay {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0; 
        bottom: 0; 
        height: 100%;
        min-height: 100vh;
        background-color: var(--color-text-yellow);
        z-index: 10000;
        padding: 20px;
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }
    .mobile-menu-overlay.open {
        transform: translateX(0); 
    }
    .mobile-menu-header {
        background-color: var(--color-bg-white);
        border-radius: 60px;
        padding: 12px 12px 12px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
    }
    .btn-mobile-close {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: var(--color-text-yellow);
        border: none;
        cursor: pointer;
    }
    .btn-mobile-close img { width: 16px; object-fit: contain; }
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-left: 20px;
    }
    .mobile-nav-links a {
        font-size: 28px;
        font-weight: 500;
        color: var(--color-text-black);
        text-decoration: none;
    }

    /* Seções INDEX */
    .hero-top { flex-direction: column; align-items: flex-start; gap: 24px; }
    
    .hero-cards { 
        grid-template-columns: 1fr;
        position: relative; 
        transform: none; 
        left: 0; 
        width: 100%;
        margin-top: -40px; 
        padding-bottom: 40px;
    }
    
    .card { border-radius: 24px; } 
    .card-highlight { flex-direction: column; }
    .card-highlight .card-icon,
    .card-highlight .card-icon-placeholder { display: none; }

    .garantia-container { flex-direction: column; align-items: flex-start; gap: 40px; }
    .garantia-right { justify-content: flex-start; padding-bottom: 0; }
    .garantia-title { font-size: 40px; }
    
    .como-funciona-header { flex-direction: column; align-items: flex-start; gap: 32px; }
    .section-title { font-size: 40px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    
    .servicos-title { font-size: 40px; }
    .servico-card { width: 700px; height: 450px; }
    .scroll-carousel { padding: 0 40px; }
    
    .faq-container { flex-direction: column; gap: 60px; }
    .faq-right { margin-top: 0; }
    .faq-title { font-size: 40px; }
    
    .sobre-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contato-container { flex-direction: column; align-items: center; }
    .contato-left { max-width: 100%; padding: 40px 32px; }
    .form-row { flex-direction: column; gap: 16px; }
    
    .footer-top { flex-direction: column; gap: 48px; }
    .footer-info { flex-direction: column; gap: 32px; }

    .step-card::before { display: none; }

    /* Responsividade PROPOSTA */
    .proposta-hero-container {
        flex-direction: column;
        gap: 40px;
    }
    .proposta-hero-left, 
    .proposta-hero-right {
        max-width: 100%;
    }
    .proposta-title {
        font-size: 40px;
    }
    
    .proposta-sec2-container {
        flex-direction: column;
        gap: 60px;
    }
    .proposta-sec2-right {
        max-width: 100%;
    }

    /* Responsividade da Proposta - Sessão 3 */
    .proposta-sec3-container {
        flex-direction: column;
        gap: 60px;
    }
    .proposta-sec3-left,
    .proposta-sec3-right {
        max-width: 100%;
    }

    .privacy-page {
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .privacy-container h1 {
        font-size: 40px;
    }



/* Responsividade do Card Retangular do App (Sessão 6) */
    .sobre-card-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .sobre-wide-left h3 {
        margin-top: 16px; /* Aproxima um pouco mais o título do selo no mobile */
    }

    .sobre-wide-right {
        width: 100%;
        flex-wrap: wrap; /* Permite que os botões fiquem lado a lado corretamente */
        justify-content: flex-start;
        gap: 16px;
    }

    .badge-custom {
        white-space: nowrap; /* Garante que o texto dos selos (como BAIXE NOSSO APP) nunca quebre em duas linhas */
    }

    
}

/* Dispositivos Móveis Pequenos (até 768px) */
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
    .step-number { margin-bottom: 64px; }
    
    .scroll-track { height: auto; }
    .scroll-sticky { position: relative; height: auto; overflow: visible; }
    .scroll-carousel { flex-direction: column; padding: 0 20px; width: 100%; transform: none !important; }
    .servico-card { width: 100%; height: auto; flex-direction: column; }
    .servico-img { width: 100%; height: 250px; }
    .servico-content { width: 100%; padding: 32px 24px; background: #FFBD02; }
    
    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-title { font-size: 40px; }
    
    .contato-title { font-size: 32px; }
    .glass-pill { flex-direction: column; border-radius: 24px; padding: 24px; text-align: center; }
    
    .section-footer { padding: 64px 0 32px 0; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-copyright { line-height: 1.5; }
    
    .floating-wpp { bottom: 24px; right: 24px; width: 64px; height: 64px; }
    .floating-wpp img { width: 32px; height: 32px; }

    .contato-bg-logo { bottom: 0; }
    
    .steps-grid-proposta { grid-template-columns: 1fr !important; }

    .privacy-content {
        font-size: 16px;
    }

    .privacy-content h2 {
        font-size: 24px;
    }

    .privacy-content h3 {
        font-size: 20px;
    }

    .privacy-contact-box {
        padding: 24px;
    }


/* Responsividade do Aviso de Cookies */
    .cookie-consent {
        bottom: 110px; /* Acima do botão do WPP que é menor no mobile */
        right: 24px;
        left: 24px; /* Ocupa quase toda a largura da tela */
        width: auto;
    }

}
