/* ================= HERO E-COMMERCE (CLEAN & GOLD) ================= */

/* Variáveis Locais (Só para esta página) */
:root {
    --gold: #FFB800;
    --gold-light: #FFD666;
    --gold-dim: rgba(255, 184, 0, 0.1);
    --gold-glow: rgba(255, 184, 0, 0.4);
}

.eco-hero {
    padding-top: 180px; /* Espaço para o header fixo */
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.eco-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Texto um pouco maior que o visual */
    gap: 60px;
    align-items: center;
}

/* --- TEXTOS E CONTEÚDO --- */

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--gold-dim);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pulse-gold {
    width: 8px; height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
}

.eco-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFF;
}

.text-gold-gradient {
    background: linear-gradient(90deg, var(--gold) 0%, #FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eco-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
}

.eco-subtitle strong { color: #FFF; }

/* Botões */
.eco-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-gold {
    background: var(--gold);
    color: #05050A;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.4);
    background: var(--gold-light);
}

.btn-outline-gold {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.hero-trust p { font-size: 0.95rem; color: var(--text-muted); }
.text-white { color: #FFF; }

/* --- VISUAL DIREITO (CARD FLUTUANTE) --- */

.eco-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px; /* Cria o ambiente 3D */
}

.floating-system {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O CARD PRINCIPAL */
.success-card {
    position: relative;
    width: 260px;
    padding: 25px 20px;
    background: rgba(20, 20, 25, 0.7); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(20px); /* O efeito de vidro */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    
    /* Animação de Flutuar */
    animation: floatCard 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.icon-circle {
    width: 60px; height: 60px;
    background: rgba(0, 255, 194, 0.15); /* Fundo verde suave */
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); /* Verde Neon do Global */
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(0, 255, 194, 0.2);
}

.success-text strong {
    display: block;
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.success-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Brilho passando no card */
.card-shimmer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    background-size: 200% 100%;
    border-radius: 24px;
    animation: shimmer 4s infinite linear;
    pointer-events: none;
}

/* ELEMENTOS ORBITAIS (Pílulas) */
.orbit-pill {
    position: absolute;
    padding: 8px 16px;
    background: rgba(30, 30, 35, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFF;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
    
    /* Animação Orbital */
    animation: orbit 12s infinite linear;
}

.orbit-pill i { font-size: 1rem; }

/* Configuração de cada pílula */
.pill-price {
    top: -10px; right: -20px;
    color: var(--gold);
    border-color: rgba(255, 184, 0, 0.3);
    animation-delay: 0s;
}

.pill-method {
    bottom: 30px; left: -40px;
    color: var(--primary);
    animation-delay: -4s;
}

.pill-rating {
    top: 40%; right: -50px;
    color: #FFBD2E;
    animation-delay: -8s;
}

/* Brilho no chão */
.hero-glow-floor {
    position: absolute;
    bottom: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 70%);
    transform: rotateX(70deg);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* ================= ANIMAÇÕES ================= */

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,184,0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,184,0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255,184,0, 0); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(2deg); }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Animação de Órbita 3D Simplificada */
@keyframes orbit {
    0% { transform: rotate(0deg) translateX(160px) rotate(0deg); z-index: 20; }
    25% { z-index: 5; opacity: 0.8; transform: rotate(90deg) translateX(160px) rotate(-90deg) scale(0.9); }
    50% { transform: rotate(180deg) translateX(160px) rotate(-180deg); z-index: 5; }
    75% { z-index: 20; opacity: 1; transform: rotate(270deg) translateX(160px) rotate(-270deg) scale(1.1); }
    100% { transform: rotate(360deg) translateX(160px) rotate(-360deg); z-index: 20; }
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 992px) {
    .eco-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    
    .eco-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .eco-subtitle { margin: 0 auto 40px auto; }
}

@media (max-width: 600px) {
    .eco-title { font-size: 2.2rem; }
    
    .floating-system { width: 260px; height: 260px; }
    
    /* Ajuste da órbita para telas pequenas */
    @keyframes orbit {
        0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
        50% { transform: rotate(180deg) translateX(120px) rotate(-180deg); }
        100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
    }
}

/* ================= RESPONSIVIDADE NOTEBOOK (1024px - 1440px) ================= */
@media (min-width: 993px) and (max-width: 1440px) {

    /* 1. Ajuste de Altura e Espaçamento */
    /* Notebooks costumam ter telas mais "baixas" (ex: 1366x768) */
    .eco-hero {
        padding-top: 140px; /* Reduz espaço do topo */
        padding-bottom: 80px;
        min-height: auto; /* Remove altura forçada se houver */
    }

    .eco-container {
        /* Aproxima o texto do visual para caber na tela */
        gap: 30px; 
        grid-template-columns: 1fr 1fr; /* Divide meio a meio */
        padding-right: 40px; /* Margem de segurança na direita */
    }

    /* 2. Tipografia Otimizada */
    /* Diminui fontes para o texto não dominar a tela */
    .eco-title {
        font-size: 2.8rem; /* Reduz de 3.5rem */
        margin-bottom: 16px;
    }

    .eco-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }

    /* Botões um pouco menores */
    .btn-gold, .btn-outline-gold {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* 3. Ajuste do Visual 3D (Zoom Out) */
    /* Aqui está o segredo: diminuímos o conjunto todo proporcionalmente */
    .eco-visual {
        transform: scale(0.85); /* Reduz para 85% do tamanho original */
        transform-origin: center right; /* Mantém alinhado à direita */
    }

    /* 4. Ajuste da Órbita para não bater no texto */
    /* Reduzimos o raio da órbita apenas nesta resolução */
    @keyframes orbit {
        0% { transform: rotate(0deg) translateX(130px) rotate(0deg); z-index: 20; }
        25% { z-index: 5; opacity: 0.8; transform: rotate(90deg) translateX(130px) rotate(-90deg) scale(0.9); }
        50% { transform: rotate(180deg) translateX(130px) rotate(-180deg); z-index: 5; }
        75% { z-index: 20; opacity: 1; transform: rotate(270deg) translateX(130px) rotate(-270deg) scale(1.1); }
        100% { transform: rotate(360deg) translateX(130px) rotate(-360deg); z-index: 20; }
    }
}


/* ================= BENEFÍCIOS (LAYOUT BENTO COMPACTO) ================= */

.eco-benefits {
    padding: 100px 0; /* Padding reduzido para ficar mais compacto */
    position: relative;
    background-color: #05050A; /* Fundo base */
    overflow: hidden;
}

/* --- BACKGROUND ANIMADO ($$) --- */
.money-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.symbol {
    position: absolute;
    color: var(--gold);
    font-weight: 700;
    opacity: 0.05;
    animation: floatMoney infinite ease-in-out alternate;
    user-select: none;
}

/* Configuração dos símbolos flutuantes */
.s1 { font-size: 10rem; top: -5%; left: -5%; transform: rotate(-15deg); animation-duration: 6s; }
.s2 { font-size: 8rem; bottom: 10%; right: -5%; transform: rotate(20deg); opacity: 0.03; animation-duration: 8s; }
.s3 { font-size: 4rem; top: 20%; right: 20%; filter: blur(2px); opacity: 0.08; animation-duration: 5s; }
.s4 { font-size: 6rem; bottom: -10%; left: 30%; filter: blur(5px); opacity: 0.04; animation-duration: 7s; }

@keyframes floatMoney {
    0% { transform: translateY(0) rotate(var(--r)); }
    100% { transform: translateY(-20px) rotate(calc(var(--r) + 5deg)); }
}

/* --- CABEÇALHO DA SEÇÃO --- */
.section-header.center {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px; /* Margem reduzida para aproximar o grid */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.eco-title-md {
    font-size: 2.5rem; /* Título um pouco menor */
    color: #FFF;
    line-height: 1.1;
    margin-bottom: 12px;
}

.eco-subtitle-md {
    font-size: 1rem;
    color: var(--text-muted);
}

/* --- GRID BENTO (LAYOUT PRINCIPAL) --- */
.benefits-grid {
    display: grid;
    /* Definição das colunas: A primeira é ligeiramente maior (1.1fr) */
    grid-template-columns: 1.1fr 1fr 1fr; 
    /* Duas linhas de altura automática */
    grid-template-rows: auto auto; 
    gap: 20px; /* Espaço entre cards bem fechado */
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

/* ESTILO BASE DOS CARDS */
.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px; /* Bordas arredondadas mas compactas */
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

/* CARD DESTAQUE (TAXA ZERO - ESQUERDA) */
.benefit-card.highlight-card {
    grid-row: 1 / 3; /* Ocupa as 2 linhas verticais */
    background: linear-gradient(160deg, #101015 0%, #050505 100%);
    border: 1px solid rgba(255, 184, 0, 0.3); /* Borda Dourada sutil */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza conteúdo verticalmente */
}

.highlight-card h3 { font-size: 1.5rem; color: #FFF; margin-bottom: 10px; }
.highlight-card p { font-size: 0.95rem; color: #A8A8B3; line-height: 1.5; }

/* CARDS PEQUENOS (DIREITA) */
.benefit-card.small-card {
    padding: 24px; /* Padding interno menor */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px; /* Espaço entre ícone e texto */
}

.small-card h3 { font-size: 1.1rem; color: #FFF; margin-bottom: 6px; }
.small-card p { font-size: 0.85rem; color: #888; line-height: 1.4; }

/* ÍCONES CUSTOMIZADOS */
.icon-box {
    width: 45px; height: 45px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
    flex-shrink: 0; /* Impede que o ícone amasse */
}

/* Cores específicas para cada card */
.gold-filled { background: var(--gold); color: #000; box-shadow: 0 0 15px rgba(255, 184, 0, 0.2); }
.blue-filled { background: rgba(0, 150, 255, 0.1); color: #0096FF; border: 1px solid rgba(0, 150, 255, 0.2); }
.green-filled { background: rgba(0, 255, 194, 0.1); color: #00FFC2; border: 1px solid rgba(0, 255, 194, 0.2); }
.purple-filled { background: rgba(189, 147, 249, 0.1); color: #BD93F9; border: 1px solid rgba(189, 147, 249, 0.2); }
.orange-filled { background: rgba(255, 115, 0, 0.1); color: #FF7300; border: 1px solid rgba(255, 115, 0, 0.2); }

/* VISUAL COMPARATIVO (Barras no Card Destaque) */
.vs-bar {
    margin-top: 25px;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.vs-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.8rem; }
.vs-row:last-child { margin-bottom: 0; }

.vs-row span { width: 45px; color: #777; } /* Largura fixa para alinhar nomes */

.bar-track { flex: 1; height: 6px; background: #222; border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; }
.bar-fill.red { background: #FF5F56; }
.bar-fill.green { background: #27C93F; }

.loss { color: #FF5F56; font-weight: 700; width: auto !important; }
.gain { color: #27C93F; font-weight: 700; width: auto !important; }

/* Brilho de fundo do card destaque */
.card-glow-bg {
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

/* ================= RESPONSIVIDADE ================= */

/* Tablet (992px) */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr; /* Muda para 2 colunas */
        grid-template-rows: auto;
    }
    
    /* O card destaque fica em cima ocupando a largura total */
    .benefit-card.highlight-card { 
        grid-column: span 2; 
        grid-row: auto; 
    }
}

/* Mobile (600px) */
@media (max-width: 600px) {
    .eco-title-md { font-size: 2rem; }
    
    .benefits-grid { 
        grid-template-columns: 1fr; /* 1 coluna única */
    } 
    
    .benefit-card.highlight-card { 
        grid-column: span 1; 
    }
}

/* ================= PORTFÓLIO (CARROSSEL WIDE) ================= */
.eco-showcase {
    padding: 100px 0;
    position: relative;
    background-color: #05050A;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-bg-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, #13131f 0%, #05050A 60%);
    z-index: 0;
    pointer-events: none;
}

.showcase-container { position: relative; z-index: 2; }

/* HEADER */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.eco-title-md { font-size: 2.5rem; color: #FFF; line-height: 1.1; margin-top: 15px; }
.carousel-controls { display: flex; gap: 12px; }

.nav-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #FFF; font-size: 1.2rem; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.nav-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* --- CARROSSEL TRACK --- */
.carousel-wrapper { width: 100%; position: relative; }

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px; /* Espaço para não cortar sombra */
    
    /* Esconder scrollbar nativa */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* --- ITEM DO CARROSSEL (Largo + Pontinha) --- */
.carousel-item {
    /* A MÁGICA ESTÁ AQUI:
       75% da largura do container. 
       Isso deixa 25% livre para mostrar o próximo card e o gap.
    */
    min-width: 75%; 
    height: 400px; /* Card mais alto e imponente */
    
    scroll-snap-align: start; /* Alinha sempre no começo */
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s;
    background: #0A0A0F;
}

.carousel-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-glow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* --- CONTEÚDO INTERNO DO CARD (Cópia da versão anterior) --- */
.project-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; transition: transform 0.8s;
}
.carousel-item:hover .project-bg { transform: scale(1.08); }

.project-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 5%, rgba(0,0,0,0.4) 40%, transparent 80%);
    z-index: 1;
}

.project-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    z-index: 2; display: flex; flex-direction: column; align-items: flex-start;
}
.carousel-item h3 { font-size: 2rem; color: #FFF; margin-bottom: 12px; font-weight: 700; }
.project-tags { display: flex; gap: 8px; margin-bottom: 15px; }
.tag { font-size: 0.75rem; padding: 5px 12px; background: rgba(255,255,255,0.1); border-radius: 50px; color: #CCC; font-weight: 600; }
.tag.highlight { background: var(--gold); color: #000; }
.btn-link { color: var(--gold); font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 6px; transition: 0.3s; }
.btn-link:hover { gap: 10px; color: #FFF; }

/* --- BOLINHAS (INDICATORS) --- */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover { background: rgba(255,255,255,0.3); }

.dot.active {
    background: var(--gold);
    transform: scale(1.2); /* Fica um pouco maior */
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}


/* ================= ATUALIZAÇÃO CARROSSEL (ANIMAÇÃO + NOTEBOOK) ================= */

/* --- AJUSTE GERAL DO TRACK --- */
.carousel-track {
    padding: 20px 0 40px 0; /* Mais espaço embaixo para a sombra não cortar */
    scroll-padding-left: 20px; /* Ajuste fino do snap */
}

/* --- ITEM DO CARROSSEL (ESTADO PADRÃO / INATIVO) --- */
.carousel-item {
    min-width: 75%; 
    height: 400px;
    scroll-snap-align: center; /* Centraliza o card ao parar */
    
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0A0A0F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    
    /* --- A MÁGICA DA ANIMAÇÃO (ESTADO "SECO" / LATERAL) --- */
    transform: scale(0.94); /* Fica levemente menor */
    opacity: 0.5; /* Fica meio apagado */
    filter: grayscale(60%); /* Levemente preto e branco */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Transição Ultra Suave */
}

/* --- ESTADO ATIVO (QUANDO ESTIVER NO CENTRO) --- */
.carousel-item.active-center {
    transform: scale(1); /* Cresce para tamanho original */
    opacity: 1; /* Totalmente visível */
    filter: grayscale(0%); /* Cores vivas */
    border-color: var(--gold); /* Borda dourada sutil */
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    z-index: 10;
}

/* Mantém o hover funcionando apenas no item ativo */
.carousel-item.active-center:hover {
    transform: scale(1.02);
    border-color: var(--gold-glow);
}

/* --- RESPONSIVIDADE PARA NOTEBOOKS (1024px - 1440px) --- */
/* ================= RESPONSIVIDADE NOTEBOOK (EFEITO PEEK CORRIGIDO) ================= */
/* Telas entre 1024px e 1440px */
@media (min-width: 1024px) and (max-width: 1440px) {
    
    /* 1. Container: Usamos quase toda a largura para dar imersão */
    .container {
        max-width: 95% !important;
        padding: 0 30px !important;
    }

    /* 2. O Card LARGÃO (Ocupa 78% da tela) */
    /* Isso deixa sobrar 22% de espaço no canto direito para o próximo card aparecer */
    .carousel-item {
        min-width: 78% !important; 
        height: 380px !important; /* Mantém uma altura boa */
        
        /* Ajuste na escala para o card lateral não ficar tão pequeno */
        transform: scale(0.96); 
    }
    
    /* O card ativo fica normal */
    .carousel-item.active-center {
        transform: scale(1) !important;
    }
    
    /* 3. Ajuste do Espaçamento */
    .carousel-track {
        gap: 30px !important; /* Espaço visível entre o card principal e a "pontinha" */
        padding-bottom: 30px !important;
    }
    
    /* 4. Fontes (Para não ficar grosseiro) */
    .eco-title-md { font-size: 2.5rem !important; }
    .carousel-item h3 { font-size: 1.8rem !important; }
    
    /* 5. Ajuste dos botões de navegação para não atrapalhar */
    .section-header-row {
        margin-bottom: 20px !important;
    }
}
/* --- AJUSTE MOBILE (Mantenha o anterior, mas reforçando o snap) --- */
@media (max-width: 992px) {
    .carousel-item {
        min-width: 85vw; /* 85% da tela */
        height: 380px;
        scroll-snap-align: center;
    }
    
    /* No mobile, removemos o efeito de escala agressivo para não confundir */
    .carousel-item {
        transform: scale(0.98);
        opacity: 1;
        filter: none;
    }
    .carousel-item.active-center {
        transform: scale(1);
    }
}

/* ================= RESPONSIVIDADE ================= */

/* Notebook (Telas Médias) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .carousel-item { min-width: 70%; height: 360px; }
}

/* Mobile e Tablet */
@media (max-width: 992px) {
    .section-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .carousel-controls { display: none; } /* Esconde setas no mobile */
    
    .carousel-item {
        /* No mobile, ocupa quase toda a largura (85%) pra mostrar a pontinha do próximo */
        min-width: 85vw; 
        height: 350px;
    }
    
    .carousel-item h3 { font-size: 1.5rem; }
    .project-content { padding: 25px; }
}


/* ================= SEPARADOR NEON (GLOW LINE) ================= */
/* Linha de luz que divide as seções sem depender de cor de fundo */
/* ================= SEPARADOR LASER (ANIMADO) ================= */
.glow-separator {
    position: relative;
    width: 100%;
    height: 2px; /* Linha base um pouco mais grossa */
    background: linear-gradient(90deg, transparent 0%, rgba(255, 184, 0, 0.3) 50%, transparent 100%);
    margin: 0;
    z-index: 5;
    opacity: 1; /* Garante visibilidade total */
}

/* O Filamento de Luz Central (O "Laser") */
.glow-separator::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    
    width: 0%; /* Começa pequeno para a animação abrir */
    height: 3px; /* Altura do núcleo de luz */
    
    background: var(--gold); /* Cor sólida no centro */
    border-radius: 100%; /* Pontas arredondadas */
    
    /* O efeito Neon (Blur forte + Blur fraco) */
    box-shadow: 
        0 0 10px rgba(255, 184, 0, 0.8), 
        0 0 20px rgba(255, 184, 0, 0.4),
        0 0 40px rgba(255, 184, 0, 0.2);
        
    /* Animação de "Respiração" */
    animation: laserPulse 4s ease-in-out infinite;
}

/* Animação: A luz estica e encolhe suavemente */
@keyframes laserPulse {
    0% { 
        width: 150px; 
        opacity: 0.5; 
        box-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
    }
    50% { 
        width: 300px; /* Estica a luz */
        opacity: 1; 
        box-shadow: 0 0 25px rgba(255, 184, 0, 1); /* Brilho máximo */
    }
    100% { 
        width: 150px; 
        opacity: 0.5; 
        box-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
    }
}

/* Ajuste Mobile para o laser não vazar */
@media (max-width: 600px) {
    @keyframes laserPulse {
        0%, 100% { width: 80px; }
        50% { width: 180px; }
    }
}

/* ================= PRICING SECTION (COMPLETO) ================= */
.eco-pricing {
    padding: 100px 0 120px;
    position: relative;
    /* Fundo levemente diferenciado do preto total para criar profundidade */
    background-color: #0B0B10; 
    overflow: hidden;
}

/* --- BACKGROUND ORBS (BOLAS) --- */
.pricing-orbs {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    pointer-events: none; z-index: 0;
}

.orb {
    position: absolute; border-radius: 50%; 
    filter: blur(120px); opacity: 0.15;
}

.orb-1 {
    width: 500px; height: 500px; background: var(--gold);
    top: -20%; left: -10%;
}
.orb-2 {
    width: 600px; height: 600px; background: #00FFC2; /* Verde Neon */
    bottom: -10%; right: -10%; opacity: 0.1;
}

/* Animação suave das bolas */
.pulse-orb { animation: floatOrb 10s infinite alternate; }
.pulse-orb-slow { animation: floatOrb 14s infinite alternate reverse; }

@keyframes floatOrb { 
    0% { transform: translate(0, 0) scale(1); } 
    100% { transform: translate(30px, 30px) scale(1.1); } 
}

/* --- CONTAINER E GRID --- */
.pricing-container { position: relative; z-index: 2; }

.pricing-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px; 
    margin: 0 auto; 
    align-items: center; /* Centraliza verticalmente para o destaque crescer */
}

/* --- CARDS DE PREÇO --- */
.price-card {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.06); 
    border-radius: 24px; 
    padding: 40px 30px;
    transition: all 0.3s ease; 
    display: flex; flex-direction: column;
    position: relative;
    
    /* Estado inicial da animação */
    opacity: 0; transform: translateY(30px);
}

.price-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(255, 184, 0, 0.3); 
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* CARD DESTAQUE (FEATURED) */
.price-card.featured {
    background: rgba(20, 20, 25, 0.9); /* Fundo mais sólido */
    border: 1px solid var(--gold);
    padding: 60px 30px; /* Mais alto */
    z-index: 10; 
    box-shadow: 0 40px 80px rgba(0,0,0,0.6); 
    
    /* Estado inicial do destaque (já escala) */
    transform: scale(1.05) translateY(30px);
}

.price-card.featured:hover { 
    transform: scale(1.08) translateY(-7px) !important; 
}

/* Animações de Entrada */
.animate-card { animation: cardFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes cardFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
/* Correção para o destaque manter a escala no final da animação */
.price-card.featured.animate-card { animation-name: featuredCardFadeIn; }
@keyframes featuredCardFadeIn {
    to { opacity: 1; transform: scale(1.05) translateY(0); }
}

/* Badge "Mais Popular" */
.best-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000;
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
}

/* --- CONTEÚDO INTERNO --- */
.card-header { text-align: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 30px; }
.card-header h3 { font-size: 1.5rem; color: #FFF; margin-bottom: 5px; font-weight: 700; }
.desc { font-size: 0.9rem; color: #888; }

.price-box { display: flex; justify-content: center; align-items: baseline; color: #FFF; margin-top: 15px; }
.currency { font-size: 1.2rem; font-weight: 600; margin-right: 4px; color: var(--gold); }
.value { font-size: 3.5rem; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.period { font-size: 1rem; color: #666; margin-left: 5px; font-weight: 500; }

/* Lista de Features */
.features-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.features-list li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px; color: #CCC; font-size: 0.95rem;
    
    /* Animação Stagger */
    opacity: 0; transform: translateX(-10px);
}
.price-card.animate-card .stagger-list li { animation: listFadeIn 0.5s ease-out forwards; }
.stagger-list li:nth-child(1) { animation-delay: 0.4s; }
.stagger-list li:nth-child(2) { animation-delay: 0.5s; }
.stagger-list li:nth-child(3) { animation-delay: 0.6s; }
.stagger-list li:nth-child(4) { animation-delay: 0.7s; }
.stagger-list li:nth-child(5) { animation-delay: 0.8s; }

@keyframes listFadeIn { to { opacity: 1; transform: translateX(0); } }

/* Botões Específicos */
.pulse-btn { animation: btnPulse 2s infinite; }
@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 184, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}

/* --- RODAPÉ DA SEÇÃO (NOTA CENTRALIZADA) --- */
.pricing-footer {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    color: #888;
    font-size: 0.9rem;
    display: flex; align-items: center; gap: 10px;
    text-align: center;
}

.pricing-note i { color: var(--gold); font-size: 1.2rem; }
.pricing-note strong { color: #FFF; font-weight: 600; }

/* ================= RESPONSIVIDADE ================= */

/* --- Responsividade Agressiva para Notebooks (1024px até 1440px) --- */
@media (min-width: 1024px) and (max-width: 1440px) {

    /* body { background-color: red !important; }  <-- Descomente se quiser ver o teste de cor */
    
    /* Container mais contido */
    .container {
        max-width: 90% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Section bem mais compacta na vertical */
    .hero-section {
        padding: 20px 0 !important; /* Reduzi de 60px para 20px */
        min-height: auto !important;
        height: auto !important;
    }

    /* Grid/Flex mais apertado */
    .hero-wrapper {
        gap: 15px !important; /* Coladinho */
        align-items: center !important;
    }

    /* Título MUITO menor */
    .hero-content h1 {
        font-size: 1.8rem !important; /* Era 2.5rem/3rem, baixei pra 1.8rem */
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }

    /* Parágrafo menor */
    .hero-content p {
        font-size: 0.9rem !important; /* Texto pequeno */
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
    }

    /* Imagem BEM reduzida (o grande vilão de ocupar espaço) */
    .hero-image img {
        max-width: 60% !important; /* Forcei a imagem a ficar pequena (60%) */
        width: auto !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* Botões menores também */
    .hero-content button, 
    .hero-content a.btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
}


/* TABLET E MOBILE (Max 992px) */
@media (max-width: 992px) {
    .pricing-grid { 
        grid-template-columns: 1fr; /* Empilha em 1 coluna */
        max-width: 450px;
    }
    
    .price-card.featured { 
        transform: scale(1) translateY(0); 
        margin: 25px 0; /* Espaço extra */
    }
    
    /* Remove animações complexas no mobile */
    .features-list li { opacity: 1; transform: none; animation: none; }
    .price-card, .price-card.featured { opacity: 1; transform: none; animation: none; }
    
    .pricing-note {
        flex-direction: column;
        border-radius: 12px;
        text-align: center;
    }
}


