/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;

    /* Padrão de headings (h1/h2/h3) da página */
    --lp-heading-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --lp-heading-color: #4e4e4e;
}

/* ============================================
   ANIMAÇÕES DE ENTRADA (referência: index.html)
   ============================================ */
.lp-satelite-title,
.lp-satelite-description,
.lp-satelite-features,
.lp-satelite-images-desktop,
.lp-operacao-header,
.lp-operacao-cards .card,
.lp-numeros-title,
.lp-numero-card,
.lp-problema-title,
.lp-problema-text,
.lp-problema-top-title,
.lp-cenarios-title,
.lp-cenario-card,
.lp-escolher-title,
.lp-escolher-intro,
.lp-escolher-list li,
.lp-segmentos-title,
.lp-segmento-card,
.lp-diagnostico-title,
.lp-diagnostico-description,
.lp-diagnostico-step,
.lp-contato-title,
.lp-contato-description,
.lp-contato-form,
.lp-cta-final-title,
.btn-cta-final,
.lp-footer-container {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Hero: entrada leve no load */
.lp-hero-media {
    opacity: 0;
    transform: translateY(22px) scale(1.01);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.lp-hero-title,
.lp-hero-subtitle,
.lp-hero .btn-primary {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lp-hero.animate .lp-hero-media,
.lp-hero.animate .lp-hero-title,
.lp-hero.animate .lp-hero-subtitle,
.lp-hero.animate .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

/* Quando a seção ganha .animate, libera os itens */
.lp-satelite.animate .lp-satelite-title,
.lp-satelite.animate .lp-satelite-description,
.lp-satelite.animate .lp-satelite-features,
.lp-satelite.animate .lp-satelite-images-desktop,
.lp-operacao.animate .lp-operacao-header,
.lp-operacao.animate .lp-operacao-cards .card,
.lp-numeros.animate .lp-numeros-title,
.lp-numeros.animate .lp-numero-card,
.lp-problema.animate .lp-problema-title,
.lp-problema.animate .lp-problema-text,
.lp-problema.animate .lp-problema-top-title,
.lp-cenarios.animate .lp-cenarios-title,
.lp-cenarios.animate .lp-cenario-card,
.lp-escolher.animate .lp-escolher-title,
.lp-escolher.animate .lp-escolher-intro,
.lp-escolher.animate .lp-escolher-list li,
.lp-segmentos.animate .lp-segmentos-title,
.lp-segmentos.animate .lp-segmento-card,
.lp-diagnostico.animate .lp-diagnostico-title,
.lp-diagnostico.animate .lp-diagnostico-description,
.lp-diagnostico.animate .lp-diagnostico-step,
.lp-contato.animate .lp-contato-title,
.lp-contato.animate .lp-contato-description,
.lp-contato.animate .lp-contato-form,
.lp-cta-final.animate .lp-cta-final-title,
.lp-cta-final.animate .btn-cta-final,
.lp-footer.animate .lp-footer-container {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger simples */
.lp-operacao.animate .lp-operacao-cards .card:nth-child(1) { transition-delay: 0.15s; }
.lp-operacao.animate .lp-operacao-cards .card:nth-child(2) { transition-delay: 0.25s; }
.lp-operacao.animate .lp-operacao-cards .card:nth-child(3) { transition-delay: 0.35s; }

.lp-numeros.animate .lp-numero-card:nth-child(1) { transition-delay: 0.10s; }
.lp-numeros.animate .lp-numero-card:nth-child(2) { transition-delay: 0.18s; }
.lp-numeros.animate .lp-numero-card:nth-child(3) { transition-delay: 0.26s; }
.lp-numeros.animate .lp-numero-card:nth-child(4) { transition-delay: 0.34s; }
.lp-numeros.animate .lp-numero-card:nth-child(5) { transition-delay: 0.42s; }
.lp-numeros.animate .lp-numero-card:nth-child(6) { transition-delay: 0.50s; }

.lp-cenarios.animate .lp-cenario-card:nth-child(1) { transition-delay: 0.10s; }
.lp-cenarios.animate .lp-cenario-card:nth-child(2) { transition-delay: 0.18s; }
.lp-cenarios.animate .lp-cenario-card:nth-child(3) { transition-delay: 0.26s; }
.lp-cenarios.animate .lp-cenario-card:nth-child(4) { transition-delay: 0.34s; }
.lp-cenarios.animate .lp-cenario-card:nth-child(5) { transition-delay: 0.42s; }

.lp-diagnostico.animate .lp-diagnostico-step:nth-child(1) { transition-delay: 0.12s; }
.lp-diagnostico.animate .lp-diagnostico-step:nth-child(2) { transition-delay: 0.20s; }
.lp-diagnostico.animate .lp-diagnostico-step:nth-child(3) { transition-delay: 0.28s; }
.lp-diagnostico.animate .lp-diagnostico-step:nth-child(4) { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .lp-satelite-title,
    .lp-satelite-description,
    .lp-satelite-features,
    .lp-satelite-images-desktop,
    .lp-operacao-header,
    .lp-operacao-cards .card,
    .lp-numeros-title,
    .lp-numero-card,
    .lp-problema-title,
    .lp-problema-text,
    .lp-cenarios-title,
    .lp-cenario-card,
    .lp-escolher-title,
    .lp-escolher-intro,
    .lp-escolher-list li,
    .lp-segmentos-title,
    .lp-segmento-card,
    .lp-diagnostico-title,
    .lp-diagnostico-description,
    .lp-diagnostico-step,
    .lp-contato-title,
    .lp-contato-description,
    .lp-contato-form,
    .lp-cta-final-title,
    .btn-cta-final,
    .lp-footer-container,
    .lp-hero-media,
    .lp-hero-title,
    .lp-hero .btn-primary {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Padroniza TODAS as headings da LP */
body h1,
body h2,
body h3 {
    font-family: var(--lp-heading-font);
    color: var(--lp-heading-color) !important;
    font-weight: 700;
    line-height: 1.2;
}

/* Exceções: headings que precisam permanecer brancas */
.lp-hero-title,
.lp-segmento-title {
    color: #ffffff !important;
}

/* Seções com fundo escuro precisam de heading branca, mantendo o padrão */
.lp-diagnostico,
.lp-cta-final {
    --lp-heading-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp-hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    --lp-header-h: clamp(56px, 6vw, 72px);
}

.lp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Imagem do hero */
.lp-hero-media {
    position: relative;
    width: 100%;
    z-index: 1;
}

.lp-hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero banner desktop/mobile */
.lp-hero-banner-mobile {
    display: none;
}

.lp-hero-banner-desktop {
    display: block;
}

/* Overlay para manter contraste do texto no hero (sobre a imagem) */
.lp-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;
}

/* Header do LP (logo + botão) */
.lp-header {
    position: relative;
    z-index: 15;
    width: 100%;
    height: var(--lp-header-h);
    padding: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.lp-header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    padding-left: clamp(0.75rem, 2vw, 2rem);
    padding-right: clamp(1.5rem, 3vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lp-logo {
    display: flex;
    align-items: center;
}

.lp-logo img {
    height: clamp(36px, 1.8vw, 52px);
    width: auto;
}

.lp-header-cta {
    white-space: nowrap;
}

.lp-menu-toggle {
    display: none;
    width: 28px;
    height: 20px;
    border-radius: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

.lp-menu-toggle-line {
    width: 28px;
    height: 2px;
    background: #2b2b2b;
    border-radius: 0;
    display: block;
}

/* Menu mobile (overlay simples) */
.lp-mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9999;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
}

.lp-mobile-menu-panel {
    width: min(82vw, 360px);
    height: 100%;
    background: #ffffff;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-bottom: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.lp-mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem 0.75rem 0.25rem 0.75rem;
    border-bottom: 1px solid #eeeeee;
}

.lp-mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
}

.lp-mobile-menu-content {
    padding: 1.25rem 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.lp-mobile-menu-btn {
    width: 100%;
    max-width: 100%;
}

/* Garante que os botões dentro do menu tenham exatamente o mesmo tamanho */
.lp-mobile-menu-content .btn-primary,
.lp-mobile-menu-content .btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    white-space: nowrap;
}

body.lp-menu-open {
    overflow: hidden;
}

body.lp-menu-open .lp-mobile-menu {
    display: flex;
}

body.lp-menu-open .lp-mobile-menu-panel {
    transform: translateX(0);
}

.btn-secondary {
    background: rgba(60, 60, 60, 0.92);
    color: #ffffff;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: clamp(0.9rem, 0.8vw, 1rem);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(80, 80, 80, 0.95);
    transform: translateY(-2px);
}

.lp-hero-content {
    position: absolute;
    top: calc(var(--lp-header-h) + 24vh);
    bottom: auto;
    left: clamp(3rem, 5vw, 6rem);
    z-index: 15;
    /* Mais espaço útil no hero para reduzir quebras de linha no título/subtítulo */
    width: min(980px, 92vw);
    max-width: 980px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}

.lp-hero-title {
    font-size: clamp(2.2rem, 3.6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
    text-align: left;
    letter-spacing: -0.02em;
    /* Usa toda a largura do container do hero (evita quebra excessiva) */
    width: 110%;
    max-width: 110%;
}

.lp-hero-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.55;
    margin: 0;
    max-width: 62ch;
    text-align: left;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.btn-primary {
    background: linear-gradient(90deg, #f6b21b 0%, #f6b21b 100%);
    color: #424242;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(246, 178, 27, 0.3);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 178, 27, 0.5);
    background: linear-gradient(90deg, #f7c03d 0%, #f7c03d 100%);
}

.lp-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 6;
    fill: #ffffff;
}

/* ============================================
   SEÇÃO INTERNET VIA SATÉLITE
   ============================================ */
.lp-satelite {
    /* Aumenta o respiro inferior para evitar sobreposição com a próxima seção (.lp-operacao) */
    padding: clamp(4rem, 6vw, 8rem) 0 clamp(5rem, 6vw, 7.5rem);
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.lp-satelite-title-top {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto clamp(2rem, 3vw, 3rem);
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    text-align: center;
}

.lp-satelite-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
}

.lp-satelite-images {
    position: relative;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-satelite-images-desktop .lp-satelite-main-image {
    position: relative;
    width: 120%;
    max-width: none;
    height: auto;
    top: auto;
    bottom: auto;
    left: auto;
    margin-left: -10%;
}

.lp-satelite-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transform: none;
    transform-origin: center;
}



.lp-satelite-field-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-satelite-dots-gray {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 80px;
    height: 200px;
    background-image: radial-gradient(circle, #d0d0d0 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
    z-index: 0;
}

.lp-satelite-dots-blue {
    position: absolute;
    bottom: 15%;
    right: -5%;
    width: 60px;
    height: 180px;
    background-image: radial-gradient(circle, #0066cc 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
    z-index: 0;
}

.lp-satelite-dots-dark {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 50px;
    height: 150px;
    background-image: radial-gradient(circle, #4a4a4a 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.4;
    z-index: 0;
}

.lp-satelite-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    margin: 0;
    position: relative;
    z-index: 3;
    text-align: justify;
}

/* Imagem mobile (fica dentro do conteúdo) */
.lp-satelite-images-mobile {
    display: none;
}

.lp-satelite-images-desktop {
    display: flex;
    align-items: flex-end;
}

.lp-satelite-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

/* Título no topo da seção satélite: centralizado na tela */
.lp-satelite-title.lp-satelite-title-top {
    text-align: center;
    width: min(1200px, 92vw);
    margin-left: auto;
    margin-right: auto;
}

.lp-satelite-description {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.lp-satelite-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.lp-satelite-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    background: #e8f5e9;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    width: 100%;
    margin-left: 0;
}

.lp-satelite-checkmark {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.lp-satelite-checkmark svg {
    width: 100%;
    height: 100%;
}

.lp-satelite-feature-text {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    color: #000000;
    font-weight: 500;
}

/* ============================================
   SEÇÃO OPERAÇÃO ROBUSTA
   ============================================ */
.lp-operacao {
   
    padding: clamp(4rem, 6.5vw, 7.5rem) 0;
    position: relative;
    margin-top: -65px;
    z-index: 1;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lp-operacao-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-operacao-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 3vw, 3rem);
    margin-bottom: 0;
    align-items: start;
}

.lp-operacao-title .lp-operacao-title-text {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    letter-spacing: -0.02em;
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
}

.lp-operacao-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: clamp(1.25rem, 2.2vw, 2rem);
}

.lp-operacao-card {
    /* Igual ao visual dos cards de cenários (.lp-cenario-card) */
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
}

.lp-operacao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.lp-operacao-icon {
    width: clamp(60px, 4.2vw, 120px);
    height: clamp(60px, 4.2vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-operacao-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(30%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.lp-operacao-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #4e4e4e;
    letter-spacing: -0.01em;
}

.lp-operacao-list {
    list-style: disc;
    margin: 0.25rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.45rem;
    text-align: left;
    width: 100%;
    max-width: 48ch;
}

.lp-operacao-list li {
    font-size: 1rem;
    line-height: 1.65;
    color: #3a3a3a;
}

.lp-operacao-list li::marker {
    color: rgba(246, 178, 27, 0.95);
}

/* Mantido só para compatibilidade caso algum HTML antigo ainda use .lp-operacao-text-content */
.lp-operacao-text .lp-operacao-text-content {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    margin: 0;
    text-align: left;
}

.lp-operacao-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.lp-operacao-cards .card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-operacao-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.lp-operacao-cards .card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* ============================================
   SEÇÃO NOSSOS NÚMEROS
   ============================================ */
.lp-numeros {
    background-color: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.lp-numeros-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-numeros-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4e4e4e;
    line-height: 1.2;
    margin: 0 0 3.5rem 0;
    text-align: center;
}

.lp-numeros-grid {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-numero-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.3s ease;
}

.lp-numero-card:nth-child(3n) {
    border-right: none;
}

.lp-numero-card:nth-child(n+4) {
    border-bottom: none;
}

/* Garante a linha divisória entre 2ª e 3ª coluna no desktop */
@media (min-width: 969px) {
    .lp-numero-card:nth-child(3),
    .lp-numero-card:nth-child(6) {
        border-left: 1px solid #e8e8e8;
    }
}

.lp-numero-card:hover {
    background-color: #fafafa;
}

.lp-numero-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-numero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(30%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.lp-numero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4e4e4e;
    margin: 0;
    font-weight: 400;
}

.lp-numero-text strong {
    font-weight: 700;
    color: #2a2a2a;
}

/* ============================================
   SEÇÃO PROBLEMA
   ============================================ */
.lp-problema {
    padding: clamp(4rem, 6vw, 8rem) 0;
    background: #ffffff;
}

.lp-problema-top-title {
    max-width: 1440px;
    margin: 0 auto clamp(2rem, 3vw, 3rem);
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    text-align: center;
}

/* Garantia extra: quando o título usa as duas classes, força centralização */
.lp-cenarios-title.lp-problema-top-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.lp-problema-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.lp-problema-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.lp-problema-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
}

.lp-problema-image img {
    width: 100%;
    height: 100%;
    min-height: clamp(280px, 35vw, 460px);
    object-fit: cover;
    display: block;
}

.lp-problema-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0 0 2rem 0;
}

.lp-problema-text {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
    max-width: 62ch;
}

.lp-problema-list {
    list-style: disc;
    margin: 0.5rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.55rem;
    max-width: 68ch;
}

.lp-problema-list li {
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    line-height: 1.65;
    color: #4a4a4a;
}

.lp-problema-list li::marker {
    color: rgba(246, 178, 27, 0.95);
}

.lp-problema-list strong {
    color: #2a2a2a;
}

@media (max-width: 768px) {
    .lp-problema-container {
        display: flex;
        flex-direction: column; /* imagem acima, textos abaixo (somente mobile) */
        gap: 2rem;
    }

    .lp-problema-content {
        text-align: center;
        align-items: center;
    }

    .lp-problema-text {
        max-width: 900px;
    }

    .lp-problema-top-title {
        margin-bottom: 1.5rem;
    }

    .lp-problema-list {
        text-align: left;
        width: 100%;
        max-width: 900px;
    }
}

/* ============================================
   SEÇÃO CENÁRIOS
   ============================================ */
.lp-cenarios {
    background-color: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.lp-cenarios-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-cenarios-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #4e4e4e;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.lp-cenarios-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: clamp(2rem, 3vw, 3rem);
    position: relative;
    padding: clamp(18px, 1.4vw, 28px) clamp(12px, 1.6vw, 24px);
}

.lp-cenarios-carousel {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: clamp(1.25rem, 1.6vw, 2.25rem);
    transition: transform 0.5s ease;
    width: 100%;
    will-change: transform;
    padding: 0;
}

/* Desktop: 3 cards visíveis por vez */
@media (min-width: 969px) {
    .lp-cenarios-carousel {
        gap: 2rem; /* 2rem = 32px (referência do JS) */
    }

    .lp-cenario-card {
        flex: 0 0 calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}

.lp-cenario-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: clamp(2.75rem, 2.6vw, 4.75rem) clamp(2.25rem, 2.2vw, 3.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 1.8vw, 2.75rem);
    flex: 0 0 calc(33.333% - 1.34rem);
    max-width: calc(33.333% - 1.34rem);
    min-height: clamp(360px, 24vw, 520px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.lp-cenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.lp-cenario-icon {
    width: clamp(60px, 4.2vw, 120px);
    height: clamp(60px, 4.2vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-cenario-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(30%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.lp-cenario-text {
    font-size: clamp(1.1rem, 1.25vw, 1.5rem);
    line-height: 1.65;
    color: #4e4e4e;
    margin: 0;
    font-weight: 400;
}

.lp-cenarios-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.lp-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lp-pagination-dot.active {
    background-color: #f6b21b;
    transform: scale(1.2);
}

/* ============================================
   SEÇÃO POR QUE ESCOLHER
   ============================================ */
.lp-escolher {
    padding: clamp(4rem, 6vw, 8rem) 0;
    background: #ffffff;
}

.lp-escolher-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: start;
    margin-bottom: 3rem;
}

.lp-escolher-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lp-escolher-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.lp-escolher-intro {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

.lp-escolher-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-escolher-item {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: #4a4a4a;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.lp-escolher-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 1.5rem;
    line-height: 1.2;
}

.lp-escolher-item strong {
    font-weight: 700;
    color: #0066cc;
}

.lp-escolher-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/5;
}

.lp-escolher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-escolher-result {
    background: #e8f5e9;
    padding: 3.25rem 0;
    margin-top: 3rem;
}

.lp-escolher-result-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    min-height: 120px;
}

.lp-escolher-result-icon {
    width: 42px;
    height: 42px;
    color: #4CAF50;
    flex-shrink: 0;
}

.lp-escolher-result-icon svg {
    width: 100%;
    height: 100%;
}

.lp-escolher-result-text {
    font-size: clamp(1.1rem, 1.35vw, 1.35rem);
    color: #000000;
    font-weight: 500;
    margin: 0;
}

/* ============================================
   SEÇÃO SEGMENTOS
   ============================================ */
.lp-segmentos {
    background-color: #f5f5f5;
    padding: 5rem 0;
    position: relative;
}

.lp-segmentos-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-segmentos-title {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #4e4e4e;
    line-height: 1.2;
    margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
    text-align: center;
}

.lp-segmentos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.lp-segmento-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #2a2a2a;
    min-height: 300px;
    text-decoration: none;
    display: block;
    height: 100%;
    border: 1px solid transparent;
    appearance: none;
    -webkit-appearance: none;
    text-align: justify;
}

.lp-segmento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lp-segmento-card-large {
    grid-row: 1 / 3;
    min-height: 620px;
}

.lp-segmento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.lp-segmento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

.lp-segmento-card:hover img {
    filter: grayscale(80%) brightness(0.8);
}

.lp-segmento-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0 1.25rem;
    z-index: 2;
}

.lp-segmento-description {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #ffffff;
    max-width: 28ch;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
    pointer-events: none;
    text-align: center;
}

.lp-segmento-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.lp-segmento-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.lp-segmento-arrow svg {
    width: 100%;
    height: 100%;
}

.lp-segmento-card.active {
    border-color: #f6b21b;
    box-shadow: 0 0 0 1px rgba(246, 178, 27, 0.28), 0 8px 25px rgba(0, 0, 0, 0.25);
}

.lp-segmento-card.active::after {
    background: rgba(0, 0, 0, 0.55);
}

.lp-segmento-card.active .lp-segmento-content {
    gap: 0.9rem;
}

.lp-segmento-card.active .lp-segmento-description {
    opacity: 1;
    max-height: 180px;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================
   SEÇÃO DIAGNÓSTICO
   ============================================ */
.lp-diagnostico {
    padding: 5rem 0;
    background-image: url('img/fundo-compromisso.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.lp-diagnostico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.lp-diagnostico-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.lp-diagnostico-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.lp-diagnostico-content {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: stretch;
}

.lp-diagnostico-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    border-radius: 14px;
    padding: clamp(1.5rem, 2vw, 2rem);
}

.lp-diagnostico-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    max-width: 36ch;
}

.btn-diagnostico {
    background: linear-gradient(90deg, #f6b21b 0%, #f6b21b 100%);
    color: #424242;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(246, 178, 27, 0.3);
    white-space: nowrap;
}

.lp-diagnostico-button {
    display: flex;
    align-items: flex-start;
    margin-top: 0.25rem;
}

.btn-diagnostico:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 178, 27, 0.5);
    background: linear-gradient(90deg, #f7c03d 0%, #f7c03d 100%);
}

.lp-diagnostico-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.lp-diagnostico-step {
    background-color: rgba(60, 60, 60, 0.8);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
}

.lp-step-number {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.lp-step-text {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   SEÇÃO FORMULÁRIO DE CONTATO
   ============================================ */
.lp-contato {
    padding: clamp(4rem, 6vw, 8rem) 0;
    background: #f5f5f5;
}

.lp-contato-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.lp-contato-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 1.5rem;
}

.lp-contato-description {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: #4a4a4a;
    line-height: 1.8;
    text-align: justify;
    margin: 0 auto 3rem;
    max-width: 900px;
}

.lp-contato-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.lp-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.lp-form-row:last-of-type {
    margin-bottom: 0;
}

.lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-form-group-full {
    grid-column: 1 / -1;
}

.lp-form-label {
    font-size: clamp(0.95rem, 1vw, 1rem);
    font-weight: 500;
    color: #000000;
}

.lp-form-input,
.lp-form-textarea {
    padding: 0.875rem 1.25rem;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: clamp(0.95rem, 1vw, 1rem);
    font-family: inherit;
    color: #000000;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.lp-form-input:focus,
.lp-form-textarea:focus {
    outline: none;
    border-color: #f6b21b;
}

.lp-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.lp-form-submit {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-contato {
    background: linear-gradient(90deg, #f6b21b 0%, #f6b21b 100%);
    color: #424242;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(246, 178, 27, 0.3);
}

.btn-contato:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 178, 27, 0.5);
    background: linear-gradient(90deg, #f7c03d 0%, #f7c03d 100%);
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */
.lp-cta-final {
    padding: clamp(4rem, 6vw, 8rem) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%);
    background-image: url('img/fundo-compromisso.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.lp-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    pointer-events: none;
}

.lp-cta-final-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    text-align: center;
}

.lp-cta-final-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.lp-cta-final-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

@media (max-width: 968px) {
    .lp-cta-final-container {
        text-align: center;
    }
    .lp-cta-final-content {
        align-items: center;
        justify-content: center;
    }
    .lp-cta-final-title {
        text-align: center;
    }
}
.btn-cta-final {
    background: transparent;
    color: #f6b21b;
    padding: 1rem 2.5rem;
    border: 2px solid #f6b21b;
    border-radius: 50px;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    background: #f6b21b;
    color: #424242;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 178, 27, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
    background: #ffffff;
    padding: 3rem 0 0;
}

.lp-footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.lp-footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.lp-footer-link {
    font-size: 0.9rem;
    color: #666;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.lp-footer-link:hover {
    color: #f6b21b;
}

.lp-footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-footer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.lp-footer-text strong {
    font-weight: 600;
    color: #000000;
}

.lp-social-icons {
    display: flex;
    gap: 1rem;
}

.lp-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lp-social-icon:hover {
    background: #f6b21b;
    transform: translateY(-2px);
}

.lp-social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.lp-social-icon svg {
    width: 24px;
    height: 24px;
    color: #4a4a4a;
    display: block;
}

.lp-footer-copyright {
    background: #2a2a2a;
    padding: 1.5rem 0;
    text-align: center;
}

.lp-footer-copyright p {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1200px) {
    .lp-hero-title {
        font-size: 2.8rem;
    }

    .lp-operacao-title .lp-operacao-title-text {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .lp-numeros-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .lp-segmentos-title {
        font-size: clamp(2rem, 4vw, 2.2rem);
    }
}

@media (max-width: 968px) {
    .lp-satelite-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lp-satelite-title,
    .lp-satelite-description {
        text-align: left;
    }

    .lp-satelite-feature {
        margin-left: 0;
        justify-content: flex-start;
    }

    .lp-operacao-header {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 0;
    }

    .lp-operacao-title .lp-operacao-title-text {
        font-size: clamp(1.75rem, 4.2vw, 2.2rem);
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 36ch;
    }

    .lp-operacao-text {
        grid-template-columns: 1fr;
    }

    .lp-operacao-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lp-operacao-cards .card img {
        height: 350px;
    }

    .lp-cenario-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .lp-numeros-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .lp-numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .lp-numero-card {
        padding: 2.5rem 2rem;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }

    .lp-numero-card:nth-child(2n) {
        border-right: none;
    }

    /* Remover borda inferior apenas do último card (card 6) */
    .lp-numero-card:nth-child(6) {
        border-bottom: none;
    }

    /* Garantir borda inferior no card 4 (linha 2) */
    .lp-numero-card:nth-child(4) {
        border-bottom: 1px solid #e8e8e8;
    }

    /* Garantir borda inferior no card 5 (linha 3, primeira coluna) */
    .lp-numero-card:nth-child(5) {
        border-bottom: 1px solid #e8e8e8;
    }

    .lp-segmentos-title {
        font-size: 2.2rem;
    }

    .lp-segmentos-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .lp-segmento-card-large {
        grid-row: 1 / 2;
        min-height: 300px;
    }

    .lp-escolher-container {
        grid-template-columns: 1fr;
    }

    .lp-escolher-title {
        text-align: left;
    }

    /* Textos justificados no mobile (seção "lp-escolher") */
    .lp-escolher-intro,
    .lp-escolher-item {
        text-align: justify;
        text-justify: inter-word;
    }

    .lp-diagnostico-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lp-diagnostico-steps {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .lp-footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-footer {
        padding: 2.5rem 0 0;
    }

    .lp-footer-container {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .lp-footer-copyright {
        display: block;
        padding: 1rem 0;
    }

    .lp-footer-copyright p {
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .lp-hero {
        height: 70vh;
        min-height: 500px;
        max-height: 600px;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .lp-hero-media {
        height: 100%;
    }

    /* Contraste melhor no mobile (texto mais legível sobre a imagem) */
    .lp-hero-media::after {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.42) 38%,
            rgba(0, 0, 0, 0.10) 72%,
            rgba(255, 255, 255, 0.0) 100%
        );
    }

    .lp-hero-banner {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .lp-hero-banner-desktop {
        display: none;
    }

    .lp-hero-banner-mobile {
        display: block;
    }

    .lp-hero-content {
        /* Evita “sair para fora” no mobile: centraliza pelo container, sem translate */
        left: 0;
        right: 0;
        top: calc(var(--lp-header-h) + 14%);
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        gap: 0.9rem;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .lp-hero-title {
        font-size: clamp(1.55rem, 5.4vw, 2.05rem);
        margin-bottom: 0.15rem;
        line-height: 1.22;
        max-width: 100%;
    }

    .lp-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.45;
        max-width: 100%;
        opacity: 0.95;
    }

    .lp-hero-wave {
        height: 80px;
        transform: translateY(1px);
    }

    .btn-primary {
        padding: 0.9rem 1.75rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Centraliza CTAs que levam ao formulário (somente mobile) */
    .lp-hero-content .btn-primary,
    .lp-diagnostico-button .btn-diagnostico,
    .lp-cta-final-content .btn-cta-final,
    .lp-mobile-menu-content .btn-primary,
    .lp-mobile-menu-content .btn-secondary {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .lp-diagnostico-button {
        width: 100%;
        justify-content: center;
    }

    .lp-cta-final-content {
        width: 100%;
    }

    .lp-header-container {
        padding-left: 1rem;
        padding-right: 1rem;
        justify-content: center;
    }

    .lp-logo {
        margin: 0 auto;
    }

    .lp-logo img {
        height: 34px;
    }

    .lp-header-cta {
        display: none;
    }

    .lp-menu-toggle {
        display: inline-flex;
    }

    /* Satélite (mobile) - layout igual ao print */
    .lp-satelite {
        padding: 3rem 0 4rem;
    }

    .lp-satelite-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: justify;
        gap: 0;
        padding: 0 1rem;
    }

    .lp-satelite-content {
        margin: 0;
        align-items: stretch;
        text-align: justify;
        gap: 1.5rem;
        width: 100%;
        max-width: 520px;
    }

    .lp-satelite-title {
        font-size: clamp(1.6rem, 5vw, 1.7rem);
        line-height: 1.2;
        letter-spacing: -0.01em;
        margin: 0;
        max-width: 22ch;
        text-align: center;
    }

    .lp-satelite-title-top {
        margin-bottom: 1.25rem;
        /* Menos quebras no mobile */
        max-width: 34ch;
        text-wrap: balance;
    }

    .lp-satelite-images-desktop {
        display: none;
    }

    .lp-satelite-images-mobile {
        display: flex;
    }

    .lp-satelite-images-mobile {
        width: 100%;
        height: auto;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .lp-satelite-images-mobile .lp-satelite-main-image {
        position: relative;
        inset: auto;
        left: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
    }

    .lp-satelite-images-mobile .lp-satelite-main-image img {
        transform: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .lp-satelite-description {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    .lp-satelite-features {
        width: 100%;
        max-width: 420px;
        margin: 0.25rem auto 0;
        gap: 0.9rem;
        padding-bottom: 0.5rem;
    }

    .lp-satelite-feature {
        justify-content: flex-start;
        padding: 0.85rem 1.25rem;
    }

    .lp-cenarios {
        padding: 3rem 0;
    }

    .lp-cenarios-container {
        padding: 0 1rem;
    }

    .lp-cenarios-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .lp-cenarios-carousel-wrapper {
        overflow: hidden;
        padding: 0;
    }

    .lp-cenarios-carousel {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 2rem; /* mantém a conta do JS */
        align-items: stretch;
    }

    .lp-cenario-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: auto;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        min-height: 360px;
    }

    .lp-cenario-icon {
        width: 48px;
        height: 48px;
    }

    .lp-cenario-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .lp-cenarios-pagination {
        display: flex;
    }

    .lp-operacao {
        padding: 3rem 0;
        margin-top: -40px;
        min-height: auto;
    }

    .lp-operacao-container {
        padding: 0 1rem;
    }

    .lp-operacao-header {
        margin-bottom: 2rem;
        gap: 1.5rem;
    }

    .lp-operacao-title .lp-operacao-title-text {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .lp-operacao-text .lp-operacao-text-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .lp-operacao-cards {
        gap: 1rem;
    }

    .lp-operacao-cards .card img {
        height: 250px;
    }

    /* Números (mobile) - mesmo layout do index (.nossos-numeros) */
    .lp-numeros {
        padding: 3rem 0;
    }

    .lp-numeros-container {
        padding: 0 1rem;
    }

    .lp-numeros-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .lp-numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .lp-numero-card {
        padding: 1.8rem 1rem;
        gap: 1.2rem;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }

    .lp-numero-card:nth-child(2n) {
        border-right: none;
    }

    .lp-numero-card:nth-child(6) {
        border-bottom: none;
    }

    .lp-numero-card:nth-child(4) {
        border-bottom: 1px solid #e8e8e8 !important;
    }

    .lp-numero-card:nth-child(5) {
        border-bottom: 1px solid #e8e8e8 !important;
    }

    .lp-numero-icon {
        width: 55px;
        height: 55px;
    }

    .lp-numero-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .lp-segmentos {
        padding: 3rem 0;
    }

    .lp-segmentos-container {
        padding: 0 1rem;
    }

    .lp-segmentos-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .lp-segmentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lp-segmento-card-large {
        min-height: 300px;
    }

    .lp-segmento-card {
        min-height: 280px;
    }

    .lp-segmento-content {
        padding: 1.5rem 1rem;
    }

    .lp-segmento-title {
        font-size: 1.4rem;
    }

    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-diagnostico {
        padding: 3rem 0;
    }

    .lp-diagnostico-container {
        padding: 0 1.5rem;
    }

    .lp-diagnostico-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .lp-diagnostico-description {
        font-size: 1rem;
    }

    .lp-cta-final {
        min-height: 320px;
        display: flex;
        align-items: center;
    }

    .lp-cta-final-content {
        /* Desce mais o texto no mobile */
        transform: translateY(22px);
    }
}

@media (max-width: 480px) {
    .lp-numeros-title {
        font-size: 1.5rem;
    }

    .lp-numeros-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }

    .lp-numero-card {
        padding: 1.5rem 1rem;
        gap: 1rem;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .lp-numero-card:last-child {
        border-bottom: none;
    }
    .lp-hero {
        height: 60vh;
        min-height: 400px;
        max-height: none;
        padding: 0;
    }

    .lp-hero-media {
        height: 100%;
    }

    .lp-hero-banner {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .lp-hero-banner-desktop {
        display: none;
    }

    .lp-hero-banner-mobile {
        display: block;
    }

    .lp-hero-wave {
        height: 60px;
    }

    .lp-hero-content {
        left: 1rem;
        top: calc(var(--lp-header-h) + 22%);
        padding-top: 0;
        box-sizing: border-box;
        width: 100%;
        gap: 1rem;
    }

    .lp-hero-title {
        font-size: clamp(1.3rem, 4vw, 1.5rem);
        margin-bottom: 0.35rem;
        line-height: 1.2;
    }

    .btn-primary {
        padding: 0.85rem 1.5rem;
        font-size: 0.875rem;
        width: auto;
        max-width: none;
        white-space: nowrap;
    }

    .lp-header-container {
        padding-left: 1.25rem;
        padding-right: 1rem;
    }

    .lp-logo img {
        height: 28px;
    }

    .lp-satelite {
        padding: 2.5rem 0 3.5rem;
    }

    .lp-satelite-content {
        max-width: 420px;
        gap: 1.25rem;
    }

    .lp-satelite-title {
        font-size: clamp(1.6rem, 5.2vw, 1.5rem);
        line-height: 1.2;
        max-width: 22ch;
    }

    /* No extra-small, dá mais largura útil ao título do topo para reduzir quebras */
    .lp-satelite-title-top {
        max-width: 32ch;
        text-wrap: balance;
    }

    .lp-satelite-images-mobile .lp-satelite-main-image {
        max-width: 420px;
    }

    .lp-satelite-description {
        font-size: 0.95rem;
    }

    .lp-satelite-features {
        max-width: 380px;
        gap: 0.8rem;
        padding-bottom: 0.5rem;
    }

    .lp-segmentos-title {
        font-size: 1.5rem;
    }

    .lp-segmento-title {
        font-size: 1.2rem;
    }

    .lp-cenarios {
        padding: 2.5rem 0;
    }

    .lp-cenarios-title {
        font-size: 1.5rem;
    }

    .lp-cenarios-carousel-wrapper {
        overflow: hidden;
        padding: 0;
    }

    .lp-cenarios-carousel {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 2rem; /* mantém a conta do JS */
        align-items: stretch;
    }

    .lp-cenario-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 2rem 1.5rem;
        min-height: 320px;
    }

    .lp-cenario-icon {
        width: 42px;
        height: 42px;
    }

    .lp-cenario-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .lp-cenarios-pagination {
        display: flex;
    }

    .lp-operacao {
        padding: 2rem 0;
    }

    .lp-operacao-title .lp-operacao-title-text {
        font-size: 1.4rem;
    }

    .lp-operacao-cards .card img {
        height: 200px;
    }

    .lp-contato-form {
        padding: 2rem 1.5rem;
    }

    .lp-footer {
        padding: 2rem 0 0;
    }

    .lp-footer-container {
        padding: 0 1rem;
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .lp-footer-copyright {
        display: block;
        padding: 1rem 0;
    }

    .lp-diagnostico-title {
        font-size: 1.75rem;
    }

    .lp-diagnostico-step {
        padding: 1rem 1.25rem;
    }

    .lp-step-number,
    .lp-step-text {
        font-size: 0.9375rem;
    }
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */
.lp-back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(90, 90, 90, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #000000;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.28s ease;
    z-index: 9999;
}

.lp-back-to-top:hover {
    transform: translateY(-2px) scale(1);
    background: rgba(95, 95, 95, 0.52);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.lp-back-to-top:active {
    transform: translateY(0) scale(0.98);
}

.lp-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lp-back-to-top svg {
    width: 22px;
    height: 22px;
    display: block;
}
