* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #303030;
}

/* ================================================= */
/* --- BARRA DE NAVEGACIÓN CON MENÚ CENTRADO --- */
/* ================================================= */

.head {
    height: 80px;
    padding: 0 40px;
    position: fixed;
    width: 100%;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo img {
    height: 50px;
    width: auto;
}

.navbar {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* --- Menú Principal (Central) --- */
.menu-horizontal {
    list-style: none;
    display: flex;
    align-items: center; /* Añadido para mejor alineación vertical */
    margin: 0;
    padding: 0;
}

.menu-horizontal > li {
    position: relative;
    padding: 0 25px; /* Más espacio entre enlaces */
}

.menu-horizontal > li > a {
    display: block;
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-horizontal > li:hover > a {
    color: #f7a01c;
}

/* --- Iconos Sociales (Derecha) --- */
.social-icons {
    display: flex; /* CORRECCIÓN: Asegura que los íconos estén en fila */
    align-items: center;
    gap: 15px;
}

/* --- Botón CTA 'Cuenta' (Derecha) --- */
.cta-button > a {
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover > a {
    background-color: #fff;
    color: #000;
}

/* --- Menú Desplegable --- */
.menu-vertical {
    position: absolute;
    display: none;
    list-style: none;
    width: 200px;
    top: 100%;
    right: 0;
    left: auto;
    transform: none;
    
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 101;
}

.navbar .menu-vertical {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.menu-horizontal li:hover .menu-vertical {
    display: block;
}

.menu-vertical li a {
    display: block;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 15px;
    text-decoration: none;
    text-align: left;
    transition: background-color 0.3s ease;
}

.menu-vertical li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ============================================= */
/* --- ESTILOS DE BOTONES PERSONALIZADOS --- */
/* ============================================= */

.btn-hero {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #c7afaf;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    display: inline-block;
}
.btn-hero:hover {
    background-color: #c03535;
    box-shadow: 0px 15px 20px rgba(229, 46, 46, 0.4);
    color: #fff;
    transform: translateY(-7px);
}
.btn-hero:active {
    transform: translateY(-1px);
}

.btn-ticket {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-ticket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    transition: all 250ms;
}
.btn-ticket:hover {
    color: #e8e8e8;
}
.btn-ticket:hover::before {
    width: 100%;
}

.btn-card {
    display: inline-block;
    padding: 15px 25px;
    border: 0;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}
.btn-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    transition: all 250ms;
    transform: translate(-50%, -50%);
}
.btn-card:hover {
    color: #e8e8e8;
}
.btn-card:hover::before {
    width: 100%;
    height: 100%;
}
.btn-card:active {
    transform: scale(0.9);
}

/* Iconos Sociales con Animación */
.social-icons .social-button, .red-social .social-button, .mobile-social-icons .social-button {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: none;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s;
    text-decoration: none;
}
.social-button svg {
    color: white;
    width: 20px;
    height: 20px;
    z-index: 9;
}
.social-button:active {
    transform: scale(0.85);
}
.social-button::before {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #212121;
    border-radius: 50px;
    z-index: -1;
    transition: 0.4s;
}
.social-button:hover::before {
    width: 0px;
    height: 0px;
}
.social-button.facebook {
    background: #1877F2;
}
.social-button.instagram {
    background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
}
.social-button.tiktok {
    background: black;
}
.social-button.whatsapp {
    background: linear-gradient(120deg, #02ff2c, #008a12);
}


/* ============================================= */
/* --- ESTILOS DEL CONTENIDO DE LA PÁGINA --- */
/* ============================================= */

.header {
    height: 100vh;
    background: url(../img/Fondo_Up_2.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    margin-bottom: 20px;
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

p {
    margin-bottom: 30px;
    font-size: 20px;
    color: #fff;
    padding: 0 180px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.sau {
    background: #222222;
}
.sau .title {
    color: #fff;
}
.sau p {
    color: #ccc;
    text-align: center;
}

.box-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.box-container .box {
    padding: 20px;
    width: 290px;
    background: #171717;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.box-container .box i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    background: #717071;
    font-size: 25px;
    margin-bottom: 15px;
}

.box-container .box h3 {
    font-size: 20px;
    color: #e91e1e;
    margin-bottom: 15px;
}

.box-container .box p {
    padding: 0 10px;
    font-size: 16px;
    text-align: left;
    color: #ccc;
    line-height: 1.5;
}

.price {
    background: url(../img/Fondo_Down_1.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 70vh;
}
.price .contain {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
}
.price .contain .title {
    margin-bottom: 20px;
}
.price .contain p {
    padding: 0 20px;
    font-size: 18px;
}

.about {
    background: #222222;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    width: 325px;
    background-color: #171717;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.5);
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.7);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.card-content p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    text-shadow: none;
    margin-bottom: 16px;
}

/* ============================================= */
/* --- ESTILOS PARA EL PIE DE PÁGINA --- */
/* ============================================= */
.pie-pagina {
    width: 100%;
    background-color: #171717;
}
.pie-pagina .grupo-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 20px;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure img {
    width: 200px;
}
.pie-pagina .grupo-1 .box h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: left;
}
.pie-pagina .grupo-1 .box .footer-links {
    list-style: none;
    padding: 0;
    text-align: left;
}
.pie-pagina .grupo-1 .box .footer-links li {
    margin-bottom: 10px;
}
.pie-pagina .grupo-1 .box .footer-links a {
    color: #efefef;
    text-decoration: none;
    transition: color 300ms ease;
}
.pie-pagina .grupo-1 .box .footer-links a:hover {
    color: #f7a01c;
}
.pie-pagina .grupo-1 .red-social {
    text-align: left;
    display: flex;
    gap: 10px;
}
.pie-pagina .grupo-2 {
    background-color: #111111;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small {
    font-size: 15px;
}

/* ============================================= */
/* --- MEDIA QUERIES Y MENÚ MÓVIL --- */
/* ============================================= */
.nav-toggle-btn {
    display: none;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
#overlay.is-active {
    display: block;
    opacity: 1;
}

@media (max-width: 992px) {
    .navbar, .header-right {
        display: none;
    }
    .nav-toggle-btn {
        display: block;
        background: transparent;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
    }
    .head {
        padding: 0 20px;
        justify-content: space-between;
    }
    .logo {
        flex: none;
    }
    p {
        padding: 0 30px;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background-color: #111;
    z-index: 101;
    transition: right 0.4s ease-in-out;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile-nav.is-active {
    right: 0;
}
.nav-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin-top: 80px;
    width: 100%;
    text-align: center;
}
.mobile-menu-links li {
    margin-bottom: 25px;
}
.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.mobile-menu-item-has-children .fa-chevron-down {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.mobile-menu-item-has-children.is-open > a > .fa-chevron-down {
    transform: rotate(180deg);
}
.mobile-submenu {
    list-style: none;
    padding: 10px 0 0 0;
    margin-top: 15px;
    background-color: #222;
    border-radius: 5px;
    display: none;
}
.mobile-menu-item-has-children.is-open > .mobile-submenu {
    display: block;
}
.mobile-submenu li {
    margin-bottom: 10px; /* Aumenta el espacio entre elementos del submenú */
}

.mobile-submenu li:first-child {
    margin-top: 10px; /* Espacio desde la parte superior del submenú */
}

.mobile-submenu li:last-child {
    margin-bottom: 10px; /* Espacio antes de terminar el submenú */
}

.mobile-submenu a {
    font-size: 18px;
    color: #ccc;
    padding: 8px 2px; /* Añade un poco de padding vertical para más altura al clickear */
}
.mobile-social-icons {
    margin-top: auto;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

@media (max-width: 800px) {
    .pie-pagina .grupo-1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
        padding: 35px 0px;
    }
    .pie-pagina .grupo-1 .box figure,
    .pie-pagina .grupo-1 .box h2,
    .pie-pagina .grupo-1 .box .footer-links,
    .pie-pagina .grupo-1 .red-social {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 45px;
    }
    p {
        font-size: 16px;
    }
    .box-container .box, .card {
        width: 90%;
    }
    .price .contain {
        max-width: 90%;
    }
}