/**
 * Smiley Hero Afiliados - Frontend CSS
 * Version: 1.1.0 - Fuentes más grandes + Imágenes limpias
 */

.smiley-hero-afiliados {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.hero-images-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000;
}

.hero-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-image-slide.active {
    opacity: 1;
}

.hero-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY SIN FILTRO OSCURO - Fondo sutil solo abajo */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    /* ANTES: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%) */
    /* AHORA: Gradiente MUY sutil solo para legibilidad del texto */
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    color: #fff;
}

/* FUENTES MÁS GRANDES */
.hero-titulo {
    font-size: 40px; /* Era 34px, ahora +4px */
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra para legibilidad */
}

.hero-descripcion {
    font-size: 26px; /* Era 18px, ahora +2px */
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Sombra para legibilidad */
}

/* Indicadores */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: #fbbf24;
    transform: scale(1.2);
}

.hero-indicator:hover {
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-images-container {
        height: 500px;
    }
    
    .hero-titulo {
        font-size: 30px; /* Era 26px, ahora +4px */
    }
    
    .hero-descripcion {
        font-size: 18px; /* Era 16px, ahora +2px */
    }
    
    .hero-overlay {
        padding: 20px;
    }
}

/* Modo tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-images-container {
        height: 550px;
    }
    
    .hero-titulo {
        font-size: 34px;
    }
    
    .hero-descripcion {
        font-size: 19px;
    }
}