@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

/* Variables de Color */
:root {
    --primary-color: #ffb6c1;
    --dark-color: #333;
    --light-bg: #fcfcfc;
    --white: #ffffff;
    --pink-soft: #fff5f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-color);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

/* Modo Oscuro */
body.dark-theme {
    background-color: #1a1a1a;
    color: #eee;
}

/* Barra Anuncio */
.announcement-bar {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dark-theme .navbar { background: #2d2d2d; }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
}
.logo span { color: var(--primary-color); }

.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li { margin: 0 15px; }
.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--primary-color); }

.nav-icons { display: flex; align-items: center; gap: 20px; }
#theme-toggle { background: none; border: none; font-size: 1.2rem; cursor: pointer; }

/* Hero */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1521223890158-f9f7c3d5d504?auto=format&fit=crop&w=1400');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; }

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
}

/* Ventajas */
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 10%;
    text-align: center;
    background: var(--white);
}
.dark-theme .features { background: #222; }
.feature-item i { font-size: 2rem; color: var(--primary-color); margin-bottom: 10px; }

/* Productos */
.products { padding: 80px 10%; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.dark-theme .product-card { background: #2d2d2d; }
.product-card:hover { transform: translateY(-10px); }

.product-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-info { padding: 20px; text-align: center; }
.price { color: var(--primary-color); font-weight: bold; font-size: 1.2rem; }
.btn-buy {
    width: 100%;
    padding: 10px;
    background: var(--dark-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

/* Testimonios */
.testimonials { padding: 80px 10%; background: var(--pink-soft); }
.dark-theme .testimonials { background: #111; }
.testimonial-container { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    text-align: center;
}
.dark-theme .testimonial-card { background: #2d2d2d; }

/* Ubicación */
.location { padding: 80px 10%; }
.location-container { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.info { flex: 1; min-width: 300px; }
.map { flex: 1; min-width: 300px; }
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 15px;
}
.map-responsive iframe { position: absolute; top:0; left:0; width: 100%; height: 100%; }

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.whatsapp-btn img { width: 35px; }

footer { padding: 40px; text-align: center; background: var(--dark-color); color: white; }