* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FF1744;
    --primary-blue: #0D47A1;
    --accent-gold: #FFD700;
    --dark: #1a1a1a;
    --light-gray: #f8f9fa;
    --shadow: 0 20px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 60px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.9), rgba(13, 71, 161, 0.9)), 
                url('https://images.unsplash.com/photo-1541643600914-78b084683601?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #FFD700, #FFF, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(45deg, var(--accent-gold), #FFA000);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-feminine {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.1), rgba(255, 255, 255, 0.9));
}

.section-masculine {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.1), rgba(255, 255, 255, 0.9));
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 2px;
}

.section-feminine .section-title {
    color: var(--primary-pink);
}

.section-feminine .section-title::after {
    background: linear-gradient(45deg, var(--primary-pink), #FF8A80);
}

.section-masculine .section-title {
    color: var(--primary-blue);
}

.section-masculine .section-title::after {
    background: linear-gradient(45deg, var(--primary-blue), #64B5F6);
}

/* Grid Layout */
.perfume-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Card Styles */
.perfume-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.perfume-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.perfume-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.perfume-card:hover::before {
    opacity: 1;
}

.section-feminine .perfume-card {
    border-top: 5px solid var(--primary-pink);
}

.section-masculine .perfume-card {
    border-top: 5px solid var(--primary-blue);
}

.card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.perfume-card:hover .card-image {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

.card-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--dark);
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.card-microcopy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.card-microcopy i {
    font-size: 1.1rem;
    animation: heartbeat 2s infinite;
}

.section-feminine .card-microcopy i {
    color: var(--primary-pink);
}

.section-masculine .card-microcopy i {
    color: var(--primary-blue);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.buy-button {
    display: inline-block;
    width: 100%;
    padding: 18px 25px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.buy-button:hover::before {
    left: 100%;
}

.section-feminine .buy-button {
    background: linear-gradient(45deg, var(--primary-pink), #FF8A80);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.3);
}

.section-feminine .buy-button:hover {
    background: linear-gradient(45deg, #D50000, var(--primary-pink));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 23, 68, 0.4);
}

.section-masculine .buy-button {
    background: linear-gradient(45deg, var(--primary-blue), #64B5F6);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.3);
}

.section-masculine .buy-button:hover {
    background: linear-gradient(45deg, #001970, var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(13, 71, 161, 0.4);
}

/* Promotion Section */
.promotion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotion-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promotion-content {
    position: relative;
    z-index: 2;
}

.promotion-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 30px;
    font-weight: 800;
}

.promotion-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.discount-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 60px 0;
    background: var(--light-gray);
    text-align: center;
}

.whatsapp-button {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    margin-right: 12px;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--dark), #333);
    color: white;
    text-align: center;
}

.footer-text {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-style: italic;
}

.payment-info {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .perfume-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .perfume-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .perfume-card {
        height: 550px;
    }
}

@media (max-width: 600px) {
    .perfume-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .perfume-card {
        height: 500px;
    }
    
    .card-image-container {
        height: 220px;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Floating elements */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.heart {
    position: absolute;
    color: rgba(255, 23, 68, 0.6);
    font-size: 20px;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
/* Estilos para a notificação */
.fake-purchase-notification {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: linear-gradient(45deg, var(--primary-pink), var(--primary-blue));
        color: white;
        padding: 15px 20px;
        border-radius: 12px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        box-shadow: var(--shadow);
        z-index: 9999;
        opacity: 0;
        max-width: 320px;
        transition: all 0.5s ease-in-out;
        display: flex;
        align-items: center;
        gap: 12px;
        transform: translateX(-150%);
    }

.fake-purchase-notification.show {
        opacity: 1;
        transform: translateX(0);
    }

.fake-purchase-notification .icon {
        font-size: 24px;
        color: var(--accent-gold);
        animation: pulse 1.5s infinite;
    }

.fake-purchase-notification .content {
        flex: 1;
    }

.fake-purchase-notification strong {
        color: var(--highlight-yellow);
        font-weight: 600;
    }

.fake-purchase-notification .time-ago {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 5px;
        font-style: italic;
    }

@keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.2); }
    }

@media (max-width: 600px) {
    .fake-purchase-notification {
            bottom: 15px;
            left: 15px;
            padding: 12px 15px;
            max-width: 280px;
            font-size: 13px;
        }
    .fake-purchase-notification .icon {
            font-size: 20px;
        }
    }
   /* Estilizando a barra de texto rolante */
        .delivery-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #007bff;
            color: white;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
            font-family: Arial, sans-serif;
            font-size: 16px;
            z-index: 1000;
        }
        /* Contêiner para o texto rolante */
        .marquee {
            display: inline-block;
            padding-left: 100%;
            animation: scroll 15s linear infinite;
        }
        /* Animação de rolagem contínua */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        /* Estilizando os ícones */
        .delivery-icon {
            margin: 0 10px;
            font-size: 18px;
            color: #ffffff;
        }