/* ============================
   PÁGINA LIMPIEZA DENTAL
============================ */

.limpieza-page {
    background: #050505;
    color: #f5f5f5;
    padding: 60px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.limpieza-page img {
    display: block;
    max-width: 100%;
    border-radius: 18px;
}

/* --------- BLOQUE SUPERIOR --------- */

.limpieza-hero {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.6fr 1.2fr;
    gap: 40px;
    margin-bottom: 45px;
}

.limpieza-titulo {
    font-size: 40px;
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.limpieza-subtitulo {
    font-size: 18px;
    letter-spacing: 1px;
    color: #f0e6c8;
    margin-bottom: 18px;
}

.limpieza-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
}

.limpieza-beneficios li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Columna derecha */

.limpieza-lateral {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.limpieza-img-superior img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border: 1px solid #d4af37;
    box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}

.limpieza-precio-tiempo {
    text-align: center;
}

.limpieza-precio {
    font-size: 30px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 5px;
}

.limpieza-tiempo {
    font-size: 16px;
    color: #f0e6c8;
}

/* --------- SEGUNDA FILA --------- */

.limpieza-detalle {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.3fr 1.7fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.limpieza-img-inferior video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border: 1px solid #d4af37;
    box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}

.limpieza-proceso .limpieza-subtitulo {
    margin-bottom: 15px;
}

.limpieza-pasos {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.limpieza-pasos li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.limpieza-pasos strong {
    color: #f8e6aa;
}

/* Botón principal */

.btn-agendar-limpieza {
    display: inline-block;
    padding: 12px 26px;
    background: #28a745;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-agendar-limpieza:hover {
    background: #1f8436;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.7);
}

/* ============================
   MÓDULO PREMIUM LIMPIEZA
============================ */

.modulo-premium-limpieza {
    width: 100%;
    background: #050505;
    border-top: 1px solid rgba(212,175,55,0.35);
    padding: 40px 20px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-encabezado {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.premium-encabezado h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 8px;
}

.premium-subtitulo {
    font-size: 15px;
    color: #f0e6c8;
}

/* Parte superior: motivos + garantía */

.premium-top {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 30px;
    margin-bottom: 35px;
}

.premium-motivos ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.premium-motivos li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.premium-motivos strong {
    color: #f8e6aa;
}

/* Bloque garantía */

.premium-garantia {
    background: #0b0b0b;
    border-radius: 18px;
    border: 1px solid #d4af37;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.garantia-sello {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.garantia-titulo {
    font-size: 13px;
    color: #f8e6aa;
    font-weight: 700;
    letter-spacing: 1px;
}

.garantia-texto {
    font-size: 14px;
    color: #f2f2f2;
    text-align: center;
    line-height: 1.4;
}

/* GRID INFERIOR: 3 COLUMNAS */

.premium-grid {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.premium-card {
    background: #0b0b0b;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.6);
    padding: 18px 18px 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.premium-card h3 {
    font-size: 17px;
    color: #f8e6aa;
    margin-bottom: 10px;
}

.premium-card p {
    font-size: 14px;
    color: #f3f3f3;
    line-height: 1.5;
}

.premium-img {
    margin-bottom: 10px;
}

.premium-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
}

/* Lista con estrellitas */

.premium-lista-estrellas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-lista-estrellas li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #f3f3f3 !important; 
}

.premium-lista-estrellas li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-size: 12px;
}

/* Botones finales */

.premium-botones {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-ver-casos,
.btn-orientacion {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* Botón dorado */
.btn-ver-casos {
    background: #d4af37;
    color: #111;
    box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

.btn-ver-casos:hover {
    background: #b48a2b;
    transform: translateY(-2px);
}

/* Botón azul oscuro */
.btn-orientacion {
    background: #153552;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

.btn-orientacion:hover {
    background: #0f273b;
    transform: translateY(-2px);
}

/* ============================
   RESPONSIVO
============================ */

@media (max-width: 900px) {

    .limpieza-hero {
        grid-template-columns: 1fr;
    }

    .limpieza-detalle {
        grid-template-columns: 1fr;
    }

    .limpieza-img-inferior img {
        height: 230px;
    }

    .premium-top {
        grid-template-columns: 1fr;
    }

    .premium-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {

    .limpieza-page {
        padding: 40px 16px 45px;
    }

    .limpieza-titulo {
        font-size: 30px;
        text-align: center;
    }

    .limpieza-subtitulo {
        text-align: center;
    }

    .limpieza-beneficios {
        margin-bottom: 20px;
    }

    .limpieza-lateral {
        width: 100%;
    }

    .limpieza-img-superior img,
    .limpieza-img-inferior img {
        height: 220px;
    }

    .limpieza-detalle {
        gap: 25px;
    }

    .btn-agendar-limpieza {
        width: 100%;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-card {
        text-align: left;
    }
}
