/* ==========================================
   ELÉTRICA PARANÁ - LANDING PAGE STYLING
   ========================================== */

/* 1. VARIÁVEIS DO SISTEMA DE DESIGN */
:root {
    /* Cores Institucionais */
    --color-primary: #0F315E; /* Azul institucional escuro */
    --color-primary-dark: #071D3A; /* Azul muito escuro para contrastes */
    --color-primary-light: #1A4680;
    --color-secondary: #52BBD1; /* Azul claro / turquesa */
    --color-secondary-hover: #3EA6BC;
    --color-secondary-light: #EBF8FA;
    
    /* Cores Auxiliares */
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #20BA5A;
    --color-error: #E53E3E;
    --color-success: #38A169;
    
    /* Neutros */
    --color-bg-light: #F4F6F9; /* Fundo cinza bem claro */
    --color-text-dark: #0F315E; /* Todos os textos em azul institucional escuro (#0F315E) para alto contraste */
    --color-text-muted: #1E3F66; /* Texto secundário escurecido para contraste */
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;
    
    /* Fontes */
    --font-display: "Montserrat", system-ui, sans-serif;
    --font-body: "Inter Tight", system-ui, sans-serif;
    --font-ui: "Albert Sans", system-ui, sans-serif;
    
    /* Efeitos e Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 49, 94, 0.08);
    --shadow-lg: 0 12px 24px rgba(15, 49, 94, 0.12);
    --shadow-glow: 0 0 15px rgba(82, 187, 209, 0.4);
    --shadow-whatsapp: 0 6px 20px rgba(37, 211, 102, 0.4);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Layout */
    --header-height: 80px;
}

/* 2. RESET E ESTILOS BÁSICOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. COMPONENTES COMUNS E BOTÕES */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-cta:active {
    transform: translateY(1px);
}

/* Botão Turquesa (Destaque Principal) */
.btn-secondary, .btn-header, .btn-primary-hero, .btn-submit-form, .btn-footer-action, .btn-services-cta {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover, .btn-header:hover, .btn-primary-hero:hover, .btn-submit-form:hover, .btn-footer-action:hover, .btn-services-cta:hover {
    background-color: var(--color-secondary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Botão WhatsApp */
.btn-whatsapp-hero, .btn-footer-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp-hero:hover, .btn-footer-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-whatsapp);
}

.icon-whatsapp {
    margin-right: 8px;
}

/* Badge de Seção */
.section-badge {
    display: inline-block;
    background-color: var(--color-secondary-light);
    color: var(--color-primary-light);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    border: 1px solid rgba(82, 187, 209, 0.3);
}

/* Cabeçalhos de Seções */
.section-title-wrapper {
    margin-bottom: 50px;
}

.section-title-wrapper.text-center {
    text-align: center;
}

.section-title-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
}

.section-title-wrapper.text-center h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
}

.section-title-wrapper.text-center .section-subtitle {
    margin: 0 auto;
}

/* ==========================================
   SEÇÕES DA PÁGINA (ESTRUTURA)
   ========================================== */

/* BLOCO 0 — HEADER FIXO */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 49, 94, 0.1);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 8px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.logo-svg {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-white);
    font-family: var(--font-display);
}

.logo-bold {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 1.25rem;
}

.logo-light {
    font-weight: 300;
    color: var(--color-secondary);
    font-size: 1.25rem;
}

.logo-tag {
    font-size: 0.65rem;
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* BLOCO 1 — HERO (DOBRA PRINCIPAL) */
.hero-section {
    position: relative;
    display: flex;
    min-h: 100vh;
    min-height: calc(100vh - var(--header-height));
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-primary);
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
}

/* Malha técnica vertical (blueprint), bem sutil */
.blueprint-grid-overlay {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.grid-columns-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 100%;
    width: 100%;
}

.grid-columns-12 > div {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.grid-columns-12 > div:last-child {
    border-right: none;
}

.col-1 { grid-column: span 1; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }

/* Imagem de fundo + overlay em gradiente navy→preto */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 49, 94, 0.85) 0%, rgba(15, 49, 94, 0.70) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

/* Conteúdo centralizado */
.hero-centered-content {
    position: relative;
    z-index: 20;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
}

.hero-eyebrow {
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    border: 1px solid rgba(82, 187, 209, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: max-content;
}

.eyebrow-icon {
    color: var(--color-secondary);
}

.eyebrow-text {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.highlight-text {
    color: var(--color-secondary);
}

.hero-desc {
    max-width: 640px;
    margin: 0 auto 36px;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* CTAs e botões do Hero */
.hero-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-cta-custom-group {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.95rem;
    text-decoration: none;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all var(--transition-fast);
}

.btn-cta-custom-group:hover {
    transform: translateY(-2px);
}

.btn-text-part {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 14px 28px;
    font-family: var(--font-ui);
    font-weight: 600;
    border-radius: 50px;
    transition: all 500ms ease-in-out;
    box-shadow: var(--shadow-sm);
}

.btn-cta-custom-group:hover .btn-text-part {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-icon-part {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 500ms ease-in-out;
    border-radius: 50%;
    margin-left: 6px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.btn-cta-custom-group:hover .btn-icon-part {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.icon-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.icon-arrow-clone {
    position: absolute;
    transform: translate(-40px, 40px);
}

.btn-cta-custom-group:hover .icon-arrow {
    transform: translate(40px, -40px);
}

.btn-cta-custom-group:hover .icon-arrow-clone {
    transform: translate(0, 0);
}

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-whatsapp-outline:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Faixa de cobertura geográfica */
.hero-coverage-row {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 300;
}

.coverage-icon {
    color: var(--color-secondary);
}

.lucide-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    display: inline-block;
}

.lucide-icon.text-secondary {
    color: var(--color-secondary);
}

/* Assinatura da marca */
.hero-signature {
    margin-top: 48px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(82, 187, 209, 0.8);
}

/* BLOCO 2 — PROVA DE AUTORIDADE (BARRA DE NÚMEROS) */
.stats-section {
    background-color: var(--color-white);
    padding: 40px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .stats-section {
        padding: 48px 0;
    }
}

.stats-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .stats-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid-container {
        grid-template-columns: repeat(6, 1fr);
    }
}

.stat-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .stat-card-item {
        border-right: 1px solid rgba(15, 49, 94, 0.1);
    }
    
    .stat-card-item:last-child {
        border-right: none;
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.75rem;
    }
}

.stat-label {
    margin-top: 12px;
    max-width: 10rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    line-height: 1.4;
}


/* ==========================================
   NOVA SEÇÃO — SOBRE A EMPRESA (LAYOUT MODELO REFERÊNCIA)
   ========================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

/* Coluna Texto */
.about-text-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text-column .section-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    border: 1px solid rgba(15, 49, 94, 0.15);
    background-color: rgba(15, 49, 94, 0.05);
    padding: 6px 16px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.about-text-column .hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.95;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.about-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* Prova Social */
.about-social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.social-proof-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-icon {
    width: 20px;
    height: 20px;
}

.rating-text {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
}

.rating-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(15, 49, 94, 0.15);
}

.social-proof-google {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    margin-left: 4px;
}

.avatar-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-white);
    margin-left: -8px;
}

.avatar-item:first-child {
    margin-left: 0;
}

.google-text {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* CTA */
.btn-cta-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.btn-cta-about:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-cta-about:hover .arrow-icon {
    transform: translateX(4px);
}

/* Coluna Visuals */
.about-visuals-column {
    position: relative;
    padding: 40px 0;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 49, 94, 0.12);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Liquid Glass Cards */
.liquid-glass-card {
    position: absolute;
    width: 240px;
    padding: 20px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.card-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.card-number-label {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.card-number-label-block {
    display: block;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-top: 4px;
}

.card-desc-text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    font-weight: 400;
}

.card-top-right {
    top: 10px;
    right: -20px;
}

.card-bottom-left {
    bottom: 10px;
    left: -20px;
}

/* Liquid glass classes */
.liquid-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(15, 49, 94, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-radius: 1.25rem;
}

.liquid-glass--accent {
    background: linear-gradient(
        135deg,
        rgba(82, 187, 209, 0.30) 0%,
        rgba(255, 255, 255, 0.20) 100%
    );
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 8px 32px rgba(15, 49, 94, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-radius: 1.25rem;
}

@supports not (backdrop-filter: blur(1px)) {
    .liquid-glass {
        background: rgba(255, 255, 255, 0.9) !important;
    }
    .liquid-glass--accent {
        background: rgba(235, 248, 250, 0.95) !important;
    }
}

/* dark theme tweaks for about section */
[data-theme="dark"] .about-section {
    background-color: var(--color-primary-dark);
}

[data-theme="dark"] .about-text-column h2,
[data-theme="dark"] .rating-text,
[data-theme="dark"] .card-number {
    color: var(--color-white);
}

[data-theme="dark"] .rating-divider {
    background-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .about-text-column .section-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-secondary);
}

[data-theme="dark"] .about-desc,
[data-theme="dark"] .google-text,
[data-theme="dark"] .card-desc-text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .card-number-label,
[data-theme="dark"] .card-number-label-block {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .liquid-glass {
    background: linear-gradient(
        135deg,
        rgba(15, 49, 94, 0.6) 0%,
        rgba(15, 49, 94, 0.45) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .liquid-glass--accent {
    background: linear-gradient(
        135deg,
        rgba(82, 187, 209, 0.25) 0%,
        rgba(15, 49, 94, 0.45) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@supports not (backdrop-filter: blur(1px)) {
    [data-theme="dark"] .liquid-glass {
        background: rgba(15, 49, 94, 0.95) !important;
    }
    [data-theme="dark"] .liquid-glass--accent {
        background: rgba(10, 35, 65, 0.95) !important;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }
    .liquid-glass-card {
        width: 200px;
    }
    .card-top-right {
        right: -10px;
    }
    .card-bottom-left {
        left: -10px;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-text-column {
        align-items: flex-start;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .about-visuals-column {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
        padding: 20px 0;
    }
    
    .about-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        gap: 40px;
        padding: 0 16px;
    }
    
    .about-text-column h2 {
        font-size: 2.25rem;
    }
    
    .about-social-proof {
        gap: 16px 12px;
    }
    
    /* Trazer os cards para dentro da área da imagem no mobile */
    .liquid-glass-card {
        width: 176px; /* ~w-44 */
        padding: 14px;
        border-radius: 1rem;
    }
    
    /* Reduzir blur no mobile para performance */
    .liquid-glass {
        backdrop-filter: blur(14px) saturate(180%);
        -webkit-backdrop-filter: blur(14px) saturate(180%);
    }
    .liquid-glass--accent {
        backdrop-filter: blur(14px) saturate(180%);
        -webkit-backdrop-filter: blur(14px) saturate(180%);
    }

    .card-number {
        font-size: 1.75rem;
        margin-bottom: 4px;
    }
    
    .card-number-label,
    .card-number-label-block {
        font-size: 0.85rem;
    }
    
    .card-desc-text {
        font-size: 0.72rem;
    }
    
    .card-top-right {
        top: 10px;
        right: 8px;
    }
    
    .card-bottom-left {
        bottom: 10px;
        left: 8px;
    }
}

/* BLOCO 3 — DIFERENCIAIS EM CARROSSEL */
.benefits-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.benefits-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    width: 100%;
}

.benefits-carousel {
    width: 100%;
    overflow: hidden;
}

.benefits-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Card Carrossel */
.benefit-carousel-card {
    flex: 0 0 100%;
    min-width: 0;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid var(--color-border);
}

.benefit-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--color-primary-dark);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.benefit-carousel-card:hover .card-image {
    transform: scale(1.05);
}

/* Base fade overlay on image */
.card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(15, 49, 94, 0.4), transparent);
    pointer-events: none;
}

.card-category-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
    border: 1px solid rgba(82, 187, 209, 0.3);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2em; /* Ensures even height for alignment */
}

.card-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    align-self: flex-start;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    text-transform: none;
    letter-spacing: normal;
}

.btn-card-action:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-card-action svg {
    transition: transform var(--transition-fast);
}

.btn-card-action:hover svg {
    transform: translate(2px, -2px);
}

/* Setas */
.benefits-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.carousel-control-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-glow);
}

.carousel-control-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer Section CTA */
.benefits-cta-footer {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.cta-microcopy {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Responsividade dos slides */
@media (min-width: 576px) {
    .benefit-carousel-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 992px) {
    .benefit-carousel-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* BLOCO 4 — LINHAS DE PRODUTO */
.products-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-img-placeholder {
    height: 160px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-secondary);
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-body p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-product {
    font-size: 0.75rem;
    padding: 10px 15px;
    width: 100%;
}

/* Faixa de marcas */
.brand-bar {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    text-align: center;
}

.brand-bar h4 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.brand-logo-item {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 12px 25px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
}

/* BLOCO 5 — SERVIÇOS TÉCNICOS */
.services-section {
    padding: 80px 0;
    background-color: transparent;
    color: #0F315E;
}

.services-section .section-title-wrapper h2 {
    color: #0F315E;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid rgba(15, 49, 94, 0.08);
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    background-color: var(--color-white);
    border-color: rgba(82, 187, 209, 0.6);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.service-card h3 {
    color: #0F315E;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #1E3F66;
    font-size: 0.9rem;
}

.services-action {
    text-align: center;
}

.btn-services-cta {
    min-width: 280px;
}

/* BLOCO 6 — JORNADA ORÇAMENTO (TIMELINE) */
.timeline-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.timeline-step {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: 3px solid var(--color-secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.timeline-step h4 {
    margin-top: 10px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-step p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* BLOCO 7 — FORMULÁRIO QUALIFICADOR */
.form-section {
    padding: 90px 0;
    background: transparent;
    color: #0F315E;
}

.form-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.form-intro h2 {
    color: #0F315E;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.form-intro p {
    color: #1E3F66;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.form-badge {
    display: inline-block;
    background-color: rgba(82, 187, 209, 0.15);
    color: var(--color-secondary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    border: 1px solid rgba(82, 187, 209, 0.3);
}

.form-trust-points {
    display: grid;
    gap: 25px;
}

.trust-point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-icon {
    font-size: 1.5rem;
    background-color: rgba(15, 49, 94, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.trust-point-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #1E3F66;
}

.trust-point-item p strong {
    color: #0F315E;
}

.form-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--color-text-dark);
}

.qualificador-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(82, 187, 209, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* File upload styling custom */
.file-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px dashed var(--color-secondary);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-secondary-light);
    padding: 10px 15px;
    cursor: pointer;
    overflow: hidden;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-custom-btn {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 12px;
    text-transform: uppercase;
}

.file-name-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.file-help {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.btn-submit-form {
    margin-top: 10px;
    padding: 18px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
}

.form-security-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* BLOCO 8 — PROVA SOCIAL */
.social-proof-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-store-card {
    background-color: var(--color-bg-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.store-stars {
    color: #F6AD55; /* Estrela dourada */
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.review-store-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.store-rating {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 15px;
}

.store-quote {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Fotos das Lojas Galeria */
.store-photos-gallery {
    border-top: 1px solid var(--color-border);
    padding-top: 50px;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.photo-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 50%);
    transform: rotate(-30deg);
    top: -50%;
}

.photo-placeholder span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 8px;
    z-index: 1;
}

.photo-placeholder p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    z-index: 1;
}

/* BLOCO 9 — FAQ */
.faq-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-secondary-hover);
    background-color: var(--color-secondary-light);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* FAQ Active state */
.faq-item.active {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Grande o suficiente para o conteúdo */
    transition: max-height var(--transition-normal) cubic-bezier(1, 0, 1, 0);
}

/* BLOCO 10 — LOJAS / COBERTURA */
.locations-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.location-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-primary);
}

.location-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.location-address {
    font-size: 0.88rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.location-phone {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary-light);
}

.location-hours {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 0;
}

.delivery-coverage {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.coverage-content h4 {
    color: var(--color-secondary);
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.coverage-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.coverage-content p strong {
    color: var(--color-white);
}

.instagram-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.insta-icon {
    font-size: 2rem;
}

.instagram-banner strong {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.insta-link {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.insta-link:hover {
    color: var(--color-white);
}

/* BLOCO 11 — CTA FINAL + RODAPÉ */
.footer-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.footer-cta-band {
    background-color: var(--color-secondary);
    padding: 30px 0;
}

.cta-band-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-phrase {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    letter-spacing: 0.5px;
}

.btn-footer-action {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 25px;
    font-size: 0.85rem;
}

.btn-footer-action:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.footer-main {
    padding: 60px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-about .footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    max-width: 320px;
}

.social-link {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.social-link:hover {
    color: var(--color-white);
}

.footer-links h4,
.footer-cta-secondary h4 {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--color-secondary);
    text-transform: uppercase;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-cta-secondary p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.btn-footer-whatsapp {
    width: 100%;
    font-size: 0.8rem;
    padding: 12px 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.lgpd-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.lgpd-link:hover {
    color: var(--color-secondary);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #0F315E; /* Navy da marca */
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 49, 94, 0.3);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    background-color: #52BBD1; /* Turquesa no hover */
    color: #0F315E;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(82, 187, 209, 0.4);
}

.icon-whatsapp-float {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.15));
}

/* ==========================================
   MEDIA QUERIES (MOBILE-FIRST RESPONSIVIDADE)
   ========================================== */

/* Telas Pequenas e Médias (Até 992px) */
@media (max-width: 992px) {
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    /* Layout legado (mantido por compatibilidade) */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-brand-phrase::after {
        margin: 5px auto 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust-bar {
        justify-content: center;
    }

    .hero-image-area {
        max-width: 500px;
        margin: 0 auto;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .delivery-coverage {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about p {
        max-width: 100%;
    }
}

/* Tablets (Até 768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .btn-header {
        display: none; /* Esconde CTA do header no mobile para dar foco no float do WhatsApp */
    }
    
    .stats-card {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 20px;
    }
    
    .stats-card:last-child {
        border-bottom: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-step {
        border-left: 4px solid var(--color-primary);
        padding-left: 35px;
    }
    
    .step-number {
        left: -20px;
        top: 25px;
    }
    
    .cta-band-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-phrase {
        font-size: 1.15rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Celulares Pequenos (Até 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
        letter-spacing: -0.01em;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 32px);
        padding-bottom: 48px;
    }

    .hero-eyebrow {
        font-size: 0.68rem;
    }

    .hero-coverage-row {
        font-size: 0.78rem;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .form-intro h2 {
        font-size: 1.8rem;
    }

    /* legado */
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
    }

    .form-wrapper {
        padding: 20px;
    }

    .section-title-wrapper h2 {
        font-size: 1.7rem;
    }
}

/* ==========================================
   DARK MODE TOGGLE BUTTON
   ========================================== */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 49, 94, 0.22);
    background-color: rgba(15, 49, 94, 0.05);
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-right: 12px;
    flex-shrink: 0;
    padding: 0;
}

.dark-mode-toggle:hover {
    background-color: rgba(82, 187, 209, 0.18);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(82, 187, 209, 0.3);
}

.dark-mode-toggle:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Light mode: mostra lua (convida para dark) */
.dm-icon-sun  { display: none; }
.dm-icon-moon { display: block; }

/* Dark mode: mostra sol (convida para light) */
[data-theme="dark"] .dm-icon-sun  { display: block; }
[data-theme="dark"] .dm-icon-moon { display: none; }

/* ==========================================
   DARK MODE — VARIÁVEIS E OVERRIDES
   ========================================== */
[data-theme="dark"] {
    --color-bg-light: #0D1117;
    --color-text-dark: #C9D1D9;
    --color-text-muted: #8B949E;
    --color-border: #30363D;
    --color-secondary-light: rgba(82, 187, 209, 0.12);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.6);
}

/* Body base */
[data-theme="dark"] body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

/* Header mais escuro no dark mode */
[data-theme="dark"] .header-sticky {
    background-color: rgba(6, 10, 20, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .dark-mode-toggle {
    border-color: rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--color-white);
}

/* Headings nos blocos claros */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
    color: #E6EDF3;
}

/* Headings nos blocos escuros (já têm cor explícita, mantemos) */
[data-theme="dark"] .about-section h2,
[data-theme="dark"] .about-content h2,
[data-theme="dark"] .services-section .section-title-wrapper h2,
[data-theme="dark"] .form-intro h2,
[data-theme="dark"] .footer-links h4,
[data-theme="dark"] .footer-cta-secondary h4,
[data-theme="dark"] .about-dashboard-header h4,
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .about-pillar-text strong,
[data-theme="dark"] .coverage-content h4 {
    color: #FFFFFF;
}

/* Stats Section */
[data-theme="dark"] .stats-section {
    background-color: #161B22;
    border-bottom-color: #30363D;
}

[data-theme="dark"] .stat-number {
    color: #E6EDF3;
}

[data-theme="dark"] .stat-card-item {
    border-right-color: rgba(255, 255, 255, 0.08);
}

/* Benefits / Carousel Section */
[data-theme="dark"] .benefits-section {
    background-color: #0D1117;
}

[data-theme="dark"] .benefit-carousel-card {
    background-color: #161B22;
    border-color: #30363D;
}

[data-theme="dark"] .card-title {
    color: #E6EDF3;
}

[data-theme="dark"] .card-desc {
    color: #8B949E;
}

[data-theme="dark"] .card-image-wrapper {
    background-color: #0D1117;
}

[data-theme="dark"] .card-meta {
    color: #8B949E;
}

[data-theme="dark"] .cta-microcopy {
    color: #8B949E;
}

/* Products Section */
[data-theme="dark"] .products-section {
    background-color: #161B22;
}

[data-theme="dark"] .product-card {
    background-color: #21262D;
    border-color: #30363D;
}

[data-theme="dark"] .product-body p {
    color: #8B949E;
}

[data-theme="dark"] .brand-bar {
    border-top-color: #30363D;
}

[data-theme="dark"] .brand-bar h4 {
    color: #8B949E;
}

[data-theme="dark"] .brand-logo-item {
    background-color: #21262D;
    border-color: #30363D;
    color: var(--color-secondary);
}

/* Services Section (Dark Mode) */
[data-theme="dark"] .services-section {
    color: var(--color-white);
}

[data-theme="dark"] .services-section .section-title-wrapper h2 {
    color: var(--color-white);
}

[data-theme="dark"] .service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

[data-theme="dark"] .service-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(82, 187, 209, 0.4);
}

[data-theme="dark"] .service-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Section (Dark Mode) */
[data-theme="dark"] .form-section {
    color: var(--color-white);
}

[data-theme="dark"] .form-intro h2 {
    color: var(--color-white);
}

[data-theme="dark"] .form-intro p {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .point-icon {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .trust-point-item p {
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .trust-point-item p strong {
    color: var(--color-white);
}

/* Timeline Section */
[data-theme="dark"] .timeline-section {
    background-color: #0D1117;
}

[data-theme="dark"] .timeline-step {
    background-color: #161B22;
    border-left-color: var(--color-secondary);
}

[data-theme="dark"] .timeline-step p {
    color: #8B949E;
}

[data-theme="dark"] .step-number {
    border-color: rgba(82, 187, 209, 0.35);
}

/* Social Proof Section */
[data-theme="dark"] .social-proof-section {
    background-color: #161B22;
}

[data-theme="dark"] .review-store-card {
    background-color: #21262D;
    border-color: #30363D;
}

[data-theme="dark"] .review-store-card h4 {
    color: #E6EDF3;
}

[data-theme="dark"] .store-quote {
    color: #8B949E;
}

[data-theme="dark"] .store-rating {
    color: var(--color-secondary);
}

[data-theme="dark"] .gallery-title {
    color: #8B949E;
}

/* FAQ Section */
[data-theme="dark"] .faq-section {
    background-color: #0D1117;
}

[data-theme="dark"] .faq-item {
    background-color: #161B22;
    border-color: #30363D;
}

[data-theme="dark"] .faq-item.active {
    border-color: var(--color-secondary);
}

[data-theme="dark"] .faq-question {
    color: #E6EDF3;
}

[data-theme="dark"] .faq-question:hover {
    background-color: rgba(82, 187, 209, 0.08);
    color: var(--color-secondary);
}

[data-theme="dark"] .faq-answer p {
    color: #8B949E;
}

/* Locations Section */
[data-theme="dark"] .locations-section {
    background-color: #161B22;
}

[data-theme="dark"] .location-card {
    background-color: #21262D;
    border-color: #30363D;
    border-top-color: var(--color-secondary);
}

[data-theme="dark"] .location-address,
[data-theme="dark"] .location-hours {
    color: #8B949E;
}

/* Form Section — formulário no bloco escuro, o wrapper precisa adaptar */
[data-theme="dark"] .form-wrapper {
    background-color: #161B22;
    color: var(--color-text-dark);
}

[data-theme="dark"] .form-group label {
    color: #E6EDF3;
}

[data-theme="dark"] .form-group input[type="text"],
[data-theme="dark"] .form-group input[type="tel"],
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background-color: #0D1117;
    border-color: #30363D;
    color: #E6EDF3;
}

[data-theme="dark"] .form-group input[type="text"]::placeholder,
[data-theme="dark"] .form-group input[type="tel"]::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #8B949E;
}

[data-theme="dark"] .form-group select option {
    background-color: #161B22;
    color: #E6EDF3;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--color-secondary);
    background-color: #0D1117;
    box-shadow: 0 0 0 3px rgba(82, 187, 209, 0.15);
}

[data-theme="dark"] .file-input-wrapper {
    background-color: rgba(82, 187, 209, 0.08);
    border-color: rgba(82, 187, 209, 0.4);
}

[data-theme="dark"] .file-name-text {
    color: #8B949E;
}

[data-theme="dark"] .form-security-note {
    color: #8B949E;
}

/* Section badges em blocos claros */
[data-theme="dark"] .benefits-section .section-badge,
[data-theme="dark"] .products-section .section-badge,
[data-theme="dark"] .timeline-section .section-badge,
[data-theme="dark"] .social-proof-section .section-badge,
[data-theme="dark"] .faq-section .section-badge,
[data-theme="dark"] .locations-section .section-badge {
    background-color: rgba(82, 187, 209, 0.12);
    color: var(--color-secondary);
    border-color: rgba(82, 187, 209, 0.25);
}

/* Section subtitles em blocos claros */
[data-theme="dark"] .benefits-section .section-subtitle,
[data-theme="dark"] .products-section .section-subtitle,
[data-theme="dark"] .timeline-section .section-subtitle,
[data-theme="dark"] .social-proof-section .section-subtitle,
[data-theme="dark"] .faq-section .section-subtitle,
[data-theme="dark"] .locations-section .section-subtitle {
    color: #8B949E;
}

/* Carousel controls */
[data-theme="dark"] .carousel-control-btn {
    background-color: #21262D;
    border: 1px solid #30363D;
}

/* Store photos gallery placeholder */
[data-theme="dark"] .photo-placeholder {
    background: linear-gradient(135deg, #161B22 0%, #0D1117 100%);
    border: 1px solid #30363D;
}

/* Transition suave ao mudar de tema */
*, *::before, *::after {
    transition-property: background-color, border-color, color, box-shadow;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

/* =============================================
   SCROLL-DRIVEN VIDEO EXPANSION STYLING
   ============================================= */

.scroll-track {
    position: relative;
    height: 400vh; /* 4x viewport de rolagem */
    background-color: #000;
}

.sticky-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--w, 360px);
    height: var(--h, 460px);
    border-radius: var(--radius, 24px);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    will-change: width, height, border-radius;
    transition: none !important;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 90%;
    margin: 0 auto;
    color: #fff !important;
}

.hero-subtitle {
    position: absolute;
    bottom: 14%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff !important;
    z-index: 3;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.hero-subtitle .title {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
}

.hero-subtitle .hint {
    margin-top: 0.5rem;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    opacity: 0.85;
    font-weight: 400;
}

.badge {
    position: absolute;
    top: calc(var(--header-height) + 20px);
    right: 24px;
    z-index: 4;
    background: rgba(15, 49, 94, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(15, 49, 94, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), transform var(--transition-fast) !important;
}

.arrow:hover {
    background: var(--color-primary);
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .arrow {
        display: none;
    }
    .badge {
        top: calc(var(--header-height) + 12px);
        right: 16px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .hero-subtitle {
        bottom: 18%;
    }
}

/* =============================================
   SEÇÃO EDITORIAL - SOLUÇÕES POR SEGMENTO
   ============================================= */

.editorial-header-block,
.products-editorial-header {
    position: relative;
    margin-bottom: 24px; /* mb-6 equivalent */
    width: 100%;
}

.editorial-title {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.03em;
    font-size: 3.25rem; /* text-6xl (60px) */
}

@media (min-width: 768px) {
    .editorial-title {
        font-size: 6rem; /* text-8xl (96px) */
    }
}

@media (min-width: 1024px) {
    .editorial-title {
        font-size: 8rem; /* text-9xl (128px) */
    }
}

.section-title-wrapper h2.editorial-title,
.editorial-header-block h2.editorial-title {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.03em;
    font-size: 3.25rem;
}

@media (min-width: 768px) {
    .section-title-wrapper h2.editorial-title,
    .editorial-header-block h2.editorial-title {
        font-size: 6rem;
    }
}

@media (min-width: 1024px) {
    .section-title-wrapper h2.editorial-title,
    .editorial-header-block h2.editorial-title {
        font-size: 8rem;
    }
}

.editorial-title span {
    display: block;
}

.editorial-title .navy-text {
    color: #0F315E;
}

.editorial-title .turquesa-text {
    color: #52BBD1;
}

.editorial-support-text {
    max-width: 256px; /* max-w-[16rem] */
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #5B6675;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .editorial-support-text {
        position: absolute;
        right: 0;
        top: 12px;
        text-align: left;
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .editorial-support-text {
        top: 24px;
    }
}

.section-title-wrapper h2.editorial-title::after,
.editorial-header-block h2.editorial-title::after {
    display: none;
}

.products-grid-editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.produto-card-wrapper {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.produto-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 300px;
    background-color: transparent; /* Transparente para flutuar os produtos no background */
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Não corta o produto */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.produto-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 49, 94, 0.03); /* Overlay navy super sutil */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.produto-card .hover-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #52BBD1;
    color: #0F315E;
    transform: translateY(-8px) scale(0.85);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-up-right-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hover effects */
.produto-card-wrapper:hover .produto-card img {
    transform: scale(1.08);
    filter: saturate(1.1) brightness(1.03);
}

.produto-card-wrapper:hover .produto-card::after {
    opacity: 1;
}

.produto-card-wrapper:hover .produto-card .hover-arrow {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.produto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-chip {
    border: 1px solid rgba(15, 49, 94, 0.2);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F315E;
    transition: all 0.3s ease;
}

.produto-card-wrapper:hover .tag-chip {
    border-color: #52BBD1;
    color: #52BBD1;
}

.produto-name {
    margin-top: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: #0F315E;
    transition: color 0.3s ease;
}

.produto-card-wrapper:hover .produto-name {
    color: #52BBD1;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .produto-card img,
    .produto-card::after,
    .produto-card .hover-arrow {
        transition: none;
    }
    .produto-card-wrapper:hover .produto-card img {
        transform: none;
    }
}

/* Dark theme overrides */
[data-theme="dark"] .editorial-title .navy-text {
    color: #fff;
}

[data-theme="dark"] .editorial-support-text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .produto-name {
    color: #fff;
}

[data-theme="dark"] .tag-chip {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .produto-card-wrapper:hover .tag-chip {
    border-color: #52BBD1;
    color: #52BBD1;
}

[data-theme="dark"] .produto-card-wrapper:hover .produto-name {
    color: #52BBD1;
}

/* Media Queries for layout */
@media (min-width: 640px) {
    .products-grid-editorial {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-editorial-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .editorial-support-text {
        text-align: right;
        margin-top: 16px;
    }
    .products-grid-editorial {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   PÁGINAS DE DETALHE DE PRODUTO
   ============================================= */

.product-detail-main {
    padding: 120px 0 80px; /* offset para compensar o header fixo */
    background-color: var(--color-white);
}

.product-breadcrumb {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: #5B6675;
    margin-bottom: 32px;
}

.product-breadcrumb a {
    color: #0F315E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: #52BBD1;
}

.product-breadcrumb span {
    margin: 0 8px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.product-hero-image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: none; /* Sem sombra para flutuar o produto */
    background-color: transparent; /* Transparente */
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-info h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0F315E;
    margin-top: 16px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.product-info p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #5B6675;
    line-height: 1.65;
    margin-bottom: 24px;
}

.product-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 8px;
    width: 100%;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.bullet-icon {
    color: #52BBD1;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-product-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #52BBD1;
    color: #0F315E;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.btn-product-cta:hover {
    background-color: #0F315E;
    color: #fff;
    transform: translateY(-2px);
}

.btn-product-cta svg {
    transition: transform 0.3s ease;
}

.btn-product-cta:hover svg {
    transform: translateX(4px);
}

.authority-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    background-color: #F4F6F9;
    padding: 40px;
    border-radius: 1.5rem;
    text-align: center;
    margin-top: 60px;
}

.authority-item p.number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F315E;
    margin: 0;
}

.authority-item p.label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: #5B6675;
    margin: 6px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-footer-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    background-color: #0F315E;
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background-color: #52BBD1;
    color: #0F315E;
    transform: translateY(-2px);
}

/* Dark mode tweaks for product pages */
[data-theme="dark"] .product-detail-main {
    background-color: var(--color-primary-dark);
}

[data-theme="dark"] .product-breadcrumb a {
    color: #fff;
}

[data-theme="dark"] .product-breadcrumb a:hover {
    color: #52BBD1;
}

[data-theme="dark"] .product-info h1 {
    color: #fff;
}

[data-theme="dark"] .product-info p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .bullet-item {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .authority-banner {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .authority-item p.number {
    color: #fff;
}

[data-theme="dark"] .authority-item p.label {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .btn-footer-cta {
    background-color: #52BBD1;
    color: #0F315E;
}

[data-theme="dark"] .btn-footer-cta:hover {
    background-color: #fff;
    color: #0F315E;
}

/* Product Media queries */
@media (min-width: 640px) {
    .product-bullets {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .product-hero {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
    }
    .authority-banner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   SEÇÃO DE MARCAS - MAC-OS DOCK INTERATIVO
   ============================================= */

.brands-dock-section {
    padding: 80px 20px;
    text-align: center;
    overflow: visible;
}

.brands-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0F315E;
    margin-bottom: 48px;
    transition: color 0.3s ease;
}

.dock-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
    padding: 10px 0;
}

/* O container do Dock simula a barra de vidro fosco */
.dock-container {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(15, 49, 94, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 49, 94, 0.1);
    padding: 12px 24px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(15, 49, 94, 0.06);
    height: 110px;
    transition: all 0.3s ease;
}

/* Cada item/ícone no Dock */
.dock-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 49, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 49, 94, 0.08);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                width 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                height 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                margin 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: bottom center;
}

.dock-wordmark {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: #0F315E;
    letter-spacing: -0.01em;
    text-align: center;
    pointer-events: none;
    transition: font-size 0.25s ease;
}

.dock-logo {
    width: 60%;
    height: 60%;
    object-fit: contain;
    pointer-events: none;
}

/* Tooltip do Dock */
.dock-item::after {
    content: attr(data-name);
    position: absolute;
    bottom: 105px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0F315E;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 50;
}

.dock-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* EFECT DOCK MAGNIFICATION (macOS) via CSS */
@media (min-width: 768px) {
    /* Magnificação do item ativo */
    .dock-container:hover .dock-item:hover {
        transform: scale(1.35) translateY(-12px);
        margin: 0 10px;
    }

    .dock-container:hover .dock-item:hover .dock-wordmark {
        font-size: 0.95rem;
    }

    /* Magnificação dos vizinhos adjacentes */
    /* Vizinho à direita */
    .dock-container:hover .dock-item:hover + .dock-item {
        transform: scale(1.15) translateY(-5px);
        margin: 0 4px;
    }
    
    .dock-container:hover .dock-item:hover + .dock-item .dock-wordmark {
        font-size: 0.85rem;
    }

    /* Vizinho à esquerda */
    .dock-container:hover .dock-item:has(+ .dock-item:hover) {
        transform: scale(1.15) translateY(-5px);
        margin: 0 4px;
    }
    
    .dock-container:hover .dock-item:has(+ .dock-item:hover) .dock-wordmark {
        font-size: 0.85rem;
    }
}

/* Responsivo para mobile */
@media (max-width: 640px) {
    .dock-container {
        height: auto;
        padding: 12px 16px;
        border-radius: 20px;
        gap: 10px;
    }
    .dock-item {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
    .dock-wordmark {
        font-size: 0.7rem;
    }
    .dock-item::after {
        display: none; /* remove tooltips no mobile */
    }
}

/* Dark theme overrides para o Dock */
[data-theme="dark"] .dock-container {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .brands-eyebrow {
    color: #52BBD1;
}

/* =============================================
   BACKGROUND MARCA - GLOW + GRID
   ============================================= */

/* Variante ESCURA (Glow radial turquesa + Grid de blueprint) */
.background-marca {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #0B2342; /* Navy profundo */
    overflow: hidden;
}

.background-marca::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 560px at 50% 200px, #52BBD1, transparent);
    opacity: 0.3; /* Glow turquesa suave */
}

.background-marca::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: 
        linear-gradient(to right, rgba(82, 187, 209, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(82, 187, 209, 0.1) 1px, transparent 1px);
    background-size: 18px 18px;
}

/* Variante CLARA (Off-white + Dot grid com máscara radial) */
.background-marca-claro {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #F4F6F9; /* Off-white */
    overflow: hidden;
}

[data-theme="dark"] .background-marca-claro {
    background-color: #0D1117; /* Adapta-se ao tema escuro */
}

.background-marca-claro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(82, 187, 209, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at 50% 50%, #000000 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000000 70%, transparent 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

/* Garante que seções que usam background do site fiquem com position relative */
.scroll-track, .stats-section, .about-section, .benefits-section, .products-section, .timeline-section, .form-section, .services-section, .brands-dock-section {
    position: relative;
    z-index: 1;
}

/* =============================================
   WHATSAPP ICON CONTRAST CONTROL
   ============================================= */
.wpp-icon-container {
    position: relative;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wpp-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease;
}

/* Caso 1: Botão claro (turquesa/branco) -> Normal: escuro, Hover: claro */
.wpp-btn-light-bg .wpp-icon-escuro {
    opacity: 1;
}
.wpp-btn-light-bg .wpp-icon-claro {
    opacity: 0;
}
.wpp-btn-light-bg:hover .wpp-icon-escuro,
.group:hover .wpp-btn-light-bg .wpp-icon-escuro,
.produto-card-wrapper:hover .wpp-btn-light-bg .wpp-icon-escuro {
    opacity: 0;
}
.wpp-btn-light-bg:hover .wpp-icon-claro,
.group:hover .wpp-btn-light-bg .wpp-icon-claro,
.produto-card-wrapper:hover .wpp-btn-light-bg .wpp-icon-claro {
    opacity: 1;
}

/* Caso 2: Botão escuro (navy) -> Normal: claro, Hover: escuro */
.wpp-btn-dark-bg .wpp-icon-escuro {
    opacity: 0;
}
.wpp-btn-dark-bg .wpp-icon-claro {
    opacity: 1;
}
.wpp-btn-dark-bg:hover .wpp-icon-escuro,
.group:hover .wpp-btn-dark-bg .wpp-icon-escuro {
    opacity: 1;
}
.wpp-btn-dark-bg:hover .wpp-icon-claro,
.group:hover .wpp-btn-dark-bg .wpp-icon-claro {
    opacity: 0;
}

/* Caso 3: Botão escuro estático -> Claro em ambos */
.wpp-btn-dark-bg-static .wpp-icon-escuro {
    opacity: 0;
}
.wpp-btn-dark-bg-static .wpp-icon-claro {
    opacity: 1;
}

/* Logo visibility logic for light/dark themes */
.logo-light-only {
    display: block !important;
}
.logo-dark-only {
    display: none !important;
}

[data-theme="dark"] .logo-light-only {
    display: none !important;
}
[data-theme="dark"] .logo-dark-only {
    display: block !important;
}

/* ==========================================
   CTA WHATSAPP DO HERO (PROMINENTE)
   ========================================== */
.hero-cta-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.btn-whatsapp-hero-cta {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
    transition: all var(--transition-fast);
}

.btn-whatsapp-hero-cta:hover {
    transform: translateY(-3px);
}

.wpp-cta-text {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 16px 32px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 300ms ease-in-out;
    box-shadow: 0 8px 24px rgba(82, 187, 209, 0.25);
}

.btn-whatsapp-hero-cta:hover .wpp-cta-text {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    box-shadow: 0 12px 32px rgba(15, 49, 94, 0.4);
}

.wpp-cta-icon-wrapper {
    background-color: var(--color-secondary);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    border-radius: 50%;
    margin-left: 8px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(82, 187, 209, 0.25);
}

.btn-whatsapp-hero-cta:hover .wpp-cta-icon-wrapper {
    background-color: var(--color-primary-dark);
    box-shadow: 0 12px 32px rgba(15, 49, 94, 0.4);
}

.wpp-cta-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-normal);
}

.wpp-cta-icon-clone {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-45px, 45px);
    transition: transform var(--transition-normal);
}

.btn-whatsapp-hero-cta:hover .wpp-cta-icon {
    transform: translate(45px, -45px);
}

.btn-whatsapp-hero-cta:hover .wpp-cta-icon-clone {
    transform: translate(0, 0);
}



/* ==========================================
   SEÇÃO — NOSSA EQUIPE (FOTOS REAIS)
   ========================================== */
.team-section {
    padding: 96px 0 140px;
    background-color: var(--color-white);
    overflow: hidden;
}

/* Carrossel 3D (port do componente React "carousel" para CSS/JS puro) */
.team-carousel-3d {
    position: relative;
    width: 70vmin;
    height: 70vmin;
    margin: 40px auto 0;
}

.tc3d-track {
    position: absolute;
    inset: 0 auto auto 0;
    display: flex;
    margin: 0 -4vmin;
    transition: transform 1s ease-in-out;
}

.tc3d-persp {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.tc3d-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    width: 70vmin;
    height: 70vmin;
    margin: 0 4vmin;
    z-index: 10;
    cursor: pointer;
    transform: scale(0.98) rotateX(8deg);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tc3d-slide.is-active {
    transform: scale(1) rotateX(0deg);
    cursor: default;
}

.tc3d-media {
    position: absolute;
    inset: 0;
    background-color: #1D1F2F;
    border-radius: 1%;
    overflow: hidden;
    transition: transform 0.15s ease-out;
}

.tc3d-slide.is-active .tc3d-media {
    transform: translate3d(calc(var(--x, 0px) / 30), calc(var(--y, 0px) / 30), 0);
}

.tc3d-media img {
    position: absolute;
    inset: 0;
    width: 120%;
    height: 120%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.6s ease-in-out;
}

.tc3d-slide.is-active .tc3d-media img {
    opacity: 1;
}

.tc3d-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 1s;
}

.tc3d-slide.is-active .tc3d-overlay {
    opacity: 1;
}

.tc3d-content {
    position: relative;
    padding: 4vmin;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.tc3d-slide.is-active .tc3d-content {
    opacity: 1;
    visibility: visible;
}

.tc3d-content h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
    .tc3d-content h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tc3d-content h3 {
        font-size: 2.25rem;
    }
}

.tc3d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 0 16px;
    height: 48px;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    background-color: var(--color-white);
    border: 1px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.1), 0px 1px 0px 0px rgba(25, 28, 33, 0.02), 0px 0px 0px 1px rgba(25, 28, 33, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tc3d-btn:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* Controles (setas) */
.tc3d-controls {
    position: absolute;
    top: calc(100% + 1rem);
    width: 100%;
    display: flex;
    justify-content: center;
}

.tc3d-control {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    background-color: #E5E5E5;
    color: #525252;
    border: 3px solid transparent;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tc3d-control:hover {
    transform: translateY(-2px);
}

.tc3d-control:active {
    transform: translateY(2px);
}

.tc3d-control:focus-visible {
    border-color: var(--color-secondary);
    outline: none;
}

.tc3d-prev svg {
    transform: rotate(180deg);
}

/* Acessibilidade: sem parallax/transições para movimento reduzido (o JS também desliga o autoplay) */
@media (prefers-reduced-motion: reduce) {
    .tc3d-track,
    .tc3d-slide,
    .tc3d-media,
    .tc3d-content {
        transition: none;
    }
}

/* Dark mode */
[data-theme="dark"] .team-section {
    background-color: #0D1117;
}

[data-theme="dark"] .tc3d-control {
    background-color: #262626;
    color: #E5E5E5;
}

/* ==========================================
   FAIXA DE MARCA — SLOGAN
   ========================================== */
.slogan-band {
    position: relative;
    padding: 88px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-primary-light) 100%);
    overflow: hidden;
}

.slogan-band::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(82, 187, 209, 0.18) 0%, rgba(82, 187, 209, 0) 65%);
    pointer-events: none;
}

.slogan-band-container {
    position: relative;
    text-align: center;
}

.slogan-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--color-secondary);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.slogan-text {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.slogan-text em {
    font-style: normal;
    color: var(--color-secondary);
}

@media (max-width: 640px) {
    .slogan-band {
        padding: 64px 0;
    }
}

/* Dark mode: mantém a faixa escura institucional */
[data-theme="dark"] .slogan-band {
    background: linear-gradient(135deg, #060A14 0%, #0B2347 60%, #123059 100%);
}

/* ==========================================
   GALERIA DE INSTALAÇÕES — FOTO REAL
   ========================================== */
.gallery-photo {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
}

.gallery-photo figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 32px 16px 14px;
    background: linear-gradient(to top, rgba(7, 29, 58, 0.92), rgba(7, 29, 58, 0));
    text-align: center;
}

.gallery-photo figcaption span {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.gallery-photo figcaption p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ==========================================
   RODAPÉ — LOGO SEMPRE CLARO
   (o rodapé tem fundo escuro fixo em qualquer tema,
   então o wordmark "Elétrica Paraná" precisa ser sempre
   a versão branca para manter contraste)
   ========================================== */
.footer-logo .logo-light-only {
    display: none !important;
}

.footer-logo .logo-dark-only {
    display: block !important;
}


/* ==========================================
   RODAPÉ — LINKS DE NAVEGAÇÃO (MAPA DO SITE)
   ========================================== */
.footer-nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-links a:hover {
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================
   PÁGINAS INTERNAS — CABEÇALHO DE PÁGINA
   ========================================== */
.page-hero {
    padding: calc(var(--header-height) + 56px) 0 48px;
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.page-hero h1 {
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin: 0;
}

.page-breadcrumb {
    margin-bottom: 12px;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
    color: var(--color-secondary);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-breadcrumb span {
    margin: 0 6px;
}

[data-theme="dark"] .page-hero {
    background: linear-gradient(180deg, #060A14 0%, #0B2347 100%);
}
