/* =====================================================
   LAVANDERÍA ALEBRIJE - CSS ONE PAGE
   ===================================================== */

/* Section Numbers */
.section-number {
    display: inline-block;
    background: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    line-height: 40px;
    margin-bottom: 10px;
}

.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    line-height: 32px;
    font-size: 0.9rem;
    text-align: center;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.why-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Carga Mínima */
.carga-minima {
    background: linear-gradient(135deg, var(--accent), #FF9800);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.carga-minima h3 {
    margin-bottom: 10px;
}

.carga-minima .precio {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.carga-minima small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Encargo Grid */
.encargo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.encargo-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
}

.encargo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.encargo-header {
    padding: 20px;
    color: white;
    position: relative;
}

.encargo-header h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.encargo-header p {
    opacity: 0.9;
    font-size: 0.85rem;
}

.encargo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.encargo-body {
    padding: 20px;
}

.encargo-features {
    list-style: none;
    margin-bottom: 15px;
}

.encargo-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--primary-light);
    font-size: 0.85rem;
    color: var(--text-medium);
}

.encargo-features li:last-child {
    border: none;
}

.check {
    color: #4CAF50;
    font-weight: bold;
}

.encargo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid var(--primary-light);
}

.encargo-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.encargo-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Proceso Carrera */
.proceso-info {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.9;
}

.proceso-carrera {
    position: relative;
    padding: 40px 0;
}

.pista {
    position: absolute;
    top: 75px;
    left: 5%;
    right: 5%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), #E91E8C, #FFD600, #4CAF50, var(--primary));
    border-radius: 4px;
}

.pasos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.paso {
    flex: 1;
    min-width: 90px;
    text-align: center;
    cursor: pointer;
}

.paso-circulo {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    position: relative;
}

.paso-circulo:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-hover);
}

.paso.activo .paso-circulo {
    transform: scale(1.2);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.6);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 214, 0, 0.6); }
    50% { box-shadow: 0 0 35px rgba(255, 214, 0, 0.9); }
}

.paso.activo .paso-nombre {
    color: var(--accent);
    font-weight: 700;
}

.paso-circulo span {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 24px;
    font-family: 'Fredoka', sans-serif;
}

.paso-nombre {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.paso-detalle {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-top: 30px;
    box-shadow: var(--shadow-soft);
    display: none;
    color: var(--text-dark);
}

.paso-detalle.activo {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.paso-detalle h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.paso-detalle p {
    color: var(--text-medium);
    line-height: 1.7;
}

.paso-detalle .tip {
    background: var(--primary-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

/* Cupones */
.bienvenida-puntos {
    text-align: center;
    margin-bottom: 40px;
}

.bienvenida-puntos .big-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.bienvenida-puntos h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.bienvenida-puntos h3 span {
    color: var(--secondary);
}

.bienvenida-puntos p {
    color: var(--text-medium);
}

.niveles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.nivel-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.nivel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.nivel-card.bronce::before { background: #CD7F32; }
.nivel-card.plata::before { background: linear-gradient(90deg, #C0C0C0, #E8E8E8); }
.nivel-card.oro::before { background: linear-gradient(90deg, #FFD700, #FFA500); }

.nivel-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.bronce .nivel-tag { background: #FFF3E0; color: #CD7F32; }
.plata .nivel-tag { background: #F5F5F5; color: #757575; }
.oro .nivel-tag { background: #FFF8E1; color: #FF8F00; }

.nivel-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.nivel-card > p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.nivel-pts {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.nivel-pts span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.nivel-premio {
    background: var(--primary-light);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.bonus-resena {
    background: linear-gradient(135deg, var(--accent), #FF9800);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    color: var(--text-dark);
}

.bonus-resena h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bonus-resena .premio {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 15px 0;
}

.bonus-resena small {
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Cobertura */
.cobertura-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cobertura-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.cobertura-info p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.gratis-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.zonas-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-soft);
}

.zonas-box h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.zonas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.zonas-tags span {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.zonas-box > p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Empresas */
.section-dark {
    background: var(--text-dark);
    color: white;
}

.empresas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.empresas-info .intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.emp-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.emp-feature > span {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.emp-feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.emp-feature p {
    opacity: 0.85;
    font-size: 0.9rem;
}

.empresas-img {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

/* Contacto Grid */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacto-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contacto-item > span {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contacto-item small {
    display: block;
    opacity: 0.7;
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.contacto-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contacto-form h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cobertura-content,
    .empresas-content,
    .contacto-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cobertura-info,
    .empresas-info {
        text-align: center;
    }
    
    .emp-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .paso {
        flex: 0 0 calc(33.33% - 10px);
    }
    
    .paso-circulo {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .paso-nombre {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .paso {
        flex: 0 0 calc(50% - 8px);
    }
}

/* Tips de Lavado */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.tip-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Equipos */
.equipos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.equipos-lista h3 {
    font-size: 1.5rem;
}

.equipos-items {
    list-style: none;
}

.equipos-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--primary-light);
    font-size: 1rem;
    color: var(--text-dark);
}

.equipos-items li:last-child {
    border-bottom: none;
}

.equipos-items li span {
    font-size: 1.3rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .equipos-content {
        grid-template-columns: 1fr;
    }
    
    .equipos-img {
        order: -1;
    }
}

/* =====================================================
   HERO SLIDER - CORREGIDO PARA MÓVIL
   ===================================================== */
.hero-visual {
    position: relative;
    min-height: 350px;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    border: 5px solid #0097A7;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Hero Slider Responsive - CORREGIDO */
@media (max-width: 1024px) {
    .hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        margin: 30px auto 0;
        min-height: 300px;
    }
    
    .hero-slider {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        min-height: 280px;
    }
    
    .hero-slider {
        height: 280px;
        border-radius: 24px;
        border-width: 4px;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 220px;
        margin: 20px auto 0;
    }
    
    .hero-slider {
        height: 220px;
        border-radius: 20px;
        border-width: 3px;
    }
}
