/* ===============================================
   TUDO EVENTOS - CSS SIMPLIFICADO
   Versão One-Page Otimizada
   =============================================== */

/* ========== RESET & VARIÁVEIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ========================================
       PALETAS DE CORES - ESCOLHA UMA!
       Descomente apenas UMA seção de cada vez
       ======================================== */
    
    /* OPÇÃO 1: AZUL ESCURO DOMINANTE (Tecnológico) */
    --primary-color: #1a2332;
    --primary-light: #2d3e50;
    --primary-dark: #0d1b2a;
    --secondary-color: #3d5a80;
    --accent-color: #4a90e2;
    
    /* OPÇÃO 2: PRETO COM ACENTOS AZUIS (Premium/Elegante) */
    /* --primary-color: #0a0e27;
    --primary-light: #1a1d3a;
    --primary-dark: #000000;
    --secondary-color: #1e2749;
    --accent-color: #3d5a80; */
    
    /* OPÇÃO 3: GRADIENTE AZUL→PRETO (Moderno/Sofisticado) */
   /* --primary-color: #0d1b2a;
    --primary-light: #1a2f45;
    --primary-dark: #000000;
    --secondary-color: #1e3a5f;
    --accent-color: #2d5a8c; */
    
    /* OPÇÃO 4: MIX EQUILIBRADO (Versátil) */
    /* --primary-color: #1a1d3a;
    --primary-light: #2d3e50;
    --primary-dark: #0a0e27;
    --secondary-color: #0d1b2a;
    --accent-color: #3d5a80; */
    
    /* Cores Fixas */
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    
    /* WhatsApp */
    --whatsapp-color: #25D366;
    
    /* Tipografia */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras (ajustadas para cores escuras) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(13, 27, 42, 0.4);
    
    /* Transições */
    --transition: all 0.3s ease;
}

/* ========== ESTILOS GLOBAIS ========== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container expandido para seção de orçamento */
.orcamento .container {
    max-width: 1600px;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== TIPOGRAFIA ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: 1.25rem; }

/* ========== BOTÕES ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 
                0 0 50px rgba(0, 150, 255, 0.4),
                var(--shadow-md);
    animation: breathe 3s ease-in-out infinite, shineEffect 3s linear infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5), 
                0 0 70px rgba(0, 200, 255, 0.6),
                var(--shadow-glow);
    animation: breathe 3s ease-in-out infinite, pulseLightHover 1.5s ease-in-out infinite, shineEffect 2s linear infinite;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulseLightHover {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 
                    0 0 60px rgba(0, 200, 255, 0.5),
                    var(--shadow-glow);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 
                    0 0 100px rgba(0, 200, 255, 0.8),
                    var(--shadow-glow);
    }
}

@keyframes shineEffect {
    0% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 
                    0 0 50px rgba(0, 150, 255, 0.4),
                    var(--shadow-md);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.6), 
                    0 0 80px rgba(0, 200, 255, 0.7),
                    0 0 120px rgba(255, 255, 255, 0.3),
                    var(--shadow-lg);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 
                    0 0 50px rgba(0, 150, 255, 0.4),
                    var(--shadow-md);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.btn-secondary {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #128C7E, #0f7a6e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-clear {
    background: #dc3545;
    color: var(--white);
}

.btn-clear:hover {
    background: #c82333;
}

/* ========== HEADER & NAVEGAÇÃO ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.scroll-header {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 120px;
    gap: 3rem;
    padding-left: 6rem;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    margin-right: 3rem;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: auto;
    height: 90px;
    max-width: 260px;
    object-fit: contain;
    filter: brightness(0.3) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 25%, #0d1b2a 50%, #000000 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 80, 200, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 102, 255, 0.03) 2px,
            rgba(0, 102, 255, 0.03) 4px
        );
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(0, 102, 255, 0.5),
        0 0 40px rgba(0, 102, 255, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.8);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(0, 102, 255, 0.5),
            0 0 40px rgba(0, 102, 255, 0.3),
            0 2px 10px rgba(0, 0, 0, 0.8);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(0, 150, 255, 0.8),
            0 0 60px rgba(0, 150, 255, 0.5),
            0 2px 10px rgba(0, 0, 0, 0.8);
    }
}

.hero-title .highlight {
    color: #00d4ff;
    background: linear-gradient(135deg, #00d4ff, #0096ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: highlightShift 3s ease infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.6));
}

@keyframes highlightShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== CARROSSEL DE FOTOS DO HERO ========== */
.hero-gallery {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade do Hero Gallery */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-gallery {
        max-width: 350px;
    }
    
    .gallery-slideshow {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-gallery {
        max-width: 100%;
    }
    
    .gallery-slideshow {
        height: 300px;
    }
}

/* ========== SECTIONS COMUNS ========== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    font-weight: 400;
    margin-top: 1.5rem;
}

/* ========== SERVIÇOS ========== */
.servicos {
    background: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.servico-card-link {
    cursor: pointer;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.servico-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
    border-color: var(--primary-color);
}

.servico-card:hover::before {
    opacity: 0.05;
}

.servico-card > * {
    position: relative;
    z-index: 1;
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.servico-card:hover .servico-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5);
    animation: flipContinuous 2.5s linear infinite;
}

@keyframes flipContinuous {
    from {
        transform: scale(1.1) rotateY(0deg);
    }
    to {
        transform: scale(1.1) rotateY(360deg);
    }
}

.servico-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.servico-card p {
    color: var(--gray);
    line-height: 1.8;
}

.servico-cta {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.servico-card:hover .servico-cta {
    opacity: 1;
    transform: translateY(0);
}

.servico-cta i {
    transition: transform 0.3s ease;
}

.servico-card:hover .servico-cta i {
    transform: translateX(5px);
}

/* ========== SOBRE ========== */
.sobre {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-text p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.sobre-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ========== CTA WHATSAPP ========== */
.cta-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-whatsapp h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-whatsapp p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========== ORÇAMENTO ========== */
.orcamento {
    background: var(--white);
}

.orcamento-form-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.required {
    color: #dc3545;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

textarea {
    resize: vertical;
}

/* ========== CATÁLOGO DE PRODUTOS ========== */
.produtos-catalogo {
    margin-bottom: 3rem;
}

.catalogo-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.catalogo-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.catalogo-title::before {
    content: '📦';
    margin-right: 0.5rem;
}

.categoria-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(248, 249, 250, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.08);
    transition: all 0.4s ease;
}

.categoria-section:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.8));
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.12);
    transform: translateY(-3px);
}

.categoria-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.categoria-toggle {
    background: transparent;
    color: var(--gray);
    border: 2px solid var(--gray-light);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.categoria-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.05);
}

.categoria-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.categoria-toggle .fa-chevron-down {
    display: none;
}

.categoria-section.collapsed .categoria-toggle {
    opacity: 1;
    background: var(--gray-light);
    color: var(--primary-color);
}

.categoria-section.collapsed .categoria-toggle .fa-chevron-up {
    display: none;
}

.categoria-section.collapsed .categoria-toggle .fa-chevron-down {
    display: inline-block;
}

.categoria-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.categoria-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: width 0.6s ease;
}

.categoria-section:hover .categoria-title::before {
    width: 200px;
}

/* Botão Ver Mais/Menos */
.ver-mais-container {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px dashed rgba(0, 102, 255, 0.2);
}

.btn-ver-mais {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ver-mais:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-ver-mais i {
    transition: transform 0.3s ease;
}

.btn-ver-mais:hover i {
    transform: translateY(3px);
}

.btn-ver-mais.expandido i {
    transform: rotate(180deg);
}

.btn-ver-mais.expandido:hover i {
    transform: rotate(180deg) translateY(-3px);
}

/* Produtos ocultos inicialmente */
.produto-card.oculto {
    display: none;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    max-height: 10000px;
    overflow: visible;
}

.categoria-section.collapsed .produtos-grid {
    max-height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
}

.categoria-section.collapsed .ver-mais-container {
    display: none;
}

/* Responsividade para telas grandes */
@media (max-width: 1400px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

.produto-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.produto-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 126, 0.05));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.produto-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.25);
    border-color: var(--primary-color);
}

.produto-card:hover::after {
    opacity: 1;
}

.produto-imagem {
    height: 220px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.produto-imagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 126, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.produto-card:hover .produto-imagem::before {
    opacity: 1;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.15);
}

.produto-info {
    padding: 1.25rem;
}

.produto-nome {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.produto-card:hover .produto-nome {
    color: var(--primary-color);
}

.produto-descricao {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.produto-actions {
    padding: 0 1.25rem 1.25rem;
}

.quantidade-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(0, 212, 126, 0.03));
    border-radius: 12px;
    transition: background 0.3s ease;
}

.produto-card:hover .quantidade-control {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 126, 0.08));
}

.btn-adicionar-carrinho {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-adicionar-carrinho:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-adicionar-carrinho:disabled {
    background: var(--gray-light);
    color: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-adicionar-carrinho i {
    font-size: 1.1rem;
}

.btn-qty {
    width: 36px;
    height: 36px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}

.btn-qty:hover {
    background: linear-gradient(135deg, #0052cc, var(--secondary-color));
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.btn-qty:active {
    transform: scale(0.95);
}

.input-qty {
    width: 70px;
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid var(--gray-light);
    padding: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.input-qty:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    outline: none;
}

/* ========== CARRINHO LATERAL FIXO (DESKTOP) ========== */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 120px;
    width: 380px;
    height: calc(100vh - 120px);
    background: var(--white);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 900;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.cart-sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--gray);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
    animation: slideInRight 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cart-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
    transform: translateX(-5px);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #dc3545;
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.cart-sidebar-footer {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-top: 2px solid var(--gray-light);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-btn-primary {
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cart-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cart-btn-secondary {
    background: transparent;
    color: #dc3545;
    padding: 0.75rem;
    border: 2px solid #dc3545;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-btn-secondary:hover {
    background: #dc3545;
    color: var(--white);
}

/* Mini Aba Lateral (Desktop) */
.cart-mini-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem 0.75rem;
    border-radius: 12px 0 0 12px;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cart-mini-tab:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: var(--shadow-lg);
}

.cart-mini-tab.hidden {
    display: none;
}

.cart-mini-icon {
    font-size: 1.75rem;
    animation: pulse 2s ease-in-out infinite;
}

.cart-mini-count {
    background: #dc3545;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 3px solid var(--white);
    animation: bounceIn 0.5s ease;
}

.cart-mini-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

@keyframes bounceIn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ========== STICKY BOTTOM BAR (MOBILE) ========== */
.cart-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: slideInUp 0.4s ease;
}

.cart-bottom-bar.active {
    display: block;
}

.cart-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-bottom-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.cart-bottom-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.cart-bottom-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cart-bottom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ========== NOTIFICAÇÕES TOAST ========== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    animation: slideInRight 0.4s ease;
    border-left: 4px solid var(--secondary-color);
}

.toast.success {
    border-left-color: var(--secondary-color);
}

.toast.error {
    border-left-color: #dc3545;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast.success .toast-icon {
    color: var(--secondary-color);
}

.toast.error .toast-icon {
    color: #dc3545;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--gray);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESUMO DO PEDIDO (FALLBACK) ========== */
.pedido-resumo {
    display: none; /* Ocultar versão antiga */
}

.resumo-nome {
    font-weight: 600;
    color: var(--dark-color);
    flex: 1;
}

.resumo-qtd {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.3);
    min-width: 60px;
    text-align: center;
}

/* ========== AÇÕES DO ORÇAMENTO ========== */
.orcamento-actions {
    text-align: center;
}

.help-text {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.help-text i {
    color: var(--primary-color);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ========== MODAL DE IMAGEM AMPLIADA ========== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.image-modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.image-modal-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.1rem;
    padding: 1rem;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Cursor pointer nas imagens clicáveis */
.produto-card img {
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.produto-card img:hover {
    transform: scale(1.05);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.4s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Animação slideOutRight para toast */
@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Responsividade do carrinho */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-mini-tab {
        display: none;
    }
    
    .cart-bottom-bar {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========== ANIMAÇÕES ========== */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 968px) {
    /* Navegação Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s;
    }
    
    .show-menu {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-toggle,
    .nav-close {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Sobre */
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Produtos */
    .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    section {
        padding: 60px 0;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .orcamento-form-container {
        padding: 1.5rem;
    }
}

/* ===============================================
   MELHORIAS DE CONVERSÃO E INTERATIVIDADE
   =============================================== */

/* ========== 1. BADGES DE PRODUTO ========== */
.produto-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.produto-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
}

.produto-badge.popular::before {
    content: "🔥 ";
}

.produto-badge.disponivel {
    background: linear-gradient(135deg, #00d47e, #00b894);
}

.produto-badge.disponivel::before {
    content: "✓ ";
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========== 2. BOTÃO DETALHES DO PRODUTO ========== */
.produto-btn-detalhes {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.produto-btn-detalhes:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modal de Detalhes */
.produto-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.produto-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideInDown 0.4s ease;
}

.produto-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.produto-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.produto-modal-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: var(--light-color);
}

.produto-modal-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.produto-modal-desc {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== 3. ANIMAÇÃO PULSO NO CARRINHO ========== */
.cart-mini-tab.pulse {
    animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    25% { transform: translateY(-50%) scale(1.15); }
    50% { transform: translateY(-50%) scale(1.05); }
    75% { transform: translateY(-50%) scale(1.1); }
}

.cart-mini-count.pulse {
    animation: countPulse 0.5s ease;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

/* ========== 6. BUSCA E FILTROS ========== */
.busca-filtros {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.busca-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.busca-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.busca-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 27, 42, 0.1);
}

.busca-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.busca-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.filtros-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filtro-label {
    font-weight: 600;
    color: var(--dark-color);
}

.filtro-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filtro-reset {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filtro-reset:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========== 9. FAQ ACCORDION ========== */
.faq-section {
    background: var(--white);
    padding: 4rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-item {
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ========== 11. MICRO INTERAÇÕES ========== */
.btn-microinteracao {
    position: relative;
    overflow: hidden;
}

.btn-microinteracao::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-microinteracao:active::before {
    width: 300px;
    height: 300px;
}

.produto-card.adicionado {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ========== 12. PROGRESS BAR FORMULÁRIO ========== */
.form-progress {
    width: 100%;
    background: var(--gray-light);
    height: 8px;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
    border-radius: 10px;
    width: 33%;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.form-step {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    position: relative;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-step.active {
    color: var(--primary-color);
}

.form-step.completed {
    color: var(--secondary-color);
}

/* ========== 13. POP-UP CUPOM ========== */
.cupom-popup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.4);
    z-index: 9999;
    max-width: 350px;
    animation: slideInRight 0.5s ease;
}

.cupom-popup.active {
    display: block;
}

.cupom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cupom-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cupom-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cupom-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cupom-desconto {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.cupom-texto {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cupom-codigo {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cupom-btn {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    color: #ff4757;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cupom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ========== 14. TEMPORIZADOR DISPONIBILIDADE ========== */
.produto-disponibilidade {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid #ff6b35;
    border-radius: 4px;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 600;
}

.produto-disponibilidade i {
    animation: blink 1.5s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========== GATILHOS MENTAIS ========== */
.gatilhos-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
}

.gatilhos-banner h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.gatilhos-lista {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.gatilho-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.gatilho-item i {
    font-size: 1.5rem;
}

/* ========== 15. POP-UP INTENÇÃO DE SAÍDA ========== */
.exit-intent-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}

.exit-intent-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-intent-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-intent-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.exit-intent-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-intent-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.exit-intent-desconto {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.exit-intent-texto {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.exit-intent-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--whatsapp-color), #128C7E);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.exit-intent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.exit-intent-nao-obrigado {
    color: var(--gray);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.exit-intent-nao-obrigado:hover {
    color: var(--primary-color);
}

/* ========== RESPONSIVIDADE MELHORIAS ========== */
@media (max-width: 768px) {
    .busca-container {
        flex-direction: column;
    }
    
    .filtros-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cupom-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    .gatilhos-lista {
        flex-direction: column;
        gap: 1rem;
    }
    
    .exit-intent-content {
        padding: 2rem;
    }
    
    .form-steps {
        font-size: 0.75rem;
    }
}