/* VARIABLES DE DISEÑO */
:root {
    --bg-nude: #FDF8F5;
    --text-chocolate: #4A3E3E;
    --gold: #D4AF37;
    --cta-pink: #C2185B;
    --white: #ffffff;
}

/* RESET Y BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--bg-nude); 
    color: var(--text-chocolate); 
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }
.section-title { 
    font-family: 'Playfair Display', serif; 
    text-align: center; 
    font-size: 2.2rem; 
    margin-bottom: 40px; 
}

/* HERO */
.hero {
    background: url('imagenes/hero-bg.webp') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.gold-text { color: var(--gold); }

/* BOTONES */
.btn-primary {
    background-color: var(--cta-pink);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(194, 24, 91, 0.3); }

/* ESCENARIOS */
.grid-scenarios { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 25px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.03); }
.card-imgs { display: flex; gap: 10px; margin-bottom: 20px; }
.card-imgs img { width: 50%; height: 180px; object-fit: cover; border-radius: 12px; }
.card h3 { margin-bottom: 10px; font-family: 'Playfair Display', serif; }

/* ACORDEÓN */
details { background: var(--white); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
summary { padding: 20px; font-weight: 700; cursor: pointer; list-style: none; border-bottom: 1px solid #f0f0f0; }
.details-content { padding: 20px; background: #fafafa; }

/* OFERTA */
.offer { background: var(--text-chocolate); color: var(--white); text-align: center; padding: 80px 20px; }
.price-container { margin: 30px 0; }
.old-price { text-decoration: line-through; opacity: 0.5; font-size: 1.4rem; }
.new-price { font-size: 4rem; color: var(--gold); display: block; font-weight: 700; }
.white-text { color: var(--white); }
.security-text { margin-top: 20px; font-size: 0.8rem; opacity: 0.7; }

/* ANIMACIONES */
@keyframes pulse { 0% {transform: scale(1);} 50% {transform: scale(1.03);} 100% {transform: scale(1);} }
.pulse { animation: pulse 2s infinite; }

/* MÓVIL */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .new-price { font-size: 3rem; }
}