/* Liquida Natal 2020 - Design Festivo e Vibrante 🎄🎅 */
/* Design Super Atrativo com Animações Natalinas e Cores Vibrantes */

:root {
    --christmas-red: #dc2626;
    --christmas-green: #16a34a;
    --gold: #fbbf24;
    --bright-red: #ef4444;
    --bright-gold: #fcd34d;
    --deep-red: #991b1b;
    --forest-green: #14532d;
    --snow-white: #ffffff;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    --background-light: #fef3c7;
    --background-white: #FFFFFF;
    
    --shadow-sm: 0 2px 10px rgba(220, 38, 38, 0.15);
    --shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
    --shadow-hover: 0 20px 60px rgba(239, 68, 68, 0.4);
    --shadow-glow: 0 0 50px rgba(251, 191, 36, 0.6);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%, #fef9c3 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de Neve Flutuante */
body::before {
    content: '❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄';
    position: fixed;
    top: -50px;
    left: 0;
    right: 0;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    animation: snowfall 10s linear infinite;
    pointer-events: none;
    z-index: 1000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes snowfall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--christmas-red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    color: var(--christmas-red);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--bright-red);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animações Festivas */
@keyframes blink-christmas {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shake-gift {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes glow-pulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.5),
                    0 10px 40px rgba(220, 38, 38, 0.3);
    }
    50% { 
        box-shadow: 0 0 60px rgba(251, 191, 36, 0.8),
                    0 15px 60px rgba(220, 38, 38, 0.5);
    }
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

@keyframes rainbow-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header Festivo */
.header {
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-green));
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--gold);
    animation: blink-christmas 3s ease-in-out infinite;
}

.header::after {
    content: '🎄 🎁 🎅 ⭐ 🔔 🎄 🎁 🎅 ⭐ 🔔';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    font-size: 1.2rem;
    text-align: center;
    background: var(--gold);
    padding: 2px 0;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
    width: 200%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow-pulse 2s ease-in-out infinite;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo p {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    color: var(--text-light);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.nav a:hover::before {
    opacity: 1;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--gold);
}

.nav a:hover::after,
.nav a.active::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--gold);
}

/* Hero Section - SUPER Festivo */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        var(--deep-red) 0%,
        var(--christmas-red) 25%,
        var(--bright-red) 50%,
        var(--gold) 75%,
        var(--bright-gold) 100%);
    background-size: 400% 400%;
    animation: rainbow-shift 15s ease infinite;
    color: var(--text-light);
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '🎄';
    position: absolute;
    top: 5%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.1;
    animation: float-bounce 5s ease-in-out infinite;
}

.hero::after {
    content: '🎅';
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.1;
    animation: shake-gift 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    animation: zoom-in 0.8s ease-out;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8),
                 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    animation: glow-pulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 3px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 150px;
}

.highlight:hover {
    transform: translateY(-10px) scale(1.1) rotate(2deg);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.8);
    border-color: var(--snow-white);
}

.highlight-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Countdown - Espetacular */
.countdown {
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    backdrop-filter: blur(15px);
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.5);
}

.countdown h3 {
    margin-bottom: 1.5rem;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-block {
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    color: var(--deep-red);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    transition: all 0.3s ease;
    border: 3px solid var(--christmas-red);
}

.time-block:hover {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.8);
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.time-label {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Ultra Chamativos */
.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: ticker 2s linear infinite;
}

.btn::after {
    content: '✨';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: ticker 2s linear infinite reverse;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    color: var(--deep-red);
    border: 3px solid var(--christmas-red);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.6);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 60px rgba(251, 191, 36, 1),
                0 20px 60px rgba(239, 68, 68, 0.6);
    animation: shake-gift 0.5s ease-in-out;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: 3px solid var(--snow-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--snow-white);
    color: var(--christmas-red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.8);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section h2::after {
    content: '🎁';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: float-bounce 3s ease-in-out infinite;
}

.section > .container > p {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 2.5rem auto 0;
    font-weight: 600;
}

.ofertas {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%, #fef9c3 100%);
    position: relative;
}

.ofertas::before {
    content: '⭐';
    position: absolute;
    top: 5%;
    left: 5%;
    font-size: 8rem;
    opacity: 0.1;
    animation: float-bounce 6s ease-in-out infinite;
}

.lojas {
    background: var(--background-white);
}

.regulamento {
    background: linear-gradient(135deg, #fde68a 0%, #fef3c7 100%);
}

.contact {
    background: linear-gradient(135deg, var(--christmas-red), var(--deep-red));
    color: var(--text-light);
}

.content-section {
    background: var(--background-white);
    padding: 5rem 0;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.content-section h3 {
    margin: 3rem 0 1.5rem 0;
    font-size: 2rem;
}

.content-section p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.9;
}

.content-section ul,
.content-section ol {
    margin: 1.5rem 0 2.5rem 2.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Ofertas Grid - IMPACTANTE */
.ofertas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.oferta-card {
    background: var(--background-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
}

.oferta-card:hover {
    transform: translateY(-15px) scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.oferta-card.destaque {
    border-color: var(--christmas-red);
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.5);
    animation: glow-pulse 2s ease-in-out infinite;
}

.oferta-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--christmas-red), var(--bright-red));
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.5);
    z-index: 2;
    animation: shake-gift 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oferta-imagem {
    height: 250px;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.oferta-imagem::before {
    content: '🎁';
    font-size: 10rem;
    opacity: 0.2;
    position: absolute;
    animation: float-bounce 4s ease-in-out infinite;
}

.oferta-content {
    padding: 2.5rem;
}

.oferta-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.oferta-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.oferta-precos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.preco-antigo {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.3rem;
    opacity: 0.7;
}

.preco-novo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Lojas Section */
.lojas-filtros {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filtro-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 3px solid var(--gold);
    color: var(--deep-red);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.loja-card {
    background: var(--background-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid rgba(251, 191, 36, 0.2);
}

.loja-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.loja-imagem {
    height: 180px;
    background: linear-gradient(135deg, var(--christmas-green), var(--forest-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.3rem;
    position: relative;
}

.loja-imagem::before {
    content: '🏪';
    font-size: 5rem;
    opacity: 0.2;
    position: absolute;
}

.loja-content {
    padding: 2rem;
}

.loja-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.loja-content p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.loja-oferta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    color: var(--deep-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 900;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lojas-cta {
    text-align: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 3.5rem;
    border-radius: 25px;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow);
}

.lojas-cta h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.lojas-cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Regulamento Section */
.regulamento-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.regulamento-item {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--christmas-red);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.regulamento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--gold);
}

.regulamento-item h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.regulamento-item p,
.regulamento-item li {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.regulamento-item ul {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.regulamento-item li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.regulamento-item li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.regulamento-download {
    text-align: center;
    margin-top: 4rem;
}

/* Contact Section */
.contact h2,
.contact h3 {
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.contact-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: glow-pulse 2s ease-in-out infinite;
    border: 3px solid var(--gold);
}

.whatsapp-btn:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 0 60px rgba(37, 211, 102, 1);
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-red), var(--christmas-red));
    color: var(--text-light);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '🎄 🎁 🎅 ⭐ 🔔';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    animation: float-bounce 5s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 2px solid rgba(251, 191, 36, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom a {
    color: var(--gold);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .countdown-timer {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .countdown-timer {
        flex-direction: column;
        gap: 1rem;
    }

    .time-block {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .ofertas-grid,
    .lojas-grid,
    .regulamento-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section h2 {
        font-size: 2.2rem;
    }
    
    .lojas-filtros {
        flex-direction: column;
        align-items: center;
    }

    .filtro-btn {
        width: 100%;
        max-width: 250px;
    }
}
