/* ============================================
   PUDIM MERECIDO - Editorial Gourmet Design
   Modern, Sophisticated Landing Page
   ============================================ */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Color Palette - Warm Editorial */
    --caramel-dark: #8B5A2B;
    --caramel: #C68A3A;
    --caramel-light: #D4A574;
    --cream: #FFF8F0;
    --cream-dark: #F5E6D3;
    --chocolate: #3E2723;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;

    /* Discount Feature */
    --discount-banner-bg: #FFB347;
    --discount-accent: #D4AF37;
    --discount-text-dark: #2C1810;
    --discount-modal-overlay: rgba(62, 39, 35, 0.85);
    --discount-modal-bg: #FFFFFF;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Crimson Pro', serif;
    --font-accent: 'Libre Baskerville', serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(139, 90, 43, 0.08);
    --shadow-md: 0 4px 16px rgba(139, 90, 43, 0.12);
    --shadow-lg: 0 12px 40px rgba(139, 90, 43, 0.18);
    --shadow-xl: 0 20px 60px rgba(139, 90, 43, 0.25);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--chocolate);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeInDown 0.6s ease-out;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(139, 90, 43, 0.15));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.logo h1 {
    font-size: 1.75rem;
    color: var(--caramel-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: var(--space-lg);
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.nav a {
    color: var(--chocolate);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--caramel);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
    color: var(--caramel);
}

.nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .nav a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 48px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .nav {
        gap: var(--space-sm);
    }

    .nav a {
        font-size: 0.9rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 138, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(198, 138, 58, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(198, 138, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

.hero-content {
    padding-left: var(--space-lg);
    animation: fadeInLeft 0.8s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--chocolate);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--caramel-dark);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.5s both;
}

.hero-pudim {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(var(--shadow-xl));
    animation: pudimFloat 6s ease-in-out infinite;
}

@keyframes pudimFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: var(--space-xl) 0;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: var(--space-lg) 0;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .btn,
    .btn-large {
        width: 100%;
        max-width: 340px;
        padding: 0.95rem 1.4rem;
        font-size: 1rem;
        text-align: center;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--caramel) 0%, var(--caramel-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: transparent;
    color: var(--caramel-dark);
    border-color: var(--caramel);
}

.btn-secondary:hover {
    background: var(--caramel);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
    background: linear-gradient(135deg, var(--cream-dark) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: var(--space-sm) var(--space-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(139, 90, 43, 0.2);
    animation: slideInDown 0.8s ease-out 0.6s both;
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 90, 43, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.discount-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.discount-banner:hover {
    background: linear-gradient(135deg, var(--cream-dark) 0%, rgba(212, 175, 55, 0.08) 100%);
    box-shadow: inset 0 0 30px rgba(139, 90, 43, 0.05);
}

.discount-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: center;
    position: relative;
    z-index: 1;
}

.discount-badge {
    text-align: left;
    animation: fadeInLeft 0.8s ease-out 0.8s both;
}

.badge-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--caramel);
    letter-spacing: 0.12em;
    font-weight: 400;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.badge-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 4vw, 2rem);
    color: var(--caramel-dark);
    font-weight: 600;
    line-height: 1.15;
    margin: 0.4rem 0;
    letter-spacing: -0.02em;
    text-shadow: none;
}

.badge-subtitle {
    font-size: 0.9rem;
    color: var(--chocolate);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.01em;
    opacity: 0.8;
}

.discount-decoration {
    position: relative;
    height: 100px;
    animation: fadeInRight 0.8s ease-out 0.9s both;
}

.discount-decoration svg {
    width: 100%;
    height: 100%;
    color: var(--caramel-light);
    opacity: 0.2;
    filter: none;
}

/* Responsive adjustments for discount banner */
@media (max-width: 1024px) {
    .discount-banner-inner {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .discount-decoration {
        height: 80px;
        opacity: 0.4;
    }
}

@media (max-width: 640px) {
    .discount-banner {
        padding: var(--space-sm) var(--space-md);
    }

    .discount-badge {
        text-align: center;
    }

    .badge-label {
        font-size: 0.7rem;
    }

    .badge-subtitle {
        font-size: 0.85rem;
    }

    .discount-decoration {
        display: none;
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--chocolate);
    text-align: center;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--space-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--caramel), transparent);
}

.section-description {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--caramel-dark);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    font-weight: 300;
    line-height: 1.7;
}

/* ===== PRODUCT SECTION ===== */
.produto {
    padding: var(--space-2xl) 0;
    background: var(--white);
    position: relative;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 90, 43, 0.1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-md);
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.1) rotate(5deg);
}

.feature h3 {
    font-size: 1.5rem;
    color: var(--chocolate);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.feature p {
    color: var(--caramel-dark);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .produto {
        padding: var(--space-xl) 0;
    }

    .feature {
        padding: var(--space-lg) var(--space-md);
    }
}

/* ===== BENEFITS SECTION ===== */
.beneficios {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.benefit {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.benefit:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--caramel-light);
}

.benefit-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.benefit h3 {
    font-size: 1.75rem;
    color: var(--chocolate);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.benefit p {
    color: var(--caramel-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .beneficios {
        padding: var(--space-xl) 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .benefit {
        padding: var(--space-lg);
    }
}

/* ===== GALLERY SECTION ===== */
.galeria {
    padding: var(--space-2xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.galeria::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 138, 58, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gallery-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.gallery-item p {
    text-align: center;
    color: var(--caramel-dark);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* Gallery responsive adjustments */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .galeria {
        padding: var(--space-xl) 0;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.depoimentos {
    padding: var(--space-2xl) 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 138, 58, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.testimonial {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 90, 43, 0.08);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    font-size: 6rem;
    font-family: var(--font-display);
    color: var(--caramel-light);
    opacity: 0.15;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--caramel-light);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    letter-spacing: 0.2em;
    filter: grayscale(0.2);
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--caramel-dark);
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: var(--space-md);
    font-weight: 600;
    color: var(--chocolate);
    font-size: 1rem;
    font-family: var(--font-accent);
}

/* Testimonials responsive */
@media (max-width: 768px) {
    .depoimentos {
        padding: var(--space-xl) 0;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .testimonial {
        padding: var(--space-lg);
    }

    .testimonial::before {
        font-size: 4rem;
        top: var(--space-md);
        left: var(--space-md);
    }
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: var(--space-2xl) 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(198, 138, 58, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--chocolate) 0%, #2C1810 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite alternate;
}

.cta-final .section-title {
    color: var(--white);
}

.cta-final .section-title::after {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-box {
    margin: var(--space-xl) auto;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    max-width: 500px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.price-label {
    font-size: 1.2rem;
    color: var(--caramel-light);
    margin-bottom: var(--space-xs);
    font-weight: 400;
}

.price {
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: var(--font-display);
    color: var(--gold);
    font-weight: 700;
    margin: var(--space-sm) 0;
    letter-spacing: -0.02em;
}

.price-details {
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-xl) 0;
}

.delivery-info {
    margin-top: var(--space-xl);
    font-size: 1.1rem;
    color: var(--cream);
}

@media (max-width: 640px) {
    .cta-final {
        padding: var(--space-xl) 0;
    }

    .price-box {
        padding: var(--space-lg);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--chocolate);
    color: var(--cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 248, 240, 0.15);
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-section h4 {
    font-size: 1.2rem;
    color: var(--caramel-light);
    margin-bottom: var(--space-sm);
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream-dark);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-links a {
    color: var(--cream-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--gold);
}

.promo-reminder {
    background: rgba(212, 175, 55, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
}

.promo-reminder strong {
    color: var(--gold);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-md);
}

.footer-bottom p {
    font-size: 0.95rem;
    color: var(--cream-dark);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--cream-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s ease-in-out infinite;
    border: none !important;
    outline: none !important;
    -webkit-appearance: none;
    -webkit-focus-ring-color: transparent;
    -moz-outline: none !important;
    text-decoration: none;
}

.whatsapp-float:focus,
.whatsapp-float:focus-visible,
.whatsapp-float:active {
    outline: none !important;
    border: none !important;
    box-shadow: var(--shadow-lg) !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.whatsapp-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ===== DISCOUNT MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--discount-modal-overlay);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-md);
    animation: fadeIn 0.3s ease-out;
}

.discount-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--caramel-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--cream);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2.5rem;
    color: var(--chocolate);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.promo-code-container {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border: 3px dashed var(--caramel);
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.promo-code {
    font-family: var(--font-accent);
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    color: var(--caramel-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    user-select: all;
    white-space: nowrap;
    word-break: break-word;
}

.modal-subtitle {
    font-size: 1.3rem;
    color: var(--caramel-dark);
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.whatsapp-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.close-button {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--caramel-dark);
    border: 2px solid var(--caramel);
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.close-button:hover {
    background: var(--caramel);
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 2.5rem;
        --space-2xl: 3rem;
    }

    .discount-modal {
        padding: var(--space-xl) var(--space-lg);
    }

    .modal-title {
        font-size: 2rem;
        margin-bottom: var(--space-md);
    }

    .modal-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .discount-modal {
        padding: var(--space-lg) var(--space-md);
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .promo-code-container {
        padding: var(--space-md);
        min-height: 64px;
        margin: var(--space-lg) 0;
    }

    .promo-code {
        font-size: 1.1rem;
        letter-spacing: 0.04em;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        font-size: 1.75rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--caramel);
    outline-offset: 2px;
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
