/* --- Variables de Color (Paleta Profesional) --- */
:root {
    --primary-color: #d63384; /* Rosa fuerte elegante */
    --secondary-color: #333333; /* Gris oscuro para texto */
    --bg-light: #fff0f3; /* Rosa muy pálido */
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #fff5f7 0%, #ffe3e8 100%);
    --gradient-btn: linear-gradient(90deg, #e91e63 0%, #d81b60 100%);
    --shadow-soft: 0 10px 30px rgba(233, 30, 99, 0.1);
    --shadow-hover: 0 15px 35px rgba(233, 30, 99, 0.2);
}

/* --- Estilos Generales --- */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Fuente moderna y limpia */
    background-color: #fafafa;
    color: var(--secondary-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Fuente elegante para títulos */
    margin-bottom: 10px;
    font-weight: 700;
}

a { text-decoration: none; transition: 0.3s; }

/* --- Header / Hero Section --- */
.hero {
    background: var(--gradient-hero);
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.hero .badge {
    background-color: rgba(233, 30, 99, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.5em;
    color: #2c2c2c;
    margin-top: 15px;
}

.hero p {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
}

/* --- Redes Sociales (Estilo Minimalista) --- */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-bar a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, background-color 0.2s;
}

.social-bar a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Sección Beneficios --- */
.benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
    text-align: center;
}

.benefit-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.benefit-item i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item h3 { font-size: 1.2em; margin-bottom: 5px; }
.benefit-item p { font-size: 0.9em; color: #777; }

/* --- Tarjetas de Acción (Cards) --- */
.actions-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    flex: 1;
    min-width: 280px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    background: var(--bg-light);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8em;
    color: var(--primary-color);
}

.card p { margin-bottom: 30px; color: #555; }

/* --- Botones --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-secondary:hover { background: var(--primary-color); color: white; }

.btn-accent {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.1em;
}

/* --- Sección Ruleta --- */
.promo-section {
    margin-top: 50px;
    background: var(--gradient-btn);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.promo-section h2 { color: white; margin-bottom: 10px; }
.promo-section p { color: rgba(255,255,255,0.9); margin-bottom: 30px; }

/* Animación del botón Ruleta */
.pulse-effect {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px;
    background-color: #f8f8f8;
    color: #888;
    font-size: 0.9em;
}

/* --- Responsive (Móvil) --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2em; }
    .actions-container { flex-direction: column; }
    .benefits { gap: 40px; }
}
/* --- Estilos del Carrusel (Slider) --- */
.product-slider-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 400px; /* Altura en computadora */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

/* La magia para que la imagen se vea bien en celular y PC */
.slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta los bordes si sobra imagen, pero llena el espacio */
    object-position: center; /* Mantiene el centro de la foto visible */
    transition: transform 0.5s ease;
}

.swiper-slide:hover .slide-image {
    transform: scale(1.05); /* Zoom suave al pasar el mouse */
}

/* Texto sobre la imagen */
.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 300px;
}

.slide-caption h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.2em;
}

.btn-slider {
    font-size: 0.9em;
    font-weight: bold;
    color: #d63384;
    text-transform: uppercase;
}

/* Personalizar colores de flechas y puntos */
.swiper-button-next, .swiper-button-prev {
    color: #fff; /* Flechas blancas */
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.swiper-pagination-bullet-active {
    background-color: #d63384 !important;
}

/* --- Ajuste para Celulares --- */
@media (max-width: 768px) {
    .swiper {
        height: 250px; /* Altura más pequeña en celular */
    }
    
    .slide-caption {
        bottom: 10px;
        left: 10px;
        right: 10px; /* Ocupa todo el ancho */
        padding: 10px;
        max-width: none;
        text-align: center;
    }
}