/* Paleta Tech-Trust: Azul Marinho Profundo, Grafite, Verde Neon e Ciano */
:root {
    --bg-main: #050a14;
    /* Azul Marinho Profundo (Quase Preto) */
    --bg-surface: #0a1122;
    /* Azul Marinho Elevado */
    --bg-elevated: #111a2f;
    /* Grafite/Azul para Cards */
    --text-primary: #ffffff;
    --text-secondary: #ffffffd8;
    /* Cinza azulado claro */
    --accent-red: #ff1d04;
    /* Vermelho (Sustentabilidade/Pellet Zero) */
    --accent-cyan: #00e5ff;
    /* Ciano (Tecnologia/Dados) */

    /* Curva de animação Ultra Suave (Simulando Framer Motion) */
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    letter-spacing: -0.03em;
    line-height: 1.1;
}

p {
    color: var(--text-secondary);
}

/* --- Componentes UI (Botões) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--ease-out-quint);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-red);
    color: #ffffff !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
    color: #750101 !important;
}

.btn-outline {
    border: 2px solid rgba(0, 229, 255, 0.3);
    background-color: #ffffff00;
    color: var(--accent-cyan);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    background-color: rgba(0, 229, 255, 0.05);
    transform: translateY(-3px);
}

/* --- HEADER E NAVEGAÇÃO --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--text-primary);
}

.logo span {
    color: var(--accent-red);
}

.logo img {
    max-height: 120px;
    transition: all 0.3s var(--ease-out-quint);
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.desktop-nav a:hover {
    color: var(--text-primary);
}

/* Ícone Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.4s var(--ease-out-quint);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--accent-red);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--accent-red);
}

/* Menu Mobile Fullscreen (Overlay) */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease-out-quint);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav a:hover {
    color: var(--accent-red);
}

/* --- O TOPO (HERO SECTION) --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hero-bg, url('net/primary.webp'));
    background-size: cover;
    background-position: center;
    opacity: 0.40;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero h1 span {
    color: var(--accent-cyan);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
    color: #cbd5e1;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- O MANIFESTO (FRASE DE OURO & PARALLAX) --- */
.manifesto {
    padding: 150px 5%;
    background: var(--bg-surface);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.manifesto::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.quote {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.quote span {
    color: var(--accent-red);
}

.author {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.manifesto-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* --- ECOSSISTEMAS DE ATUAÇÃO --- */
.ecosystems {
    padding: 120px 5%;
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.ecosystems::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('net/lateral-distante7.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.eco-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.eco-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eco-card {
    background: rgba(17, 26, 47, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.4s var(--ease-out-quint);
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.eco-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(119, 47, 47, 0.5);
}

.eco-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.eco-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.eco-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* --- TRADIÇÃO EM DADOS (NÚMEROS) --- */
.telemetry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 80px 5%;
    background: var(--bg-main);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-number span {
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: 8px;
}

/* --- MURAL DE CONFIANÇA (COMPLIANCE) --- */
.compliance {
    padding: 120px 5%;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.compliance::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('net/diag1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.compliance-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comp-text {
    flex: 1;
    max-width: 600px;
}

.comp-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.comp-text p {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.comp-data {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.data-box {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: 16px;
    border-left: 3px solid var(--accent-cyan);
}

.data-box strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.data-box span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comp-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-card {
    background: rgba(17, 26, 47, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cert-card:hover {
    background: var(--bg-surface);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.cert-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 15px;
}

.cert-card img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

/* --- NOVA SECÇÃO: CULTURA (DESIGN PREMIUM E SEM EMOJIS) --- */
.culture {
    padding: 120px 5%;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.culture-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.culture-header {
    text-align: center;
    margin-bottom: 80px;
}

.culture-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.culture-header p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.culture-card {
    background: rgba(17, 26, 47, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.4s var(--ease-out-quint);
    position: relative;
    overflow: hidden;
}

/* Detalhe Premium: Linha Neon no topo dos cartões */
.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

.culture-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-red), transparent);
}

.culture-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.culture-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.culture-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.culture-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Novo Grid de Valores (Estilo Corporativo) */
.values-section {
    text-align: center;
    background: rgba(5, 10, 20, 0.6);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.values-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.value-item {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.068);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 12px 12px 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
    transition: 0.3s var(--ease-out-quint);
}

.value-item:hover {
    background: rgba(0, 229, 255, 0.05);
    border-left-color: var(--accent-red);
    transform: translateX(5px);
}

/* --- CONVERSÃO / CONTATO --- */
.conversion {
    padding: 120px 5%;
    background: var(--bg-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.conversion::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('net/vista_cima2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.conversion-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.conversion-box {
    background: rgba(17, 26, 47, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

    width: 100%;
    max-width: 1100px;
    border-radius: 40px;
    padding: 50px 35px;
    display: flex;
    gap: 60px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.conv-text {
    flex: 1;
}

.conv-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.conv-text p {
    font-size: 1.15rem;
}

.modern-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* --- SELETOR EM CARDS (MODERNO E INTUITIVO) --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 5px;
}

.service-card {
    cursor: pointer;
}

.service-card input {
    display: none;
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background: rgba(5, 10, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-quint);
    text-align: center;
}

.service-card-inner .icon {
    font-size: 2rem;
    margin-bottom: 8px;
    opacity: 0.9;
    transition: 0.3s;
}

.service-card-inner .title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: 0.3s;
}

.service-card:hover .service-card-inner {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-card input:checked+.service-card-inner {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    transform: translateY(-3px);
}

.service-card input:checked+.service-card-inner .icon {
    opacity: 1;
    transform: scale(1.15);
}

.service-card input:checked+.service-card-inner .title {
    color: var(--text-primary);
}

.form-row {
    display: flex;
    gap: 20px;
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form textarea {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s var(--ease-out-quint);
    box-sizing: border-box;
}

.modern-form input[type="text"]:focus,
.modern-form input[type="email"]:focus,
.modern-form input[type="tel"]:focus,
.modern-form textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

.modern-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
    padding: 22px;
    border-radius: 16px;
}

/* --- FOOTER & WHATSAPP --- */
footer {
    padding: 60px 5% 40px;
    background: var(--bg-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s var(--ease-out-quint);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* --- ANIMAÇÕES DE SCROLL --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--ease-out-quint);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVIDADE (Apenas estas regras atuam no Celular e Tablet) --- */

@media (max-width: 992px) {
    header {
        padding: 15px 5%;
    }

    .logo img {
        max-height: 60px !important;
    }

    .logo div {
        font-size: 1.3rem;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .eco-grid {
        grid-template-columns: 1fr;
    }

    .compliance-inner {
        flex-direction: column;
        text-align: center;
    }

    .comp-text {
        max-width: 100%;
        text-align: center;
    }

    .comp-data {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .telemetry {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 5%;
    }

    /* Ajuste Cultura Mobile */
    .culture-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conversion-box {
        flex-direction: column;
        padding: 40px 25px;
        gap: 40px;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .manifesto {
        padding: 100px 5%;
    }

    .ecosystems {
        padding: 80px 5%;
    }

    .compliance {
        padding: 80px 5%;
    }

    .culture {
        padding: 80px 5%;
    }

    .conversion {
        padding: 80px 5%;
    }
}

@media (max-width: 600px) {
    .comp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .cert-card {
        padding: 15px 10px;
        border-radius: 12px;
    }

    .cert-card img {
        max-height: 50px;
        margin-bottom: 8px;
    }

    .cert-card h4 {
        font-size: 0.85rem;
        margin-top: 5px;
    }

    .telemetry {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        margin: 0;
    }

    .conversion-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .quote {
        font-size: 1.8rem;
    }

    .eco-header h2,
    .comp-text h2,
    .conv-text h2,
    .culture-header h2 {
        font-size: 2rem;
    }

    /* Valores 1x1 no mobile */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding: 30px 20px;
    }

    .culture-card {
        padding: 40px 25px;
    }

    .manifesto {
        padding: 80px 5%;
    }

    .ecosystems {
        padding: 60px 5%;
    }

    .compliance {
        padding: 60px 5%;
    }

    .culture {
        padding: 60px 5%;
    }

    .conversion {
        padding: 60px 5%;
    }

    .eco-card {
        padding: 30px 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card-inner {
        flex-direction: row;
        padding: 15px;
        justify-content: flex-start;
        gap: 15px;
        text-align: left;
    }

    .service-card-inner .icon {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
}


/* --- FOOTER CORPORATIVO --- */
footer {
    padding: 80px 5% 40px;
    background: #03060c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 10px;
    margin-top: -2px;
}

.footer-logo span {
    color: var(--accent-red);
}

.footer-brand p {
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-contact h4,
.footer-legal h4,
.footer-careers h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-contact p,
.footer-legal p,
.footer-careers p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.back-to-top {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.back-to-top:hover {
    background: var(--accent-cyan);
    color: #000;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- EXIT INTENT POPUP --- */
.exit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 6, 12, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-quint);
}

.exit-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-modal {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s var(--ease-out-quint);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.exit-overlay.active .exit-modal {
    transform: scale(1) translateY(0);
}

.exit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
    padding: 15px;
    /* Aumenta a área de toque no celular */
    margin: -15px;
    /* Mantém o alinhamento visual intacto */
}

.exit-close:hover {
    color: var(--accent-red);
}

.exit-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.exit-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.exit-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .exit-actions {
        flex-direction: column;
    }

    .exit-content h2 {
        font-size: 1.6rem;
    }
}