/* ========================================= */
/* CONFIGURAÇÕES GLOBAIS E VARIÁVEIS        */
/* ========================================= */
:root {
    /* Cores e Identidade Visual Premiums */
    --primary: #0b245e;
    --primary-green: #00a859;
    --accent-green: #00ff87;
    --deep-blue: #0b192c;
    --dark-blue-text: #0d233a;
    --dark: #071733;
    --light-bg: #fafcfe;
    --light: #f7f9ff;
    --card-bg: #ffffff;
    --text-muted: #64748b;
    --text: #5b6475;
    
    /* Fontes e Efeitos */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-blue-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(98%, 1440px);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    scroll-margin-top: 20px;
}

/* ========================================= */
/* ELEMENTOS DE TEXTO PRINCIPAIS            */
/* ========================================= */
h1, h2, h3, h4 {
    color: var(--dark-blue-text);
}

h1 {
    font-size: clamp(22px, 8vw, 70px);
    text-transform: auto;
    line-height: 1.09;
    font-weight: 750;
    margin-bottom: 25px;
    letter-spacing: -0.8px;

}

h1 span {
    display: block;
    color: var(--primary-green);
}

/* ========================================= */
/* HEADER & NAVBAR                          */
/* ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 252, 254, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease !important;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06) !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
}

/* Tornar a navbar mais fluida em telas pequenas */
.navbar {
    flex-wrap: wrap;
    gap: 1px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1px;
}

.logo img {
    width: clamp(40px, 9vw, 82px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.5));
}

.logo-text h2 {
    font-size: clamp(14px, 2.6vw, 20px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: var(--dark-blue-text);
}

.logo-text span {
    color: var(--primary-green);
}

.logo-text p {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.brand-highlight {
    color: #ffd700;
    font-weight: 800;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

/* Nav flexível: permite wrap e redução do gap em telas pequenas */
nav {
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(8px, 4vw, 32px);
}

nav a {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: var(--transition-smooth);
    position: relative;
    padding: 4px 0;
}

nav a:hover, nav a.active {
    color: var(--dark-blue-text);
    font-weight: 600;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 16px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

/* Botão Diagnóstico do Header */
.btn-diagnostic-header {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.5);
    transition: var(--transition-smooth);
}

.btn-diagnostic-header:hover {
    transform: translateY(-2px);
    background-color: #00944f;
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.3);
}

/* ========================================= */
/* BOTÕES DO PRODUTO                         */
/* ========================================= */
.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #0d233a;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 22px;
    width: fit-content;
    transition: all 0.25s ease;
    background: white;
}

.product-btn:hover {
    border-color: #00a859;
    color: #00a859;
    background: rgba(0, 168, 89, 0.04);
    transform: translateX(3px);
}

/* Lado imagem */
.product-image {
    overflow: hidden;
    min-height: 380px;
    background: #f1f5f9;
    position: relative;
}

.product-image img {
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

/* Fallback visual quando imagem não carrega */
.product-image img[src=""] ,
.product-image img:not([src]) {
    display: none;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}
/* Card de produto — layout split */
.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e8edf5;
    margin-bottom: 28px;
    /* DEFINIÇÃO DE TAMANHO MÁXIMO E RESPONSIVIDADE */
    width: 100%;               /* Garante que ele use o espaço disponível em telas pequenas */
    max-width: 900px;          /* O tamanho máximo que o seu card poderá atingir (ajuste como quiser) */
    margin: 0 auto 37px auto;  /* O 'auto' nas laterais centraliza o card caso a tela seja maior que 800px */
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* Inverte a ordem: imagem à esquerda, texto à direita */
.product-card-reverse {
    direction: rtl;
}

.product-card-reverse > * {
    direction: ltr;
}

/* Lado texto */
.product-text {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tag do produto */
.product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00a859;
    background: rgba(0, 168, 89, 0.07);
    border: 1px solid rgba(0, 168, 89, 0.18);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 20px;
    width: fit-content;
}

.product-text h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    line-height: 1.2;
    color: #0d233a;
    margin-bottom: 16px;
}

.product-text > p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Lista de features */
.product-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.pf-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}


.product-card:hover .product-image img {
    transform: scale(1.04);
}

/* Strip de rodapé */
.products-footer-strip {
    background: #0d233a;
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.products-footer-strip p {
    font-size: 16px;
    color: #94a3b8;
    margin: 0;
    flex: 1;
}

.products-footer-strip p strong {
    color: white;
}

/* ===== RESPONSIVIDADE PRODUTOS ===== */
@media (max-width: 900px) {
    .product-card,
    .product-card-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .product-image {
        min-height: 260px;
        order: -1;
    }

    .product-text {
        padding: 36px 28px;
    }

    .products-footer-strip {
        flex-direction: column;
        text-align: center;
    }
}
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00a859;
    margin-bottom: 14px;
    padding: 4px 12px;
    background: rgba(0, 168, 89, 0.06);
    border: 1px solid rgba(0, 168, 89, 0.15);
    border-radius: 50px;
}

/* ========================================= */
/* BOTÕES DE COMPONENTES DO HERO             */
/* ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 23px;
    border-radius: 10px;
    background-color: var(--primary-green);
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    min-width: 120px;
    border: auto;
    cursor: pointer;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(2, 53, 29, 0.2);
}

.btn:hover {
    background-color: #08502e;
    box-shadow: 0 6px 22px rgba(0, 168, 89, 0.3);
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
    transition: var(--transition-smooth);
    min-width: 220px;
    text-align: center;
    background: transparent;
    gap: 10px;
}

.secondary-btn:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
}

/* ========================================= */
/* SEÇÃO HERO                               */
/* ========================================= */
.hero {
    padding-top: 130px;
    padding-bottom: 80px;
    position: relative;
        background: radial-gradient(ellipse at 80% 0%, rgba(0, 168, 89, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 100%, rgba(11, 36, 94, 0.04) 0%, transparent 50%),
                #fafcfe !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
    align-items: start;
}

.hero-left-side {
    display: flex;
    flex-direction: column;
}

/* Mini Tags Superiores */
.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.tag-item {
    background: rgba(0, 168, 89, 0.04);
    border: 1px solid rgba(0, 168, 89, 0.1);
    color: #334155;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-item .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.hero-description {
    font-size: 16px !important;
    color: #475569 !important;
    margin-bottom: 16px !important;
    line-height: 1.6;
}

.hero-description.sub-text {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    margin-bottom: 35px !important;
}

/* Grid dos 4 Mini Cards do Hero */
.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.12), transparent);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 36, 94, 0.08), transparent);
    bottom: -80px;
    left: -80px;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,168,89,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,168,89,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.feature-mini-card {
    background: var(--card-bg);
    border: 1px solid rgba(0,0,0,0.02);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Cores de fundo suaves dos Mini Cards */
.icon-green { background: rgba(0, 168, 89, 0.1); color: var(--primary-green); }
.icon-blue { background: rgba(14, 116, 144, 0.1); color: #0e7490; }
.icon-orange { background: rgba(194, 120, 3, 0.1); color: #c27803; }
.icon-purple { background: rgba(109, 40, 217, 0.1); color: #6d28d9; }

.feature-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue-text);
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* Frase de rodapé do Hero */
.hero-footer-note {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Organização gráfica do lado direito */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    position: relative;
}

.hero-main-graphic {
    background: radial-gradient(circle at center, rgba(255,255,255,1) 0%, rgba(240,245,250,0.5) 100%);
    border-radius: 0%;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1px;
    position: relative;
}

.akira {
    width: 1120px;
    height: 1120px;
    object-fit: contain;
    margin-bottom: 1px;
    animation: floating 6s ease-in-out infinite;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.9));
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.graphic-status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.01);
}

.graphic-status-bar span {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 5px;
}

.graphic-status-bar .green-txt { color: var(--primary-green); }
.graphic-status-bar .blue-txt { color: #0284c7; }
.graphic-status-bar .yellow-txt { color: #eab308; }

/* Nova Floating Card Escura Premium da Akira IA */
.floating-card-dark {
    background: linear-gradient(135deg, #020813 0%, #0b1528 100%);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(2, 8, 19, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* Container flexível para colocar o texto na esquerda e a imagem na direita */
.card-body-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

/* Garante que o bloco de texto ocupe o espaço disponível prioritário */
.card-content-wrapper {
    flex: 1;
}

/* Controla o tamanho e o comportamento da imagem da mente */
.card-mind-img {
    width: 120px; /* Ajuste este valor conforme o tamanho ideal da imagem */
    height: auto;
    object-fit: contain;
    flex-shrink: 0; /* Impede a imagem de amassar caso o texto seja muito longo */
    animation: floating 6s ease-in-out infinite; /* Mantém o efeito flutuante do seu CSS */
}

/* Responsividade: Volta a empilhar o conteúdo em telas muito pequenas */
@media (max-width: 480px) {
    .card-body-flex {
        flex-direction: column-reverse; /* Imagem fica no topo e texto embaixo no celular */
        text-align: center;
        gap: 15px;
    }
    
    .btn-dark-card {
        margin: 0 auto; /* Centraliza o botão no celular */
    }
    
    .card-mind-img {
        width: 90px;
    }
}

.floating-card-dark::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff87 0%, #60a5fa 100%);
}

.ai-badge {
    background: rgba(0, 168, 89, 0.15);
    border: 1px solid rgba(0, 255, 135, 0.3);
    color: #00ff87;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.ai-badge .dot-live {
    width: 6px;
    height: 6px;
    background-color: #00ff87;
    border-radius: 50%;
}

.floating-card-dark h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.floating-card-dark h3 span {
    color: #00ff87;
}

.floating-card-dark p {
    color: #94a3b8;
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.btn-dark-card {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    width: max-content;
}

.btn-dark-card:hover {
    background-color: #00bf65;
}

/* ========================================= */
/* TÍTULOS DE SEÇÃO                          */
/* ========================================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark-blue-text);
}

.section-title p {
    font-size: 18px;
    color: #607089;
}

/* ========================================= */
/* GRID DE CARDS (SOLUÇÕES)                 */
/* ========================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid #eceff6;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 168, 89, 0.1);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-blue-text);
}

.card p {
    color: #617089;
    font-size: 15px;
}

/* ========================================= */
/* SEÇÃO COMO FUNCIONA                      */
/* ========================================= */
.how {
    background: #061531;
    color: #ffffff;
}

.how .section-title h2 {
    color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #13b53d, #1adc4d);
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(20, 181, 61, 0.3);
}

.step h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: white;
}

.step p {
    color: #d7deea;
    font-size: 15px;
}

/* ========================================= */
/* SEÇÃO INTELIGÊNCIA ARTIFICIAL            */
/* ========================================= */
.ai-section {
    background:
        radial-gradient(circle at bottom left, rgba(0, 168, 89, 0.08), transparent 25%),
        linear-gradient(135deg, #071733, #050d1e);
    color: #ffffff;
}

.ai-section .section-title h2 {
    color: white;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ai-grid img {
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.5));
}

.ai-content h2 {
    font-size: clamp(40px, 5vw, 58px);
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
}

.ai-content span {
    color: #00ff87;
}

.ai-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #dce5f2;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.benefit {
    background: rgba(12, 28, 60, 0.6);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff87, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit:hover::before {
    opacity: 1;
}

.benefit:hover {
    transform: translateY(-5px);
    background: rgba(12, 28, 60, 0.9);
    border-color: rgba(0, 255, 135, 0.3);
}

.benefit h4 {
    margin-bottom: 8px;
    color: #00ff87;
    font-size: 18px;
}

.benefit p {
    font-size: 14px;
    color: #b0c0d8;
    margin-bottom: 0;
}


/* Fallback visual quando imagem não carrega */
.product-image img[src=""] ,
.product-image img:not([src]) {
    display: none;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

/* Strip de rodapé */
.products-footer-strip {
    background: #0d233a;
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.products-footer-strip p {
    font-size: 16px;
    color: #94a3b8;
    margin: 0;
    flex: 1;
}

.products-footer-strip p strong {
    color: white;
}

/* ========================================= */
/*          IA      SELECTION                */
/* ========================================= */

/* ===== AI SECTION PREMIUM ===== */
.ai-section {
    position: relative;
    overflow: hidden;
}

.ai-section-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.06), transparent 70%);
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Imagem da Akira na seção IA */
.ai-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 135, 0.12), transparent 70%);
    pointer-events: none;
}

.ai-image-ring {
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 24px;
    border: 1px solid rgba(0, 255, 135, 0.12);
    pointer-events: none;
}

.ai-grid img {
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5)) !important;
    transition: transform 0.5s ease;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    object-position: center top;
}

.ai-grid img:hover {
    transform: scale(1.02);
}

/* Card de status flutuante */
.ai-status-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(2, 8, 19, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff87;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px #00ff87;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.ai-status-card strong {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.ai-status-card p {
    color: #64748b;
    font-size: 11px;
    margin: 0;
    line-height: 1.3;
}

/* ========================================= */
/* SEÇÃO CHAMADA PARA AÇÃO (CTA)            */
/* ========================================= */
.cta {
    background: linear-gradient(90deg, #00a859, #0284c7);
    text-align: center;
    color: #ffffff;
}

.cta h2 {
    font-size: clamp(38px, 5vw, 60px);
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
}

.cta p {
    max-width: 800px;
    margin: 0 auto 35px;
    font-size: 20px;
    opacity: 0.95;
    color: white;
}

.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071733 0%, #0b245e 50%, #071733 100%) !important;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.2), transparent);
    top: -100px;
    right: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15), transparent);
    bottom: -80px;
    left: -80px;
}

.cta-logo-wrap {
    margin-bottom: 28px;
}

.cta-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 2px solid rgba(0, 255, 135, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.15);
}

.footer-logo-img {
    width: 100px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1));
}

.btn-cta-white {
    background: white !important;
    color: #0b245e !important;
    font-size: 17px !important;
    padding: 18px 36px !important;
    box-shadow: 0 10px 40px rgba(255,255,255,0.15) !important;
    transition: all 0.3s ease !important;
}

.btn-cta-white:hover {
    background: #f0fdf4 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 50px rgba(255,255,255,0.2) !important;
}

.cta-actions {
    margin-top: 32px;
}

.cta-guarantee {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}


/* ========================================= */
/* FOOTER                                   */
/* ========================================= */
footer {
    background: #040b19;
    padding: 80px 0 40px;
    color: #d8e2f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 350px) minmax(220px, 780px);
    gap: 24px;
    align-items: start;
    justify-content: space-between;
    width: min(100%, 1200px);
    margin: 0 auto;
}

/* Footer sections: manter colunas lado-a-lado mesmo com zoom
   Usamos uma área scrollável horizontal quando necessário. */
.footer-sections {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    align-items: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.footer-sections .footer-col {
    min-width: 220px;
    flex: 0 0 auto;
}

/* Ajustes visuais para links dentro das colunas */
.footer-sections a { display: block; margin: 8px 0; }

/* Em telas muito pequenas, permitir rolagem horizontal mantendo itens lado-a-lado */
@media (max-width: 480px) {
    .footer-grid {
        display: flex !important;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .footer-grid > div {
        min-width: 220px;
        flex: 0 0 auto;
    }

    .footer-grid::-webkit-scrollbar { height: 8px; }
    .footer-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 6px; }
}

footer h4 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.5px;
}

footer p {
    line-height: 1.7;
    font-size: 15px;
}

footer a {
    display: block;
    margin-bottom: 12px;
    color: #cfd8e8;
    transition: var(--transition-smooth);
    font-size: 15px;
}

footer a:hover {
    color: #00ff87;
    transform: translateX(3px);
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: #8d98b0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================= */
/* MODAL OVERLAY & FORMULÁRIOS               */
/* ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: white;
    padding: 35px;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-box h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark-blue-text);
}

.modal-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.1);
}

.btn-submit-form {
    width: 100%;
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

/* ========================================= */
/* NOTIFICAÇÕES TOAST                        */
/* ========================================= */
.toast-notification {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease;
    z-index: 3000;
}

.toast-notification.show {
    bottom: 30px;
}

/* Animações Auxiliares */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}
.animate-pulse {
    animation: pulse 2s infinite;
}

/* ========================================= */
/* WHATSAPP FLUTUANTE                        */
/* ========================================= */
.chat-preview{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:99999;
    cursor:pointer;
}

.whatsapp-button{
    background:#25D366;
    color:#fff;
    padding: 9px 15px;
    border-radius:22px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    font-weight:bold;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
    animation:pulse 2s infinite;
    transition:.3s;
}

.whatsapp-button:hover{
    transform:scale(1.05);
}

.whatsapp-icon{
    font-size:24px;
}
.whatsapp-logo{
    width:28px;
    height:28px;
    object-fit:contain;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.05);
    }

    100%{
        transform:scale(1);
    }
}

/* JANELA DO CHAT */

.chat-box{
    position:fixed;
    bottom:15px;
    right:20px;
    width:350px;
    height:530px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.30);
    display:none;
    z-index:99998;
}

.chat-header{
    background:#25D366;
    color:white;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:bold;
}

.chat-close{
    cursor:pointer;
    font-size:18px;
}

.chat-body{
    height:390px;
    overflow-y:auto;
    padding:15px;
    background:#f7f7f7;
}

.bot{
    background:#ececec;
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
    max-width:80%;
}

/* Indicador de digitação (três pontinhos animados) */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    min-height: 38px;
}

.typing-indicator span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #888;
    border-radius: 50%;
    animation: typing-bounce 1.2s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Input desabilitado durante espera */
.chat-footer input:disabled,
.chat-footer button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.user{
    background:#25D366;
    color:white;
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
    margin-left:auto;
    max-width:80%;
}

.chat-footer{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px;
    border-top:1px solid #eee;
    background:#fff;
}

.chat-footer input{
    flex:1;
    height:48px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:25px;
    outline:none;
    font-size:14px;
}

.chat-footer button{
    width:48px;
    height:48px;
    margin-left:8px;
    border:none;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
    flex-shrink:0;
}

.chat-footer button:hover{
    transform:scale(1.08);
    background:#20bd5a;
}

.send-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    transition:.3s;
}

.send-btn:hover{
    transform:scale(1.05);
}
/* ========================================= */
/* CLASSES DE ANIMAÇÃO (REVEAL)             */
/* ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================= */
/* MENU MOBILE & RESPONSIVIDADE             */
/* ========================================= */
.mobile-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--dark-blue-text);
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    .hero-content,
    .ai-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
        
    .hero {
        padding-top: 140px;
    }

    .hero-right {
        margin-top: 40px;
    }

    .mobile-menu {
        display: block;
    }

    .hero-right {
        min-height: auto;
        padding: 30px 0;
    }

    .floating-card-dark {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 30px auto 0;
        width: 100%;
        max-width: 480px;
    }

    /* Ajustes para tablet (1024px) */
    .logo img { width: 64px; height: 64px; }
    .logo-text h2 { font-size: 18px; }
    .logo-text p { font-size: 9px; }
    .hero-main-graphic { max-width: 380px; }
    .akira { width: 100%; max-width: 420px; height: auto; }
    .container { padding: 0 18px; }
    .product-text { padding: 36px 24px; }
    .product-image { min-height: 260px; }

    nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        background: #ffffff;
        transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
        transform: translateY(-10px);
    }

    .mobile-menu {
        background: transparent;
        border: none;
        font-size: 28px;
        padding: 6px 10px;
        border-radius: 8px;
    }

    nav.mobile-open {
        max-height: 520px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        padding: 20px 22px;
        gap: 12px;
        box-shadow: 0 12px 30px rgba(2,8,19,0.08);
        z-index: 1500;
    }

    nav.mobile-open a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(15,23,42,0.04);
        color: var(--dark-blue-text);
        font-size: 16px;
    }

    .mobile-menu {
        background: transparent;
        border: none;
        font-size: 28px;
        padding: 6px 10px;
        border-radius: 8px;
    }

    .mobile-menu[aria-expanded="true"] {
        background: rgba(0,168,89,0.06);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn,
    .secondary-btn {
        width: 100%;
        min-width: unset;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    /* Ajustes para tablets menores / grandes smartphones */
    .logo img { width: 56px; height: 56px; }
    .logo-text h2 { font-size: 16px; }
    .hero-content { grid-template-columns: 1fr; gap: 24px; }
    .hero-features-grid { grid-template-columns: 1fr 1fr; }
    .product-text { padding: 28px 20px; }
}

@media (max-width: 640px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 30px;
    }
    .btn-dark-card {
        width: 100%;
    }

    /* Ajustes para celulares pequenos */
    .logo img { width: 48px; height: 48px; }
    .logo-text h2 { font-size: 15px; }
    header { padding: 8px 0; }
    .hero { padding-top: 110px; padding-bottom: 50px; }
    .product-text { padding: 22px 16px; }
    .hero-description { font-size: 15px !important; }
}

/* Regras móveis adicionais para forçar responsividade consistente */
@media (max-width: 768px) {
    /* Remover elementos decorativos que atrapalham o layout */
    .hero-orb, .hero-orb-1, .hero-orb-2, .hero-grid-lines, .ai-section-orb {
        display: none !important;
    }

    /* Garantir que imagens grandes não excedam a largura */
    .akira {
        width: 100% !important;
        max-width: 360px !important;
        height: auto !important;
    }

    .hero-main-graphic { max-width: 360px !important; }

    /* Cards de produto empilados */
    .product-card, .product-card-reverse {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .product-image { min-height: 220px !important; }
    .product-image img { position: static !important; width: 100% !important; height: auto !important; }

    /* Ajustes gerais */
    .container { padding: 0 12px !important; }
    section { padding: 60px 0 !important; }
}

@media (max-width: 480px) {
    .akira { max-width: 280px !important; }
    .hero-main-graphic { max-width: 320px !important; }
    .hero { padding-top: 100px !important; padding-bottom: 40px !important; }
    .product-text { padding: 18px 12px !important; }
    .btn, .secondary-btn { padding: 12px 18px !important; }
}

/* Ajustes específicos: HERO e FOOTER para mobile */
@media (max-width: 768px) {
    /* Hero empilhado e centralizado */
    .hero {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: start !important;
    }

    .hero-left-side, .hero-right {
        width: 100% !important;
    }

    .hero-right {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 0 8px;
    }

    .akira {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
    }

    .hero-main-graphic { max-width: 360px !important; margin: 0 auto; }
    .floating-card-dark { margin: 18px auto 0 !important; }
}

@media (max-width: 480px) {
    /* Footer empilhado e centrado */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .footer-brand { justify-content: center !important; }
    .footer-logo-img { width: 60px !important; height: 60px !important; }
    footer a { display: inline-block !important; margin: 6px 0 !important; }
    .footer-cta-btn { width: 100% !important; display: inline-block !important; }
    .copyright { margin-top: 30px !important; padding-top: 20px !important; }
}