/* ========================================================================== 1. ESTILOS GENERALES Y RESET ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 60px;
    background: #050505;
    color: white;
    overflow-x: hidden;
    z-index: 9999
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ff5b1f;
    border-radius: 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: #aaa;
    font-size: 1rem;
}

/* ========================================================================== 2. LIGHTBOX PREMIUM (REPARADO CON CLASE DE ZOOM) ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .96);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 15px;
    box-shadow: 0 25px 40px rgba(255, 255, 255, 0.1);
    transition: transform 0.1s ease;
}

/* Esta clase controlará el efecto de zoom cada vez que se aplique */
.lightbox img.zoom-anim {
    animation: zoomIn 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 91, 31, .25);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: .3s;
    z-index: 100000;
}

.lightbox-btn:hover {
    background: #ff5b1f;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: .3s;
}

.close-lightbox:hover {
    background: #ff5b1f;
    transform: rotate(90deg);
}

/* ========================================================================== 3. HEADER & NAVBAR (CON MENÚ HAMBURGUESA MÓVIL) ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    /* Esto fuerza la fila horizontal */
    align-items: center;
    font-weight: 800;
}

.logo span {
    /* Si quieres dos colores sin que se rompa la fila */
    background: linear-gradient(90deg, #ffffff 40%, #ffd700 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    /* Esto es vital: evita saltos de línea */
    white-space: nowrap;
    /* Evita que el texto se parta en dos */
    font-size: 1.5rem;
    transition: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* EFECTO ANIMADO X AL ABRIR */
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #ff5b1f;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #ff5b1f;
}

/* MENÚ DESPLEGABLE EN MÓVIL */
.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 999;
}

/* Cuando se activa, entra desde la izquierda */
.menu.active {
    left: 0;
}

.menu a {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s;
}

.menu a:hover {
    color: #ff5b1f;
    transform: scale(1.1);
}

/* ADAPTACIÓN PARA ESCRITORIO (PC) */
@media(min-width: 769px) {
    .logo {
        font-size: 1.6rem;
    }

    .logo img {
        height: 65px;
    }

    .menu-toggle {
        display: none;
    }

    .menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        gap: 25px;
        z-index: 1;
    }

    .menu a {
        font-size: 1rem;
        text-transform: none;
        letter-spacing: 0;
        font-weight: 500;
    }
}

/* ========================================================================== 4. HERO SECTION ========================================================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, .9));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    animation: fadeUp 1.5s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #ff5b1f;
    text-shadow: 0 0 20px rgba(255, 91, 31, .7);
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ========================================================================== 5. BOTONES ========================================================================== */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: .4s;
    display: inline-block;
}

.btn-primary {
    background: #ff5b1f;
    color: white;
}

.btn-outline {
    border: 2px solid #ff5b1f;
    color: white;
}

.btn-outline:hover {
    background: #ff5b1f;
}

/* ========================================================================== 6. STATS ========================================================================== */
.stats {
    padding: 80px 0;
    background: #0d0d0d;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-box {
    background: #111;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
}

.stat-box h2 {
    font-size: 2.8rem;
    color: #ff5b1f;
    margin-bottom: 10px;
}

/* ========================================================================== 7. SERVICES ========================================================================== */
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: #111;
    padding: 35px;
    border-radius: 25px;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ff5b1f;
}

.service-card i {
    font-size: 2.8rem;
    color: #ff5b1f;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

/* ========================================================================== 8. PACKAGES ========================================================================== */
.packages {
    background: #0d0d0d;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: #111;
    padding: 35px;
    border-radius: 25px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff5b1f;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-card ul li {
    margin-bottom: 12px;
    color: #ddd;
}

/* ========================================================================== 9. GALERIA PREMIUM ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
    cursor: pointer;
    border: 2px solid transparent;
    background: #111;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: #ff5b1f;
}

/* ========================================================================== 10. VIDEO PREMIUM & PLAYLIST ========================================================================== */
.video-section {
    padding: 80px 0;
    background: #0b0b0b;
}

.main-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 20px 50px rgba(255, 255, 255, .1);
    background: #000;
}

.main-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-playlist {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.video-playlist::-webkit-scrollbar {
    height: 6px;
}

.video-playlist::-webkit-scrollbar-thumb {
    background: #ff5b1f;
    border-radius: 10px;
}

.playlist-item {
    min-width: 280px;
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 15px;
    background: #111;
    cursor: pointer;
    transition: .3s;
    border: 2px solid transparent;
}

.playlist-item.active-video,
.playlist-item:hover {
    border-color: #ff5b1f;
    background: #1a1a1a;
}

.playlist-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.playlist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.playlist-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.playlist-info p {
    font-size: .85rem;
    color: #aaa;
}

/* ========================================================================== 11. AUDIO PLAYER ========================================================================== */
.player {
    padding: 60px 0;
}

.audio-player {
    width: 100%;
    max-width: 700px;
    /* Limitamos el ancho para que no se estire demasiado */
}

/* ========================================================================== ESTILOS PREMIUM REPRODUCTOR DE AUDIO PERSONALIZADO ========================================================================== */

/* ========================================================================== 12. FAQ ========================================================================== */
.faq {
    background: #0d0d0d;
}

.faq-item {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.faq-item h4 {
    color: #ff5b1f;
    margin-bottom: 8px;
}

/* ========================================================================== NUEVA SECCIÓN DE CONTACTO ASIMÉTRICA ========================================================================== */
.contacto-section {
    padding: 80px 0;
    background: #050505;
}

.contacto-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* COLUMNA 1: TEXTO CON LA IMAGEN DE FONDO */
.contacto-info-column {
    position: relative;
    width: 100%;
    padding: 40px 30px;
    border-radius: 20px;
    overflow: hidden;
    background-image: url('img/chicaa.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacto-info-column::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.contacto-info-column h2,
.contacto-info-column .texto-grande,
.contacto-info-column .contacto-datos-lista {
    position: relative;
    z-index: 2;
}

.contacto-info-column h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: orange;
}

.contacto-info-column .texto-grande {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 25px;
}

.contacto-datos-lista p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #e5e5e5;
}

/* COLUMNA 2: FORMULARIO */
.contacto-formulario-column {
    width: 100%;
    max-width: 500px;
    margin: auto;
    background: #111111;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contacto-formulario-column form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacto-formulario-column input,
.contacto-formulario-column textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
}

.contacto-formulario-column textarea {
    min-height: 130px;
    resize: none;
}

.contacto-formulario-column button {
    border: none;
    padding: 15px;
    border-radius: 10px;
    background: orange;
    color: white;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contacto-formulario-column button:hover {
    background: #ff9800;
    transform: translateY(-2px);
}

/* COMPORTAMIENTO PARA PC */
@media(min-width: 769px) {
    .contacto-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 40px;
    }

    .contacto-info-column {
        width: 55%;
        padding: 50px;
    }

    .contacto-formulario-column {
        width: 42%;
        margin: 0;
    }
}

/* ========================================================================== 14. FOOTER & SOCIALS ========================================================================== */
footer {
    background: black;
    padding: 40px 0;
    text-align: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: .3s;
    font-size: 1.1rem;
}

.socials a:hover {
    background: #ff5b1f;
}

/* ========================================================================== 15. AUDIO BAR ========================================================================== */

/* Barra fija */
.fixed-audio-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #050505;
    padding: 10px 20px;
    z-index: 9999;
    border-top: 1px solid #ff5b1f;
}

.bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    gap: 20px;
}

/* Ajuste del reproductor para que sea más compacto */
.audio-player {
    width: 85%;
}

.player-custom-interface {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botón WhatsApp */
.whatsapp-mini {
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .whatsapp-mini span {
        display: none;
    }

    .whatsapp-mini {
        padding: 10px;
        border-radius: 50%;
    }

    .player-progress-container {
        display: none;
    }

}



/* ========================================================================== 16. MEDIA QUERIES (ESCRITORIO - TOTALMENTE CENTRADO) ========================================================================== */
@media(min-width: 769px) {
    section {
        padding: 100px 0;
    }

    .section-title h2 {
        font-size: 3rem;
    }

    .navbar {
        padding: 20px 0;
    }

    .logo {
        font-size: 2rem;
    }

    .logo img {
        height: 80px;
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 1.1;
    }

    .contacto-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
    }

    .contacto-info {
        width: 48%;
        text-align: left;
    }

    .contacto-info h2 {
        font-size: 3.5rem;
    }

    .contacto-formulario {
        width: 48%;
        max-width: 500px;
        margin: 0;
    }

    .playlist-item {
        min-width: 320px;
    }

    .playlist-item img {
        width: 150px;
        height: 95px;
    }

    .playlist-info h4 {
        font-size: 1rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================================== ILUMINACIÓN PREMIUM Y EFECTO ESCENARIO (LA SUPER NOCHE) ========================================================================== */
body,
.packages,
.stats,
.faq,
.video-section,
.services {
    background: linear-gradient(135deg, #050505 0%, #0c0514 50%, #170702 100%) !important;
}

.hero h1 span,
.section-title h2,
.stat-box h2,
.price,
.contacto-info-column h2 {
    color: #ff5b1f !important;
    text-shadow: 0 0 10px rgba(255, 91, 31, 0.6), 0 0 25px rgba(255, 91, 31, 0.4), 0 0 50px rgba(255, 91, 31, 0.2) !important;
}

.service-card,
.package-card,
.stat-box,
.faq-item {
    background: rgba(15, 15, 20, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 91, 31, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.service-card:hover,
.package-card:hover,
.stat-box:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: #ff5b1f !important;
    box-shadow: 0 12px 30px rgba(255, 91, 31, 0.25) !important;
    background: rgba(255, 91, 31, 0.04) !important;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #ff7843 !important;
    filter: drop-shadow(0 0 8px rgba(255, 91, 31, 0.6));
}

.btn-primary,
.contacto-formulario-column button {
    background: linear-gradient(90deg, #ff5b1f, #ff7843) !important;
    box-shadow: 0 4px 15px rgba(255, 91, 31, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.contacto-formulario-column button:hover {
    background: linear-gradient(90deg, #ff7843, #ff5b1f) !important;
    box-shadow: 0 0 25px rgba(255, 91, 31, 0.7) !important;
    transform: translateY(-3px) !important;
}

.hero,
.contacto-section,
.video-section {
    position: relative;
}

.hero::after,
.contacto-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 91, 31, 0.15) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    z-index: 0;
    pointer-events: none;
}

.video-section::after,
.contacto-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 45, 226, 0.1) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 0;
    pointer-events: none;
}

.contacto-container {
    position: relative;
    z-index: 5;
}

/* ========================================================================== Efecto Concierto Multi-Color (Naranja + Fucsia + Turquesa) ========================================================================== */
body,
.packages,
.faq,
.services {
    background: linear-gradient(135deg, #050505 0%, #12031a 40%, #1e0513 75%, #1a0802 100%) !important;
}

.video-section,
.stats {
    background: linear-gradient(225deg, #040814 0%, #0c0214 50%, #14020b 100%) !important;
}

.hero h1 span,
.section-title h2,
.price,
.contacto-info-column h2 {
    background: linear-gradient(90deg, #ff5b1f 0%, #ff007f 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
    text-shadow: none !important;
    filter: drop-shadow(0 0 15px rgba(255, 0, 127, 0.4));
}

.service-card,
.package-card,
.stat-box {
    border: 1px solid rgba(255, 0, 127, 0.15) !important;
}

.service-card:hover,
.package-card:hover,
.stat-box:hover {
    border-color: #ff007f !important;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.2), 0 0 15px rgba(255, 91, 31, 0.15) !important;
    background: rgba(20, 2, 15, 0.6) !important;
}

.service-card i,
.stat-box h2,
.contacto-datos-lista p:nth-child(1) {
    color: #00f3ff !important;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6));
    transition: all 0.3s ease;
}

.service-card:hover i {
    color: #ff007f !important;
    filter: drop-shadow(0 0 12px rgba(255, 0, 127, 0.8));
}

.hero::after,
.contacto-section::after {
    background: radial-gradient(circle, rgba(255, 91, 31, 0.18) 0%, transparent 65%) !important;
}

.video-section::after,
.contacto-section::before {
    background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, transparent 60%) !important;
}

.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.08) 0%, transparent 70%);
    top: 20%;
    left: 70%;
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 2;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff5b1f, #ff007f, #00f3ff) !important;
}

.lightbox img.zoom-anim {
    animation: zoomIn 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

/* ========================================================================== NUEVA ADAPTACIÓN TOTAL PARA CELULARES (TEXTOS CONTROLADOS) ========================================================================== */
@media (max-width: 768px) {
    section {
        padding: 50px 0 !important;
    }

    .section-title h2 {
        font-size: 2rem !important;
    }

    .section-title p {
        font-size: 0.9rem !important;
    }

    .hero h1 {
        font-size: 2.3rem !important;
        line-height: 1.2 !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    .stat-box h2 {
        font-size: 2.2rem !important;
    }

    .stat-box p {
        font-size: 0.85rem !important;
    }

    .price {
        font-size: 2.2rem !important;
    }

    .contacto-info-column h2 {
        font-size: 2.2rem !important;
        text-align: center !important;
    }

    .contacto-info-column .texto-grande {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .contacto-datos-lista p {
        font-size: 0.95rem !important;
        text-align: center !important;
    }

    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ========================================================================== ANIMACIONES DE DESPLAZAMIENTO PREMIUM (SCROLL REVEAL) ========================================================================== */
.reveal-efect {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: opacity, transform;
}

.reveal-efect.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================== ESTILOS DEL PRELOADER PREMIUM ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 1000000;
    /* Por encima de absolutamente todo */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-content {
    text-align: center;
}

/* El círculo giratorio Neón */
.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 91, 31, 0.1);
    border-left-color: #00f3ff;
    /* Turquesa */
    border-right-color: #ff007f;
    /* Fucsia */
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spinPreloader 1s linear infinite;
    filter: drop-shadow(0 0 10px #00f3ff);
}

.preloader-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #ff5b1f, #ff007f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 12px rgba(255, 0, 127, 0.4));
}

.preloader-content p {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animación de rotación */
@keyframes spinPreloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Clase que aplicará JS para desaparecerlo con suavidad */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ========================================================================== CONTACTO INTERACTIVO Y PREMIUM ========================================================================== */
.contacto-formulario-column {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contacto-formulario-column:hover {
    border-color: #ff5b1f;
    box-shadow: 0 0 30px rgba(255, 91, 31, 0.2);
    transform: translateY(-5px);
}

.contacto-formulario-column input:focus,
.contacto-formulario-column textarea:focus {
    outline: 2px solid #ff5b1f;
    background: rgba(255, 255, 255, 0.1);
}

/* Animación de carga en botón */
.enviando {
    opacity: 0.7;
    cursor: wait !important;
}

/* ========================================================================== HERO PREMIUM: EFECTO DE PROFUNDIDAD Y ENTRADA ========================================================================== */
.hero-content {
    background: rgba(0, 0, 0, 0.4);
    /* Capa oscura semitransparente */
    backdrop-filter: blur(10px);
    /* Efecto cristal esmerilado */
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 40px !important;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: despertarHero 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Efecto de luz "neón" en el título */
.hero h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mejora para los botones en el Hero */
.btn {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
}

/* ========================================================================== ANIMACIÓN "DESPERTAR" (SCALE FADE-IN)f ========================================================================== */
@keyframes despertarHero {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* efecto hover barra */

/* Transición suave para todos los elementos */
.fixed-audio-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    padding: 10px 20px;
    border-top: 2px solid #ff5b1f;
    /* Línea naranja más definida */
    z-index: 9999;
}

.bar-container {
    display: flex;
    justify-content: space-between;
    /* Distribuye el espacio equitativamente */
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Alineación de grupos */
.player-left,
.player-middle {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

/* Botón Play */
.custom-player-btn {
    background: transparent;
    border: 1px solid #ff5b1f;
    color: #ff5b1f;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

/* Ajuste del Slider de volumen */
#volume-slider {
    width: 100px;
    accent-color: #ff5b1f;
    /* Color naranja al slider */
}

/* Ajuste del botón Contacto */

/* Botón de WhatsApp - Versión Profesional */
.whatsapp-mini {
    background-color: #25d366;
    /* Verde icónico de WhatsApp */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    /* Forma de píldora redondeada */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efecto Hover: Al pasar el mouse, sube un poco y brilla */
.whatsapp-mini:hover {
    background-color: #1ebe5d;
    /* Un verde un poco más oscuro */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

/* Animación sutil de "Pulsación" (opcional, para captar atención) */
.whatsapp-mini {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste del icono dentro del botón */
.whatsapp-mini i {
    font-size: 1.1rem;
}