/*
Theme Name: Superescadas Lite
Theme URI: https://superescadas.com.br
Description: Masterclass de UI/UX para Indústria de Escadas: Design System 8pt, Micro-interações 60fps, Zero CLS, WCAG AA e Alta Conversão.
Author: Superescadas Team
Version: 3.0.0
Text Domain: superescadas-lite
*/

/* ==========================================================================
   1. DESIGN SYSTEM & VARIÁVEIS DE COR / TIPOGRAFIA / SOMBRAS
   ========================================================================== */
:root {
    /* Paleta Oficial Harmonizada */
    --brand-blue: #1c2b80;
    --brand-blue-hover: #152266;
    --brand-blue-dark: #0f1747;
    --brand-blue-subtle: #eef2ff;
    
    --brand-red: #ec3237;
    --brand-red-hover: #cf2227;
    --brand-red-subtle: #fef2f2;
    
    --brand-green: #25D366;
    --brand-green-hover: #1eb857;
    
    /* Superfícies & Neutros (Escala Slate de Alta Fidelidade) */
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --border-focus: #1c2b80;
    
    /* Tipografia de Elite */
    --font-heading: 'Noto Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-nav: 'Poppins', sans-serif;
    
    /* Sistema de Sombras Suaves (Elevations) */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 16px 36px rgba(28, 43, 128, 0.12), 0 6px 14px rgba(28, 43, 128, 0.06);
    --shadow-red: 0 8px 24px rgba(236, 50, 55, 0.28);
    --shadow-green: 0 8px 24px rgba(37, 211, 102, 0.35);

    /* Raio de Curvatura & Transições */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --max-width: 1240px;
}

/* ==========================================================================
   2. RESET & BASE (BOX-SIZING, SCROLL-SMOOTH)
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--brand-red);
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.site-container {
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ==========================================================================
   3. HEADER & MEGA MENU (ACABAMENTO PREMIUM COM BACKDROP BLUR)
   ========================================================================== */
#site-header {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-fallback-icon {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    font-family: var(--font-nav);
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.5px;
}

.logo-red { color: var(--brand-red); }
.logo-blue { color: var(--brand-blue); }

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 600;
    padding: 28px 0;
    position: relative;
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width var(--transition-fast);
}

.nav-list > li:hover > a::after,
.nav-list > li.current-menu-item > a::after {
    width: 100%;
}

.nav-list > li:hover > a,
.nav-list > li.current-menu-item > a {
    color: var(--brand-red);
}

.nav-icon {
    color: var(--brand-blue);
    transition: transform var(--transition-fast);
}

.nav-list > li:hover .nav-icon {
    transform: translateY(-2px);
}

/* Mega Menu Azul com Cards Flutuantes */
.has-mega-menu {
    position: static !important;
}

.mega-menu-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #1c2b80 0%, #121c56 100%);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.35);
    border-top: 3px solid var(--brand-red);
    padding: 30px 0;
    z-index: 999;
}

.has-mega-menu:hover .mega-menu-wrapper {
    display: block;
    animation: fadeInMenu 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-menu-grid-blue {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 35px;
}

.mega-card-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition-fast);
}

.mega-card-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.mega-card-img {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.mega-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.mega-card-item:hover .mega-card-img img {
    transform: scale(1.1);
}

.mega-card-label {
    color: #ffffff !important;
    font-family: var(--font-nav);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Botão Mobile Oculto no Desktop */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-main);
    padding: 8px;
}


/* ==========================================================================
   4. HERO SECTION (BANNER PRINCIPAL)
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #152060 100%);
    padding: 70px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 50, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 35px;
}

/* Botões com Micro-interações */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--brand-red) 0%, #d82328 100%);
    color: #ffffff !important;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-red);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-hero:hover {
    background: linear-gradient(180deg, var(--brand-red-hover) 0%, #b81c20 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(236, 50, 55, 0.4);
}

.btn-hero:active {
    transform: translateY(0);
}

/* ==========================================================================
   5. GRID DE PRODUTOS & CARDS EM ALTA FIDELIDADE
   ========================================================================== */
.products-section {
    padding: 70px 0;
}

.product-category-block {
    margin-bottom: 70px;
}

.category-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-heading::before {
    content: '';
    width: 6px;
    height: 24px;
    background: var(--brand-red);
    border-radius: 3px;
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-hover);
}

.product-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-thumb {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    background: #f8fafc;
    border-radius: var(--radius-sm);
}

.card-thumb img {
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .card-thumb img {
    transform: scale(1.08);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.4;
    margin-top: auto;
    transition: color var(--transition-fast);
}

.product-card:hover .card-title {
    color: var(--brand-red);
}

.card-cta-link {
    display: inline-block;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-red);
    transition: all 0.2s ease;
}

.product-card:hover .card-cta-link {
    color: var(--brand-blue);
    transform: translateX(3px);
}


/* ==========================================================================
   6. SUPER ESCADAS EM NÚMEROS (CONTADOR COM CÍRCULOS VIBRANTES)
   ========================================================================== */
.stats-section {
    background: linear-gradient(180deg, #1c2b80 0%, #101744 100%);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.stats-main-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-prefix {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-circle {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    border: 4px solid var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 25px rgba(236, 50, 55, 0.3), inset 0 0 15px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    transition: transform var(--transition-bounce), box-shadow 0.3s ease;
}

.stat-item:hover .stat-circle {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(236, 50, 55, 0.6), inset 0 0 25px rgba(0,0,0,0.5);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

/* ==========================================================================
   7. SINGLE PRODUCT: EXPERIÊNCIA DE COMPRA E COTAÇÃO
   ========================================================================== */
.single-product-page {
    background-color: var(--bg-page);
}

.product-top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
}

.product-breadcrumb {
    font-size: 13.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-breadcrumb a {
    color: var(--brand-blue);
    font-weight: 600;
}

.product-header-section {
    background: #ffffff;
    padding: 35px 0;
    border-bottom: 1px solid var(--border-light);
}

.product-badge {
    display: inline-block;
    background: var(--brand-blue-subtle);
    color: var(--brand-blue);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

.product-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--brand-blue);
    font-weight: 800;
    line-height: 1.25;
}

.product-body-section {
    padding: 40px 0 60px 0;
}

.product-layout-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 45px;
    align-items: start;
}

.product-gallery-col {
    position: sticky;
    top: 100px;
}

.product-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-featured-img {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.product-featured-img img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.product-featured-img:hover img {
    transform: scale(1.03);
}

.product-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.thumb-item {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 6px;
    background: #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.thumb-item:hover {
    border-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.product-highlights-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-top: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hl-icon {
    font-size: 22px;
    background: #f1f5f9;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item strong {
    font-size: 14px;
    color: var(--brand-blue);
    display: block;
}

.highlight-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Tipografia e Especificações */
.product-entry-content h1,
.product-entry-content h2,
.product-entry-content h3 {
    font-family: var(--font-heading);
    color: var(--brand-blue);
    font-weight: 800;
}

.product-entry-content h2 {
    font-size: 21px;
    margin: 35px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.product-entry-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 18px;
}

.product-entry-content ul {
    margin: 15px 0 25px 25px;
    color: var(--text-body);
    line-height: 1.8;
}

/* Tabela Técnica de Medidas */
.tablepress,
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.tablepress th,
table th {
    background: var(--brand-blue);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tablepress td,
table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
    font-size: 14.5px;
}

.tablepress tr:last-child td,
table tr:last-child td {
    border-bottom: none;
}

.tablepress tr:nth-child(even),
table tr:nth-child(even) {
    background-color: #f8fafc;
}

.tablepress tr:hover,
table tr:hover {
    background-color: #eff6ff;
}

/* Card CTA de Conversão */
.product-cta-card {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #152060 100%);
    border-radius: var(--radius-lg);
    padding: 30px 35px;
    color: #ffffff;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.cta-card-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.cta-card-content p {
    font-size: 15px;
    color: #cbd5e1;
    margin: 0;
}

.cta-card-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-whatsapp-product {
    display: inline-flex;
    align-items: center;
    background-color: var(--brand-green);
    color: #ffffff !important;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-green);
    transition: all var(--transition-fast);
}

.btn-whatsapp-product:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   8. FORMULÁRIO DE COTAÇÃO ELEGANTE (LEAD MAGNET)
   ========================================================================== */
.quote-form-section {
    background-color: #f1f5f9;
    padding: 70px 0;
    border-top: 1px solid var(--border-light);
}

.quote-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 45px 50px;
    box-shadow: var(--shadow-lg);
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.quote-header {
    text-align: center;
    margin-bottom: 35px;
}

.quote-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 10px;
}

.quote-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    width: 100%;
    outline: none;
    transition: all var(--transition-fast);
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(28, 43, 128, 0.12);
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-submit-quote {
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* ==========================================================================
   9. BOTÃO FLUTUANTE WHATSAPP & FOOTER
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--brand-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    z-index: 9999;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    background: var(--brand-green-hover);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

#site-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 30px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--brand-red);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-about p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
}

.contact-list a {
    color: #e2e8f0;
    font-weight: 600;
}

.contact-list a:hover {
    color: var(--brand-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* ==========================================================================
   10. REMOÇÕES WOOCOMMERCE & CLEANUP DE PRODUTO
   ========================================================================== */
.price,
.woocommerce-Price-amount,
p.price,
span.price,
.single_add_to_cart_button,
.woocommerce-variation-price,
.woocommerce-product-details__short-description .price,
.product-info-col .woocommerce-product-gallery,
.product-info-col .woocommerce-product-gallery__wrapper,
.product-info-col .et_pb_wc_images,
.product-info-col .summary.entry-summary,
.product-info-col .woocommerce-product-details__short-description,
.product-info-col .product_meta,
.woocommerce-tabs ul.tabs,
.wc-tabs,
.woocommerce-tabs h2:first-of-type,
.related.products {
    display: none !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Card Moderno para Conteúdo do Produto */
.product-entry-content {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px 40px;
    box-shadow: var(--shadow-md);
}




/* ==========================================================================
   11. RESPONSIVIDADE COMPLETA (MOBILE-FIRST)
   ========================================================================== */
@media (max-width: 1024px) {
    .mega-menu-grid-blue {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-columns {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: var(--text-main);
    }
    .header-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: var(--shadow-lg);
    }
    .header-nav.is-active {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .has-mega-menu:hover .mega-menu-wrapper {
        position: static;
        box-shadow: none;
        border-top: none;
        padding: 10px 0;
    }
    .mega-menu-grid-blue {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-gallery-col {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    .product-cta-card {
        flex-direction: column;
        text-align: center;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .product-card {
        padding: 14px !important;
    }
    .card-thumb {
        height: 150px !important;
        margin-bottom: 12px !important;
    }
    .card-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    .card-cta-link {
        font-size: 11.5px !important;
        margin-top: 8px !important;
        padding-top: 6px !important;
    }
    .products-section {
        padding: 40px 0 !important;
    }
    .category-heading {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    .product-header-section {
        padding: 30px 0 20px 0 !important;
    }
    .product-main-title {
        font-size: 22px !important;
    }
    .contact-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 420px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .card-thumb {
        height: 200px !important;
    }
    .card-title {
        font-size: 14.5px !important;
    }
}


/* 12. Estilos de Páginas de Contato & Layout de Formulários */
.contact-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-blue);
}

.cic-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--brand-blue-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.cic-text h3 {
    font-size: 16px;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.cic-text p {
    font-size: 15px;
    color: var(--text-body);
    margin: 0;
    font-weight: 600;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.cf-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 8px;
}

.cf-header p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-location-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.clc-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-location-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-location-card h4 {
    font-size: 16px;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-location-card p {
    color: var(--text-body);
    font-size: 14.5px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .contact-grid-3 {
        grid-template-columns: 1fr;
    }
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    .contact-sidebar {
        position: static;
    }
}

