* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold {
    color: #D4AF37;
}

.bg-gold {
    background: linear-gradient(135deg, #D4AF37, #F4E87C);
}

.islamic-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M30 0l10 20-10 10-10-10z M30 60l10-20-10-10-10 10z M0 30l20-10 10 10-10 10z M60 30l-20-10-10 10 10 10z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(212,175,55,0.05));
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L60 25 L85 25 L67.5 42.5 L75 67.5 L50 52.5 L25 67.5 L32.5 42.5 L15 25 L40 25 Z' fill='%23D4AF37' opacity='0.02'/%3E%3C/svg%3E") repeat;
    animation: float 20s infinite linear;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-100px) translateY(-100px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #666;
}

.promo-badge {
    background: linear-gradient(135deg, #D4AF37, #F4E87C);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button {
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    box-shadow: 0 15px 35px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: ctaBtnColorFlash 2.5s infinite linear;
    background-color: #d7263d;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.6);
}

@keyframes ctaBtnColorFlash {
    0% {
        background-color: #d7263d;
        color: #fff;
    }
    20% {
        background-color: #fbbf24;
        color: #222;
    }
    40% {
        background-color: #22c55e;
        color: #fff;
    }
    60% {
        background-color: #2563eb;
        color: #fff;
    }
    80% {
        background-color: #f97316;
        color: #fff;
    }
    100% {
        background-color: #d7263d;
        color: #fff;
    }
}

.perfume-bottle {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, rgba(212,175,55,0.1), rgba(255,255,255,0.9));
    border-radius: 80px 80px 20px 20px;
    margin: 2rem auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    animation: gentleFloat 3s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.perfume-bottle::before {
    content: '🌙';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.perfume-bottle::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    background: linear-gradient(135deg, #D4AF37, #F4E87C);
    border-radius: 10px 10px 0 0;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #D4AF37, #F4E87C);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid rgba(212,175,55,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #F4E87C);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.promo-section {
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(255,255,255,0.95));
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23D4AF37' opacity='0.02'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 75 L20 90 L30 60 L10 40 L40 40 Z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mega-promo {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #F4E87C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.bottles-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.bottle-mini {
    width: 120px;
    height: 160px;
    max-width: 120px;
    max-height: 160px;
    background: linear-gradient(45deg, rgba(212,175,55,0.2), rgba(255,255,255,0.9));
    border-radius: 40px 40px 10px 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bottle-mini.free {
    position: relative;
    padding-top: 10px;
}

.bottle-mini.free::before {
    content: 'GRATIS!';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid #D4AF37;
}

.stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #D4AF37;
}

.final-cta {
    background: linear-gradient(135deg, #333333, #555555);
    color: white;
    text-align: center;
}

.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 1000;
    animation: floatWA 3s ease-in-out infinite;
}

@keyframes floatWA {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 1rem 0;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
}

.benefits-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(212,175,55,0.05);
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
    position: relative;
    padding-left: 60px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #D4AF37;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
    color: #333;
}
.countdown > div {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #D4AF37;
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    min-width: 80px;
}
.countdown span {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: #D4AF37;
}

/* Price Styles */
.price-container {
    text-align: center;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.original-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-weight: 500;
}
.promo-price {
    font-size: 2.3rem;
    font-weight: 700;
    color: #D4AF37;
    background-color: rgba(212,175,55,0.1);
    padding: 5px 10px;
    border-radius: 5px;
}
.price-clarification {
    font-size: 1.1rem;
    color: #333;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Problem & Solution Section */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 3rem;
    align-items: stretch;
}
.problem-card, .solution-card {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}
.problem-card {
    background-color: #fff6f6;
    border-left: 5px solid #e57373; /* Reddish */
}
.solution-card {
    background-color: #f6fff6;
    border-left: 5px solid #66bb6a; /* Greenish */
}
.problem-card h3, .solution-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.problem-card h3::before, .solution-card h3::before {
    font-size: 1.8rem;
    margin-right: 15px;
    font-weight: bold;
}
.problem-card h3::before {
    content: '❌';
}
.solution-card h3::before {
    content: '✅';
}
.problem-solution-grid ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    flex-grow: 1;
}
.problem-solution-grid li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
}
.problem-solution-grid li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Guarantee Section */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    text-align: center;
}
.guarantee-item {
    background: #fafafa;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}
.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}
.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.guarantee-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.wrap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 500px;
} 

.wrap-img img {
    max-width: 100%;
    height: auto;
}
.wrap-img.md{
    max-width: 800px;
    height: auto;
}
.floating-wa-btn {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #25d366;
    color: #fff;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 9999;
    text-decoration: none;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    animation: ctaBtnColorFlash 2.5s infinite linear;
}
.floating-wa-btn:hover {
    background: #128c7e;
    color: #fff;
}
@media (max-width: 768px) {
    .bottles-visual {
        /* flex-direction: column; */
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
        margin-top: 10px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .perfume-bottle {
        width: 200px;
        height: 280px;
    }
}
.cta-hand-bounce {
    display: flex;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounceHand 1.2s infinite;
    cursor: pointer;
    user-select: none;
}
.cta-hand-bounce.left {
    position: absolute;
    left: 20px;
    bottom: 0px;
    justify-content: flex-start;
    animation: bounceLeftHand 1.2s infinite;
    font-size: 2rem;
}
.cta-hand-bounce.right {
    position: absolute;
    right: 20px;
    bottom: 0px;
    justify-content: flex-end;
    animation: bounceRightHand 1.2s infinite;
    font-size: 2rem;
}

@keyframes bounceHand {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(-8px);
    }
}
@keyframes bounceRightHand {
    0%,
    100% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(10px);
    }

    60% {
        transform: translateX(-8px);
    }
}
@keyframes bounceLeftHand {
    0%,
    100% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-10px);
    }

    60% {
        transform: translateX(8px);
    }
}