/* ============================
   PALETA NUN-PTAH
   ============================ */
:root {
    --bg-body: #020315;
    --bg-alt: #070b1e;
    --bg-card: #0a0f25;
    --fg-main: #f5f5f8;
    --fg-muted: #c3c3d4;
    --accent-gold: #d8b16a;
    --accent-gold-soft: #f0d892;
    --accent-emerald: #009178;
    --border-soft: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
}

/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body.body__Servicios {
    min-height: 100vh;
    width: 100%;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111631 0, #020315 52%, #01010b 100%);
    color: var(--fg-main);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ============================
   HEADER / NAV
   ============================ */

.header__servicios {
    width: 100%;
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 1.25rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.logo__servicios {
    flex: 0 0 auto;
    max-width: 190px;
}

.logo__servicios .imgLogo {
    width: 100%;
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.9);
    background: radial-gradient(circle at 30% 0%, rgba(240, 216, 146, 0.2), transparent 60%);
}

.menu__servicios {
    flex: 1 1 auto;
}

.ul__servicios {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.liMenu {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: var(--fg-main);
    background: linear-gradient(135deg, rgba(10, 15, 37, 0.95), rgba(7, 11, 30, 0.98));
    border: 1px solid rgba(216, 177, 106, 0.5);
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.75);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.liMenu:hover {
    transform: translateY(-1px);
    background: radial-gradient(circle at 0% 0%, rgba(240, 216, 146, 0.25), transparent 60%),
                linear-gradient(135deg, rgba(10, 18, 48, 1), rgba(5, 19, 31, 1));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.9);
    color: #ffffff;
    border-color: rgba(240, 216, 146, 0.9);
}

/* Marca la sección actual (Servicios) si quieres */
.itMenu.servicios .liMenu {
    border-color: rgba(0, 145, 120, 0.9);
}

/* ============================
   LÍNEA SEPARADORA
   ============================ */

.linea {
    width: 100%;
    max-width: 1200px;
    margin: 0.75rem auto 0.75rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 177, 106, 0.75), transparent);
    opacity: 0.8;
}

/* ============================
   MAIN
   ============================ */

.main__servicios {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--fg-main);
}

/* Sección principal */

.seccion__principal {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* ============================
   CONTACTO
   ============================ */

.contactos__servicios {
    width: 100%;
    padding: 1.5rem 1.2rem 1.7rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(7, 11, 30, 0.98), rgba(2, 3, 21, 0.97));
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.subtitulo__contactos__servicios {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold-soft);
    text-shadow: 1px 1px 1px rgba(61, 54, 20, 0.3);
}

.iconos__contactos__servicios {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
}

.whatsAppImg,
.youtubeImg {
    display: block;
    width: 72px;
    max-width: 20vw;
}

.whatsAppLogo,
.youtubeLogo {
    width: 100%;
    border-radius: 999px;
    padding: 0.15rem;
    background: radial-gradient(circle at 30% 0%, rgba(240, 216, 146, 0.16), transparent 60%);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
}

.link__parrafo__whatsApp {
    text-decoration: none;
    color: var(--accent-emerald);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ============================
   CONTENIDO SERVICIOS
   ============================ */

.contenido__servicios {
    width: 100%;
    padding: 1.7rem 1.4rem 2rem;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(10, 15, 37, 0.98), rgba(7, 11, 30, 0.96));
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    font-weight: 500;
}

.titulo__contenido__servicios {
    text-align: center;
    text-shadow: 1px 1px 1px rgba(61, 54, 20, 0.3);
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold-soft);
}

.tipoServicio {
    font-size: 1.05rem;
    text-align: center;
    margin-top: 0.5rem;
    color: var(--accent-gold);
}

.tipoServicio .tipo__servicio {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.3rem;
    color: var(--fg-muted);
}

/* Lista de servicios */

.lista__servicios {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    list-style: none;
}

.lista__servicios li {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

.opciones__lista {
    font-weight: 700;
    color: var(--accent-gold-soft);
    flex: 0 0 auto;
}

.texto__opciones__lista {
    flex: 1 1 auto;
}

/* Sesión de cumpleaños */

.opciones__lista__cumpleaños {
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    color: var(--accent-gold);
}

.texto__opciones__lista__cumpleaños {
    display: block;
    margin-top: 0.4rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

/* Bloque IMPORTANTE */

.texto__servicios {
    width: 100%;
    max-width: 820px;
    margin: 0.3rem auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--fg-muted);
    line-height: 1.7;
}

.texto__servicios h3 {
    margin-bottom: 0.4rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold-soft);
}

/* ============================
   VIDEO SECCIÓN
   ============================ */

.seccion__video__servicios {
    width: 100%;
    padding: 1.7rem 1.4rem 2rem;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(7, 11, 30, 0.98), rgba(2, 3, 21, 0.97));
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: var(--fg-main);
}

.subtituloVideo,
.invitacion {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 1px rgba(61, 54, 20, 0.3);
}

.videoPresentacion {
    margin-top: 1rem;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

/* ============================
   FOOTER
   ============================ */

.footer__servicios {
    margin-top: auto;
    width: 100%;
    padding: 1.8rem 1.25rem 1.8rem;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.96));
    color: #ffffff;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
}

.footer__servicios a {
    color: #ffffff;
    text-decoration: underline;
}

.footer__servicios .urlFooter {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: center;
    text-align: center;
}

.footer__servicios .derechos {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
    text-align: center;
}

.footer__servicios .logosLic {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
}

.footer__servicios .logLicencia {
    width: 10%;
    max-width: 32px;
}

.footer__servicios .autor {
    font-size: 0.6rem;
    opacity: 0.85;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 768px) {
    .header__servicios {
        align-items: flex-start;
        padding-inline: 1rem;
    }

    .logo__servicios {
        max-width: 150px;
    }

    .ul__servicios {
        gap: 0.3rem;
    }

    .liMenu {
        font-size: 0.75rem;
    }

    .whatsAppImg,
    .youtubeImg {
        width: 64px;
    }

    .contenido__servicios {
        padding-inline: 1.2rem;
    }

    .lista__servicios li {
        font-size: 0.9rem;
    }

    .texto__servicios {
        font-size: 0.8rem;
    }
}

@media (min-width: 900px) {
    .header__servicios {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.3rem;
    }

    .menu__servicios {
        width: 100%;
    }

    .ul__servicios {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
    }

    .liMenu {
        font-size: 0.85rem;
    }

    .main__servicios {
        padding-bottom: 2.3rem;
    }

    .contactos__servicios {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .contactos__servicios > * {
        flex: 1;
    }

    .contactos__servicios .iconos__contactos__servicios {
        justify-content: center;
    }

    .footer__servicios {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer__servicios .urlFooter,
    .footer__servicios .derechos {
        width: 50%;
        align-items: flex-start;
        text-align: left;
    }

    .footer__servicios .logosLic {
        justify-content: flex-start;
    }
}
