/* ═══════════════════════════════════════════════════════════════
   ILHAGEO — Landing GeoAI & Recursos Energéticos
   Design System: GeoTech Cristal + Tema Energético
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero com Imagem de Fundo ─────────────────────────────── */
.geoai-hero {
    position: relative;
    min-height: 600px;
    padding: 5rem 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geoai-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.geoai-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.geoai-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 13, 26, 0.70) 0%,
        rgba(7, 13, 26, 0.85) 50%,
        rgba(7, 13, 26, 0.95) 100%
    );
    z-index: 1;
}

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

/* ── Bento Box Grid para 4 Pilares ────────────────────────── */
.geoai-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .geoai-bento-grid {
        grid-template-columns: 1fr;
    }
}

.geoai-bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--surface);
    transition: all 0.35s var(--ease);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.geoai-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.geoai-bento-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.geoai-bento-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.35s var(--ease);
}

.geoai-bento-card:hover .geoai-bento-card-bg img {
    opacity: 0.50;
}

.geoai-bento-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Gradientes temáticos por pilar */
.geoai-bento-card.mineracao .geoai-bento-card-overlay {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(7, 13, 26, 0.85) 100%);
}

.geoai-bento-card.agua .geoai-bento-card-overlay {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(7, 13, 26, 0.85) 100%);
}

.geoai-bento-card.petroleo .geoai-bento-card-overlay {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(7, 13, 26, 0.85) 100%);
}

.geoai-bento-card.renovaveis .geoai-bento-card-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(7, 13, 26, 0.85) 100%);
}

.geoai-bento-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.geoai-bento-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.geoai-bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.geoai-bento-card .card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.geoai-bento-card.mineracao .card-tag {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.geoai-bento-card.agua .card-tag {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.geoai-bento-card.petroleo .card-tag {
    background: rgba(168, 85, 247, 0.2);
    color: #1f9cf0;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.geoai-bento-card.renovaveis .card-tag {
    background: rgba(16, 185, 129, 0.2);
    color: #2fc46a;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.geoai-bento-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Pipeline com Fundo de Circuito ───────────────────────── */
.geoai-pipeline-section {
    position: relative;
    overflow: hidden;
}

.geoai-pipeline-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.08;
}

.geoai-pipeline-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geoai-pipeline-section > .container {
    position: relative;
    z-index: 1;
}

/* ── Seção ESG com Split Layout ───────────────────────────── */
.geoai-esg-section {
    position: relative;
    overflow: hidden;
}

.geoai-esg-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.geoai-esg-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.20;
}

.geoai-esg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 13, 26, 0.95) 0%,
        rgba(7, 13, 26, 0.70) 50%,
        rgba(7, 13, 26, 0.95) 100%
    );
    z-index: 1;
}

.geoai-esg-section > .container {
    position: relative;
    z-index: 2;
}

/* ── Métricas com Contadores Animados ─────────────────────── */
.geoai-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.geoai-metric-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s var(--ease);
}

.geoai-metric-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: 0 8px 32px rgba(56, 223, 255, 0.15);
}

.geoai-metric-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.geoai-metric-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cobalt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.geoai-metric-label {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.geoai-metric-source {
    color: var(--muted-deep);
    font-size: 0.7rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ── CTA Final com Imagem de Fundo ────────────────────────── */
.geoai-cta-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.geoai-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.geoai-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geoai-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 13, 26, 0.85) 0%,
        rgba(7, 13, 26, 0.95) 100%
    );
    z-index: 1;
}

.geoai-cta-section > .container {
    position: relative;
    z-index: 2;
}

/* ── Botão CTA com Efeito Pulso ───────────────────────────── */
.geoai-cta-btn {
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 24px rgba(31, 156, 240, 0.25);
    }
    50% {
        box-shadow: 0 8px 40px rgba(31, 156, 240, 0.45);
    }
}

/* ── Trust Bar com 6 itens ────────────────────────────────── */
.geoai-trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.geoai-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.geoai-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.geoai-trust-icon {
    font-size: 1.2rem;
}

/* ── Seção Como Funciona com Fundo Gradiente ──────────────── */
.geoai-como-funciona-section {
    background: radial-gradient(ellipse at center, rgba(56, 223, 255, 0.05) 0%, transparent 70%);
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.geoai-faq-section .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.geoai-faq-section .faq-item {
    margin-bottom: 1rem;
}

.geoai-faq-section .faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    color: var(--text-bright);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s var(--ease);
}

.geoai-faq-section .faq-question:hover {
    border-color: var(--cyan);
    background: var(--surface-light);
}

.geoai-faq-section .faq-answer {
    padding: 1rem 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}
