/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BANNER */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BANNER */
.escolta-banner {
    width: 100%;
    height: clamp(300px, 60vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/escolta-foto.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: fadeInUp 1s ease;
}

/* CAPA OSCURA */
.escolta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.subtitulo-escolta::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #f1c40f;
    margin: 10px auto 0;
}

/* CONTENIDO */
.contenido-banner {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* SUBTÍTULO */
.subtitulo-escolta {
    color: #f1c40f;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* TÍTULO */
.titulo-escolta {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
}

/* SECCIÓN PRINCIPAL */
#seccion-escolta {
    background: #ffffff;
    padding: 60px 20px;
}

.contenedor-escolta {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXTO */
.info-escolta {
    flex: 1;
    color: #000000;
}

.logo-escolta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-escolta img {
    width: 60px;
    height: 60px;
}

.logo-escolta h2 {
    font-size: 1.8rem;
    color: #f1c40f;
}

.info-escolta p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

/* IMAGEN */
.imagen-escolta {
    flex: 1;
    text-align: center;
}

.imagen-escolta img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.5);
}

/* ================= SERVICIOS ESCOLTA ================= */

#servicios-escolta {
    background: #0d0d0d;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.titulo-servicios {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f1c40f;
}

/* LISTA */
#servicios-escolta .lista-servicios {
    list-style: none;
    max-width: 800px;
    margin: auto;
    padding: 0;
}

/* ITEMS */
#servicios-escolta .lista-servicios li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

/* HOVER */
#servicios-escolta .lista-servicios li:hover {
    transform: translateX(10px);
    background: #222;
}

/* ICONOS (FIX 🔥) */
#servicios-escolta .icono {
    display: inline-block;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contenedor-escolta {
        flex-direction: column;
        text-align: center;
    }

    .logo-escolta {
        justify-content: center;
    }

    .titulo-escolta {
        font-size: 2rem;
    }

    .subtitulo-escolta {
        font-size: 0.7rem;
    }

    #servicios-escolta .lista-servicios li {
        font-size: 0.95rem;
    }
}

/*-------------------------------------------------------------------------------------------------------------------*/

/*diseño requisitos.html*/

.tener-cuenta {
    padding: 120px 20px 60px;
    /* 👈 espacio arriba por navbar */
    background: #f9f9f9;
}

/* CONTENEDOR */
.contenedor-cuenta {
    display: flex;
    align-items: stretch;
    /* 👈 iguala alturas */
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* IMAGEN */
.cuenta-img {
    flex: 1;
    display: flex;
}

.cuenta-img img {
    width: 100%;
    height: 100%;
    /* 👈 misma altura que cajas */
    object-fit: cover;
    /* 👈 no se deforma */
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* TEXTO */
.cuenta-texto {
    flex: 1;
    max-width: 600px;
}

.cuenta-texto h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

/* CAJAS */
.caja {
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.caja:hover {
    transform: translateY(-5px);
}

/* HEADER */
.caja-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* ICONOS NEGROS */
.caja-header i {
    font-size: 20px;
    color: #000;
}

/* TEXTOS */
.caja h3 {
    margin: 0;
    font-size: 20px;
}

.caja p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}


/*seccion 2 de requisitos html*/

/* ================= SECCIÓN INFO AVANZADA ================= */

.seccion-info-avanzada {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1c40f, #ffe680);
    display: flex;
    justify-content: center;
}

/* CONTENEDOR */
.contenedor-info-avanzada {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* TÍTULO */
.titulo-info-avanzada {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #000;
}

/* TARJETA */
.tarjeta-info-avanzada {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* BLOQUES INTERNOS */
.bloque-info-avanzada {
    margin-bottom: 20px;
}

/* TITULOS */
.bloque-info-avanzada h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

/* TEXTO */
.bloque-info-avanzada p {
    font-size: 15px;
    line-height: 1.6;
}

.tarjeta-info-avanzada:hover {
    background: linear-gradient(135deg, #f1c40f, #000);
    color: #fff;
    transform: translateY(-8px);
}

/* ================= SECCIÓN INFO LATERAL ================= */

.seccion-info-lateral {
    padding: 80px 20px;
    background: #ffffff;
}

/* CONTENEDOR */
.contenedor-info-lateral {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* TEXTO */
.info-lateral-texto {
    flex: 1;
    max-width: 600px;
}

.info-lateral-texto h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

/* BLOQUES */
.bloque-info {
    margin-bottom: 20px;
}

.bloque-info h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.bloque-info p {
    font-size: 15px;
    line-height: 1.6;
}

/* IMAGEN */
.info-lateral-img {
    flex: 1;
    display: flex;
}

.info-lateral-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* ================= SECCIÓN TARIFAS ================= */

.seccion-tarifas-final {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #c1a01b, #d4af37, #000000);
    text-align: center;
}

/* CONTENEDOR */
.contenedor-tarifas-final {
    max-width: 1000px;
    margin: 0 auto;
}

/* TÍTULO */
.titulo-tarifas-final {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff7f7;
    letter-spacing: 2px;

}

/* TARJETAS */
.tarjetas-tarifas-final {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* TARJETA */
.tarjeta-tarifa-final {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 20px;
    width: 260px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

/* HOVER */
.tarjeta-tarifa-final:hover {
    transform: translateY(-10px);
}

/* TITULO TARJETA */
.tarjeta-tarifa-final h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* PRECIO */
.precio-final {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

/* IVA */
.iva {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tarjetas-tarifas-final {
        flex-direction: column;
        align-items: center;
    }

    .tarjeta-tarifa-final {
        width: 90%;
    }
}

/* RESPONSIVE 🔥 */
@media (max-width: 768px) {
    .contenedor-info-lateral {
        flex-direction: column;
    }

    .info-lateral-img img {
        height: 300px;
    }

    .info-lateral-texto {
        max-width: 100%;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .titulo-escolta {
        font-size: 2rem;
    }

    .subtitulo-escolta {
        font-size: 0.7rem;
    }

    .contenedor-cuenta {
        flex-direction: column;
    }

    .cuenta-img img {
        height: 300px;
    }

    .cuenta-texto {
        max-width: 100%;
    }

    .contenedor-escolta {
        flex-direction: column;
        text-align: center;
    }

    .logo-escolta {
        justify-content: center;
    }

    .titulo-escolta {
        font-size: 2rem;
    }

    .lista-servicios li {
        flex-direction: row;
        font-size: 0.95rem;
    }

    .tarjeta-info-avanzada {
        padding: 25px;
    }
}