
:root {
    /* Define a nova cor de fundo aqui para facilitar */
    --bg-site: #EEF0F3;
}

body {
    background-color: var(--bg-site);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.text-white { color: var(--text-white); }
.text-dark { color: var(--text-dark); }
.text-primary { color: var(--primary); }
.text-bold { font-weight: 700; }
.text-italic { font-style: italic; }

.section-light { 
    background-color: var(--bg-site);
    padding: 5rem 0;
}

.section-gradient { 
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)); 
    padding: 5rem 0;
}

/* Grids Padrão */
.grid-4-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.grid-2-cols {
    background: transparent;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4-cols { grid-template-columns: repeat(4, 1fr); }
    .grid-2-cols { grid-template-columns: 1fr 1fr; }
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color 0.2s;
    text-align: center;
    cursor: pointer;
}

.btn-primary { background-color: var(--primary); color: var(--text-white); }
.btn-primary:hover { background-color: var(--primary-light); }

.btn-light { background-color: var(--bg-white); color: var(--primary); }
.btn-light:hover { background-color: #f3f4f6; }

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-white:hover { background-color: #f3f4f6; }

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; display: block; }

.header {
    background-color: var(--bg-white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem; padding-bottom: 1rem;
}
.brand-wrapper { display: flex; align-items: center; gap: 0.75rem; }

.logo-icon {

    height: 2.5rem; 
    width: 2.5rem;
    position: relative; 
    overflow: visible !important; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: var(--radius-md); 
    z-index: 100;
}

.logo-img {

    position: absolute;
    

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    height: 3rem; 
    width: auto;
    
   
    max-width: none !important; 
    max-height: none !important;
}
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; }

.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 5rem 0;
    overflow: hidden;
}
.hero-bg-decoration {
    position: absolute; border-radius: var(--radius-full); pointer-events: none;
}
.circle-lg { width: 24rem; height: 24rem; border: 2px solid rgba(255,255,255,0.2); top: 5rem; right: 10%; }
.circle-md { width: 18rem; height: 18rem; border: 2px solid rgba(255,255,255,0.15); bottom: 2.5rem; right: 25%; }
.dot-top { width: 1rem; height: 1rem; background: rgba(255,255,255,0.6); top: 33%; right: 15%; }
.dot-bottom { width: 1rem; height: 1rem; background: rgba(255,255,255,0.6); bottom: 25%; right: 45%; }

.hero-container { position: relative; z-index: 10; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .hero-container { grid-template-columns: 1fr 1fr; align-items: center; } }

.hero-content { color: var(--text-white); }
.hero-brand-badge { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.logo-icon-sm {
    height: 3.5rem; width: 4rem;
    backdrop-filter: blur(4px);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.5rem; overflow: hidden;
}

.hero-headline { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; }
.hero-subheadline { font-size: 1.125rem; opacity: 0.9; margin-bottom: 2rem; max-width: 32rem; }
.hero-cta { margin-bottom: 2rem; }
.hero-benefits-list { display: flex; flex-wrap: wrap; gap: 1rem; }

.benefit-pill {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); padding: 0.5rem 1rem;
    border-radius: var(--radius-full); color: rgba(255,255,255,0.9); font-size: 0.875rem;
}
.icon-circle {
    width: 1.25rem; height: 1.25rem; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.icon-circle svg { width: 0.75rem; height: 0.75rem; }

.laptop-mockup { width: 100%; max-width: 42rem; margin: 0 auto; position: relative; }
.laptop-screen {
    background-color: #1f2937; border-radius: 1rem 1rem 0 0;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.screen-content { background-color: #fff; border-radius: 0.5rem; overflow: hidden; aspect-ratio: 16/9; }
.laptop-base { background-color: #374151; height: 1rem; border-radius: 0 0 0.5rem 0.5rem; margin: 0 auto; width: 90%; }
.laptop-notch { background-color: #4b5563; height: 0.5rem; border-radius: 0 0 0.75rem 0.75rem; margin: 0 auto; width: 60%; }

.section-title { font-size: 2.25rem; text-align: center; margin-bottom: 1rem; }
.section-subtitle { text-align: center; opacity: 0.9; max-width: 48rem; margin: 0 auto 3rem auto; }
.section-footer-text { text-align: center; font-size: 1.125rem; }

.card { padding: 2rem; border-radius: 1rem; text-align: center; transition: transform 0.3s; }
.card:hover { transform: scale(1.05); }

.problem-card { background-color: #ffffff; }
.problem-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-top: 1rem; }

.icon-wrapper {
    width: 4rem; height: 4rem; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.icon-danger { background-color: rgba(248, 113, 113, 0.3); color: var(--text-danger); }
.icon-white { background-color: #ffffff; color: var(--primary); }

.feature-card { background-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(4px); text-align: left; }
.feature-card:hover { background-color: rgba(255, 255, 255, 0.15); }
.feature-card h3 { color: var(--text-white); font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; }
.cta-wrapper-center { text-align: center; margin-top: 2rem; }

.icon-rocket {
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-rocket {
    transform: translate(2px, -2px); /* Move levemente para cima e direita */
}


#benefits {
    background-color: #ffffff;
}
.grid-uneven {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .grid-uneven {
        grid-template-columns: 0.8fr 1fr;
        gap: 4rem;
    }
}

.benefits-text { text-align: left; width: 100%; }
.benefits-text h2 { text-align: left; }

.check-list { list-style: none; margin-bottom: 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.check-icon {
    background-color: var(--primary); color: white;
    width: 1.5rem; height: 1.5rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.check-icon svg { width: 1rem; height: 1rem; }

.benefits-visual-relative {
    position: relative;
    width: 100%;
    
    background-color: #047DE5; 
    padding: 2.5rem; 
    border-radius: 2.5rem; 
    box-shadow: 0 30px 60px -15px rgba(9, 128, 241, 0.4);
    
    display: flex; align-items: center;
    justify-content: center;
    min-height: 400px; 
    overflow: hidden; 
}

/* Camada 1 */
.layer-bg-decoration {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 110%; 
    opacity: 0.2; 
    filter: brightness(0) invert(1);
}

/* Camada 2 */
.layer-main-device {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.floating-label {
    position: absolute; background: white; padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; font-weight: 500; z-index: 10;
}
.floating-label .dot { width: 0.75rem; height: 0.75rem; background-color: var(--primary-light); border-radius: 50%; }
.label-top-left { top: 10%; left: -1rem; }
.label-mid-right { top: 45%; right: -2rem; }
.label-bottom-left { bottom: 10%; left: 0; }

.social-proof-section {
    background-color: #0980F1;
    padding: 0;
    position: relative;
    overflow: visible !important;
}

.bg-logo-watermark {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    height: 160%; width: auto;
    opacity: 0.04; 
    filter: grayscale(100%) brightness(0) invert(1);
}

.logo-left { left: -7; rotate: -1deg;}

@media (max-width: 768px) {
    .bg-logo-watermark { height: 120%; opacity: 0.03; }
    .logo-left { left: -40%; }
    .logo-right { right: -40%; }
}

.social-proof-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; color: white;
}
@media (min-width: 768px) { .social-proof-content { flex-direction: row; } }

.social-stats { display: flex; align-items: center; gap: 4rem; }

.icon-wrapper-lg {
    width: 12rem; 
    height: 12rem;
    
 
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0; 
    

    position: relative;
    z-index: 10;
}

.icon-wrapper-lg img[alt="BrasilIcon"] {
    position: absolute;
    

    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    
    width: 15rem; 
    height: auto;
    
    max-width: none !important; 
    max-height: none !important;

    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.highlight { 
    color: #ffffff; 
    font-weight: 700; 
    text-decoration: underline;
}

.divider-vertical { display: none; width: 1px; height: 4rem; background-color: rgba(255,255,255,0.2); }
@media (min-width: 768px) { .divider-vertical { display: block; } }

.trust-text { max-width: 28rem; font-size: 0.875rem; opacity: 0.9; text-align: center; }
@media (min-width: 768px) { .trust-text { text-align: left; } }


.contact-card-wrapper {
    background-color: var(--primary-dark);
    border-radius: 1.5rem; overflow: hidden;
    max-width: 64rem; margin: 0 auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.no-gap { gap: 0; }

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    padding: 3.7rem; color: white;
}
.brand-badge-white { display: flex; align-items: center; gap: 0.75rem; }
.mb-lg { margin-bottom: 2rem; }
.contact-title { font-size: 1.875rem; margin-bottom: 1rem; }
.contact-desc { font-size: 1.125rem; opacity: 0.9; margin-bottom: 1.5rem; }
.contact-sub { font-size: 0.875rem; opacity: 0.8; }

.contact-form-panel { background-color: var(--primary-dark); padding: 3rem;  }
.form-stack { display: flex; flex-direction: column; gap: 1rem; }
.form-input {
    width: 100%; padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none; background: white;
    font-family: var(--font-body); font-size: 1rem;
}
.form-input:focus { outline: 2px solid var(--primary); }
.mt-sm { margin-top: 0.5rem; }



#goToDown {
    text-decoration: none;
    color: inherit;
}




@media (max-width: 768px) {
    /* Reduz o padding do painel de informações e do formulário no mobile */
    .contact-info-panel,
    .contact-form-panel {
        padding: 1.5rem !important; /* Reduzido de 3rem/3.7rem para 1.5rem */
    }


    .contact-title {
        font-size: 1.5rem;
    }


    .form-input {
        width: 100%;
        box-sizing: border-box; 
    }
}

@media (max-width: 768px) {

    /* --- 1. CONSERTAR O MAPA DO BRASIL --- */
    /* Centraliza o container do ícone na tela */
    .icon-wrapper-lg {
        width: 160px;       /* Tamanho fixo e seguro para celular */
        height: 160px;
        margin: 0 auto 1rem auto; /* Centraliza horizontalmente e dá margem embaixo */
        display: block;     /* Garante comportamento de bloco para centralizar */
    }

    /* Ajusta a imagem do mapa dentro do container */
    .icon-wrapper-lg img[alt="BrasilIcon"] {
        width: 120% !important; /* Um pouco maior que o container (efeito 3D) */
        max-width: none;
        
        /* Centralização Absoluta Perfeita */
        left: 50% !important; /* Força o centro (corrige o 40% antigo) */
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    /* Garante que o texto abaixo fique organizado */
    .social-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .contact-form-panel .btn-lg {
        font-size: 0.9rem !important; /* Diminui a fonte para caber em uma linha */
        padding: 1rem 0.5rem !important; /* Menos preenchimento lateral */
        white-space: nowrap; /* Tenta manter em uma linha */
        width: 100%;
    }

    /* --- 3. CONSERTAR O RECAPTCHA NO IPHONE --- */
    .g-recaptcha {
        transform: scale(0.85); /* Reduz para 85% do tamanho original */
        transform-origin: 0 0;  /* Alinha à esquerda */
        margin-bottom: 1rem;
        display: flex;
        justify-content: center; /* Tenta centralizar se sobrar espaço */
    }
    
    
    .contact-form-panel > div:nth-last-child(2) { 
        
        display: flex; 
        justify-content: center; 
    }
}

