:root {
    --bg: #1d1a15;
    --surface: #25221d;
    --card: #2b2720;
    --primary: #f7a01e;
    --primary-rgb: 255, 189, 89;
    --primary-light: #ffc977;
    --primary-dark: #b88840;
    --text: #FFFFFF;
    --muted: #afa89d;
}

/* --- ESTILOS BASE --- */
.style-9 {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.style-46 {
    scroll-behavior: smooth;
}

.style-2 {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(180deg, #1d1a15 15%, rgba(29, 26, 21, 0.95) 50%, rgba(29, 26, 21, 0.4) 100%);
}

@media(min-width: 768px) {
    .style-2 {
        background: linear-gradient(90deg, #1d1a15 25%, rgba(29, 26, 21, 0.95) 40%, rgba(29, 26, 21, 0.7) 55%, rgba(29, 26, 21, 0.3) 65%, transparent 75%);
    }
}

.style-3 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    /* Se ancla a la derecha */
    left: auto;
    /* Ignora la izquierda */
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

@media(min-width: 768px) {
    .style-3 {
        width: 70%;
        /* En PC ocupa solo el 70% derecho */
    }
}


/* --- NAVBAR --- */


/* --- HERO --- */
.flex-style-42 {
    position: relative;
    margin-top: 5rem;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg);
}

.btn-style-45 {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.style-29 {
    max-width: 48rem;
}

.flex-style-62 {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-left: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.style-77 {
    width: 2rem;
    height: 2px;
    background-color: var(--primary);
}

.style-54 {
    font-size: 3.75rem;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    line-height: 0.85;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03));
}

@media(min-width: 768px) {
    .style-54 {
        font-size: 6rem;
    }
}

@media(min-width: 1024px) {
    .style-54 {
        font-size: 7rem;
    }
}

.style-66 {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, white, #ffffff);
}

.style-25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 3rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

@media(min-width: 640px) {
    .style-25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.flex-style-19 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.style-12 {
    background-color: rgba(255, 189, 89, 0.2);
    width: 2.5rem;
    /* Ancho fijo */
    height: 2.5rem;
    /* Alto fijo */
    border-radius: 0.25rem;
    color: var(--primary);
    flex-shrink: 0;
    display: flex;
    /* Para centrar el icono */
    align-items: center;
    justify-content: center;
    /* Eliminamos padding porque usamos flex center */
}

.style-75 {
    width: 1.25rem;
    height: 1.25rem;
}

.style-28 {
    transition: color 0.2s;
}

.flex-style-19:hover .style-28 {
    color: white;
}

.style-61 {
    color: var(--primary);
    font-weight: 700;
}

.style-33 {
    margin-bottom: 2.5rem;
    color: white;
    font-size: 0.875rem;
    max-width: 42rem;
    line-height: 1.625;
    display: none;
}

@media(min-width: 768px) {
    .style-33 {
        display: block;
    }
}

.flex-style-16 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

@media(min-width: 640px) {
    .flex-style-16 {
        flex-direction: row;
        align-items: center;
    }
}

.card-style-27 {
    position: relative;
    background-color: var(--primary);
    color: black;
    border-radius: 0.5rem;
    padding: 1rem 2rem 1rem 1.25rem;
    transition: all 0.2s;
    transform: scale(1);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    min-width: 320px;
    box-shadow: 0 10px 15px -3px rgba(255, 189, 89, 0.1);
    border-bottom: 4px solid var(--primary-dark);
}

.card-style-27:hover {
    background-color: rgb(255, 160, 17);
    transform: scale(1.01);
}

.card-style-27:active {
    border-bottom-width: 0;
    transform: translateY(4px);
}

.style-52 {
    font-size: 1.875rem;
    opacity: 0.8;
    transition: transform 0.3s;
}

.card-style-27:hover .style-52 {
    transform: rotate(12deg);
}

.flex-style-15 {
    display: flex;
    flex-direction: column;
}

.style-55 {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.7;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}

.style-68 {
    font-size: 1.25rem;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.025em;
}

.text-style-69 {
    font-size: 0.75rem;
    vertical-align: top;
}

/* --- LOCATION CARDS & MAP --- */
.btn-style-39 {
    background-color: #1d1a15;
    /* Tu color exacto */
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Asegúrate de que no tenga border-bottom si lo quitamos antes */
}

.style-31 {
    max-width: 1200px;
    margin: 0 auto;
}

.text-style-57 {
    text-align: center;
    margin-bottom: 4rem;
}

.style-63 {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.style-53 {
    font-size: 2.25rem;
    font-family: 'Archivo Black', sans-serif;
    color: white;
    text-transform: uppercase;
}

@media(min-width: 768px) {
    .style-53 {
        font-size: 3rem;
    }
}






.style-26 {
    display: grid;
    gap: 2rem;
}

/* Versión Escritorio (PC/Laptop) - 3 columnas */
@media (min-width: 992px) {
    .style-26 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        width: 100% !important;
    }
}

/* Versión Tablet - 2 columnas (Opcional, para que no se vea apretado) */
@media (min-width: 768px) and (max-width: 991px) {
    .style-26 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

/* Versión Móvil - 1 columna (Para que no se rompa en teléfonos) */
@media (max-width: 767px) {
    .style-26 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}







.card-style-10 {
    background-color: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.card-style-10:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(255, 189, 89, 0.15);
    border-color: var(--primary);
}

.style-0 {
    position: absolute;
    right: -2.5rem;
    top: -2.5rem;
    font-size: 10rem;
    opacity: 0.03;
    user-select: none;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.card-style-10:hover .style-0 {
    filter: grayscale(0);
}

.style-44 {
    position: relative;
    z-index: 10;
}

.flex-style-21 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.style-50 {
    font-size: 1.875rem;
    font-family: 'Archivo Black', sans-serif;
    color: white;
    margin-bottom: 0.25rem;
}

.style-58 {
    font-size: 1.125rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.btn-style-18 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-family: monospace;
    font-size: 0.75rem;
    background-color: rgba(255, 189, 89, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    width: fit-content;
}

.style-72 {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.style-37 {
    font-size: 0.875rem;
}

.text-style-65 {
    text-align: right;
}

.style-49 {
    font-size: 1.5rem;
    font-family: 'Archivo Black', sans-serif;
    color: white;
}

.style-71 {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
}

.style-48 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;

    /* --- AÑADE ESTO --- */
    min-height: 70px;
    /* Ajusta este valor hasta que los botones queden alineados */
}

.flex-style-20 {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.text-style-35 {
    margin-top: 0.25rem;
    color: var(--primary);
}

.style-67 {
    color: white;
    display: block;
    font-family: 'Archivo Black', sans-serif;
}

.text-style-59 {
    color: var(--muted);
    font-size: 0.875rem;
}

.card-style-13 {
    display: block;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.card-style-13:hover {
    background-color: var(--primary);
    color: black;
    border-color: var(--primary);
}

/* --- MAPA --- */
.style-43 {
    position: relative;
    width: 100%;
    max-width: 64rem;
    margin: 3rem auto 0;
    user-select: none;
    z-index: 0;
}

.style-78 {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.9;
    position: relative;
    z-index: 0;
    display: block;
}

.style-4 {
    position: absolute;
    top: 42.8%;
    left: 45.3%;
    cursor: pointer;
    z-index: 10;
}

.style-5 {
    position: absolute;
    top: 49.8%;
    left: 22.3%;
    cursor: pointer;
    z-index: 10;
}

.style-4:hover,
.style-5:hover {
    z-index: 50;
}

.flex-style-41 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.style-6,
.style-7 {
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 12px;
    min-height: 12px;
    background-color: rgba(255, 189, 89, 0.6);
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

.style-7 {
    animation-delay: 0.7s;
}

.card-style-74 {
    width: 0.875rem;
    height: 0.875rem;
    background-color: #6b4e28;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 189, 89, 0.6);
    position: relative;
    z-index: 10;
}

.style-1 {
    position: absolute;
    bottom: 100%;
    margin-bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    opacity: 0;
    pointer-events: none;
    min-width: max-content;
    z-index: 50;
    transition: all 0.3s;
}

.style-4:hover .style-1,
.style-5:hover .style-1 {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-style-8 {
    background-color: rgba(43, 34, 21, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 189, 89, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.style-76 {
    width: 1.25rem;
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.card-style-73 {
    width: 0.625rem;
    height: 0.625rem;
    background-color: rgba(43, 34, 21, 0.95);
    border-right: 1px solid rgba(255, 189, 89, 0.3);
    border-bottom: 1px solid rgba(255, 189, 89, 0.3);
    transform: rotate(45deg);
    position: absolute;
    left: 50%;
    margin-left: -0.3125rem;
    bottom: -0.375rem;
}

/* --- FAQ & FOOTER --- */
/* ===== FAQ COMPACTO Y MEJORADO ===== */
.btn-style-38 {
    padding: 3rem 1.5rem;
    background-color: var(--bg);
}

.style-30 {
    max-width: 58rem;
    margin: 0 auto;
}

/* Título compacto */
.style-51 {
    font-size: 2rem;
    font-family: 'Archivo Black', sans-serif;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.style-47 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Tarjeta FAQ compacta con mejor diseño */
.card-style-11 {
    background: linear-gradient(145deg, #2b2720 0%, #26221c 100%);
    padding: 0;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.card-style-11:hover {
    border-color: rgba(247, 160, 30, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Barra lateral dorada al abrir */
details[open] .card-style-11::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 0.625rem 0 0 0.625rem;
}

/* Pregunta compacta */
.flex-style-23 {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.flex-style-23::-webkit-details-marker {
    display: none;
}

/* Icono mejorado con círculo */
.style-64 {
    color: var(--primary);
    transition: transform 0.25s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 160, 30, 0.12);
    border-radius: 50%;
}

details[open] .style-64 {
    transform: rotate(180deg);
    background: rgba(247, 160, 30, 0.2);
}



/* Respuesta compacta */
.style-36 {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Sobrescribimos el ancho máximo SOLO para la sección de ubicaciones */
#locations .style-31 {
    max-width: 1700px !important; /* Aquí defines el nuevo ancho "por encima" del estándar */
    width: 95% !important;        /* Para que no toque los bordes en pantallas menores a 1700px */
    padding-left: 1rem !important; /* Ajuste opcional para aprovechar espacio */
    padding-right: 1rem !important;
}




/* Footer compacto */
.card-style-40 {
    padding: 2rem 1.5rem;
    background-color: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
}

.style-34 {
    margin-bottom: 0.75rem;
}

.style-22 {
    font-weight: 700;
    color: white;
    transition: color 0.2s ease;
}

.style-22:hover {
    color: var(--primary);
}

/* Responsive */
@media(max-width: 768px) {
    .btn-style-38 {
        padding: 2.5rem 1rem;
    }

    .style-51 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .flex-style-23 {
        padding: 1.125rem 1.25rem;
        font-size: 0.9rem;
    }

    .style-36 {
        padding: 0 1.25rem 1.125rem 1.25rem;
        font-size: 0.85rem;
    }

    .style-64 {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1rem;
    }
}


/* ANIMACIONES */
@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    50% {
        opacity: .5;
    }
}

/* Quitar subrayado en todos los enlaces dentro de botones (buscar otra solucion a largo plazo) */
a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

/*Features 2 secction*/

/* --- NUEVA SECCIÓN: FEATURES GRID --- */
.features-detailed-section {
    background-color: var(--surface);
    /* MISMO FONDO QUE UBICACIONES */
    padding: 6rem 1.5rem;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Borde sutil superior */
}

.text-center {
    text-align: center;
}

.features-desc-text {
    color: #afa89d;
    /* Color "muted" del tema */
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .features-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-box {
    background-color: rgba(29, 26, 21, 0.6);
    /* Fondo semitransparente oscuro */
    padding: 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: rgba(29, 26, 21, 0.9);
    border-color: var(--primary);
    /* Borde dorado al pasar el mouse */
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Contenedor del icono (estilo cuadrado suave) */
.feature-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 189, 89, 0.1);
    /* Fondo dorado muy suave */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    /* Icono dorado */
}

.feature-icon-svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.feature-box p {
    color: #afa89d;
    /* Texto gris suave */
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Ping colors (sin Tailwind) */
.ping-ms {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 800;
    font-size: 0.9rem;
}

.ping-good {
    color: #22c55e;
}

/* verde */
.ping-mid {
    color: #eab308;
}

/* amarillo */
.ping-bad {
    color: #ef4444;
}

/* rojo */
.ping-na {
    color: #6b7280;
}

/* gris */

/*Planes Recomendados */

/* === SECCIÓN PRECIOS LIMPIA (FINAL) === */

.pricing-clean-section {
    background-color: #25221d;
    /* O tu color de fondo oscuro */
    padding: 5rem 1rem;
    color: white;
    font-family: 'Inter', sans-serif;

    /* ELIMINAR HUECO SUPERIOR */
    padding-top: 1rem !important;
    /* Reduce el 80px a algo razonable como 32px */
    position: relative;
    /* overflow: visible;  <-- Asegúrate de que esto esté para que se vea el Creeper */
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-header-center {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header-center-2 {
    margin-top: -20px;
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header-center h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-header-center p {
    color: #999;
    font-size: 1.1rem;
}

/* --- GRID PRINCIPAL --- */
.pricing-grid-clean {
    display: grid;
    grid-template-columns: 1fr;
    /* Móvil: 1 columna */
    gap: 2rem;
    align-items: stretch;
    /* CLAVE: Todas miden lo mismo de alto */
}

@media (min-width: 900px) {
    .pricing-grid-clean {
        grid-template-columns: repeat(3, 1fr);
        /* PC: 3 columnas */
    }
}

/* --- TARJETAS --- */
.price-card-clean {
    background: #1c1915;
    /* Fondo oscuro */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    /* Flex vertical */
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.price-card-clean:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 189, 89, 0.5);
}

/* Destacada (Silver) */
.price-card-clean.featured {
    background: #25211c;
    /* Ligeramente más claro */
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Badges */
.badge-clean {
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    color: #ccc;
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Tipografía */
.price-card-clean h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    font-family: 'Archivo Black', sans-serif;
}

.price-tag span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.gold-text {
    color: var(--primary);
}

.desc {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    min-height: 40px;
}

/* Lista características */
.features-clean {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
    /* Esto empuja el botón hacia abajo si sobra espacio */
}

.features-clean li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-clean li i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.features-clean li.highlight {
    color: white;
    font-weight: 600;
}

.features-clean li.dimmed {
    opacity: 0.6;
}

/* Botones */
.btn-clean-outline,
.btn-clean-solid {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
    /* CLAVE: Empuja el botón al fondo siempre */
    transition: all 0.3s;
}

.btn-clean-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
}

.btn-clean-outline:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
}

.btn-clean-solid {
    background: var(--primary);
    color: #000 !important;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(255, 189, 89, 0.4);
}

.btn-clean-solid:hover {
    background: #e0b875;
    transform: translateY(-2px);
}

.pricing-footer {
    text-align: center;
    margin-top: 4rem;
}

.btn-clean-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 30px;
    border-radius: 8px;
    transition: all 0.3s;
}


.btn-clean-link:hover {
    background: #333;
}

.btn-clean-outline,
.btn-clean-solid {
    /* Forzar medidas exactas */
    height: 50px;
    line-height: 50px;
    /* Centrar texto verticalmente */
    padding: 0 !important;
    /* Quitamos padding variable */
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    /* Para que el borde no sume al ancho */

    display: flex;
    /* Flex para centrar texto perfecto */
    align-items: center;
    justify-content: center;
}

/* Test IMG */

/* --- DECORACIONES 3D FLOTANTES (ADD-ON) --- */

/* Asegura que las tarjetas permitan elementos flotantes */
.price-card-clean {
    position: relative;
    z-index: 1;
    /* Para que el contenido esté por encima de la decoración si se cruzan */
    /* Si las imágenes se cortan, quita 'overflow: hidden' de aquí si lo tuvieras */
}

/* Clase común para todas las decoraciones */
.deco-item,

.deco-mob {
    position: absolute;
    pointer-events: none;
    /* Click a través de la imagen */
    z-index: 10;
    /* Por ENCIMA de la tarjeta para que se vea bien el efecto 3D */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    /* Sombra para dar profundidad */
}

/* 1. ESPADA FLOTANTE (Silver) */
.sword-float {
    width: 140px;
    /* Tamaño */
    top: -50px;
    /* Ajusta para subir/bajar */
    right: -30px;
    /* Ajusta para derecha/izquierda */
    transform: rotate(15deg);
    animation: floatingSword 4s ease-in-out infinite;
}

@keyframes floatingSword {

    0%,
    100% {
        transform: rotate(15deg) translateY(0px);
    }

    50% {
        transform: rotate(15deg) translateY(-15px);
    }
}

/* 2. CREEPER=Catalejo (Copper) - Animación Blindada */
.creeper-peek {
    width: 125px;
    top: -55px;
    left: -35px;
    z-index: 0;
    pointer-events: none;
    /* El ratón lo ignora */

    /* !important asegura que esta animación gane a cualquier 'hover' genérico de imágenes */
    animation: creeperSpy 6s ease-in-out infinite !important;

    /* Evita que una transición global intente 'parar' el movimiento */
    transition: none !important;
}

/* Regla de seguridad: Si hay un hover global que escala imágenes, esto lo anula para el creeper */
.price-card-clean:hover .creeper-peek {
    transform: none !important;
    /* Anula transformaciones estáticas externas... */
    animation: creeperSpy 6s ease-in-out infinite !important;
    /* ...y fuerza la animación a seguir */
}

/* Icono animado de Copper (catalejo) */
.creeper-peek {
    width: 125px;
    top: -55px;
    right: -35px;
    /* lo movemos a la derecha */
    left: auto;
    /* anulamos left */
    z-index: 0;
    pointer-events: none;
    animation: creeperSpy 6s ease-in-out infinite !important;
    transition: none !important;
    transform: scaleX(-1);
    /* invertido para que mire hacia dentro */
}




@keyframes creeperSpy {

    0%,
    100% {
        transform: rotate(-10deg) translateY(0px);
    }

    50% {
        transform: rotate(-5deg) translateY(-12px);
    }
}

/* IMPORTANTE: He borrado la regla :hover para que no reaccione al ratón */

/* Opcional: Si quieres que se asuste/reaccione rápido al hover, mantenemos esto */
.price-card-clean:hover .creeper-peek {
    animation: none;
    /* Pausa la animación suave */
    transform: rotate(0deg) translateY(-15px) scale(1.1);
    /* Se pone firme */
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* 3. LINGOTE DE ORO (Gold) */
.gold-float {
    width: 135px;
    top: -40px;
    right: -20px;
    transform: rotate(-15deg);
    animation: floatingGold 5s ease-in-out infinite;
    /* Ritmo distinto a la espada */
}

@keyframes floatingGold {

    0%,
    100% {
        transform: rotate(-15deg) translateY(0px);
    }

    50% {
        transform: rotate(-5deg) translateY(-12px);
    }
}

/* AJUSTES MÓVIL (Para que no molesten en pantallas pequeñas) */
@media (max-width: 900px) {
    .sword-float {
        width: 100px;
        top: -30px;
        right: -10px;
    }

    .gold-float {
        width: 80px;
        top: -25px;
        right: -10px;
    }

    .creeper-peek {
        width: 70px;
        top: -30px;
        left: -10px;
    }
}

/* Mapa */


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.country-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: all 0.2s;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.region-button {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    border: 1px solid transparent;
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
}

.region-button:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.region-button.active {
    background: #3b82f6;
    color: white;
    font-weight: 600;
}

.stat-bar {
    height: 8px;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.tooltip {
    position: fixed;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid #3b82f6;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1000;
}

svg {
    width: 100%;
    height: 100%;
}

svg .country {
    transition: all 0.2s ease;
}

@media (max-width: 1024px) {
    .grid-responsive {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) and (min-width: 640px) {
    .grid-responsive {
        grid-template-columns: 1fr !important;
        grid-template-rows: 600px auto auto !important;
        gap: 1.5rem !important;
    }

    .map-section {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .middle-row {
        grid-column: 1 !important;
        grid-row: 2 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    .countries-section {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }

    .sidebar-section {
        display: none !important;
    }
}

@media (max-width: 639px) {
    .grid-responsive {
        grid-template-columns: 1fr !important;
        grid-template-rows: 500px auto auto auto !important;
        gap: 1.5rem !important;
    }

    .map-section {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .regions-mobile {
        grid-column: 1 !important;
        grid-row: 2 !important;
        display: block !important;
    }

    .statistics-mobile {
        grid-column: 1 !important;
        grid-row: 3 !important;
        display: block !important;
    }

    .countries-section {
        grid-column: 1 !important;
        grid-row: 4 !important;
    }

    .sidebar-section,
    .middle-row {
        display: none !important;
    }
}

.middle-row,
.regions-mobile,
.statistics-mobile {
    display: none;
}

/* NavBar */

.nav-links-classic {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


.nav-links-classic {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


/* --- NAVBAR COMPLETO --- */
.nav-style-14 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 50;
    display: flex;
    align-items: center;
}

/* Contenedor interno del nav */
.flex-style-32 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* logo izquierda, links centro, botón derecha */
    box-sizing: border-box;
}

/* Logo */
.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Links centrales */
.nav-links-classic {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Estilo base de los items */
.nav-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #afa89d;
    text-decoration: none;
    padding: 0.4rem 0;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-item:hover {
    color: #ffffff;
}

/* Activo con línea naranja abajo */
.nav-item.active {
    color: #ffffff;
}

.nav-item.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    width: 60%;
    height: 2px;
    background-color: #f7a01e;
    border-radius: 999px;
}

/* Wrapper del botón derecha */
.nav-cta-wrapper {
    display: flex;
    align-items: center;
}

/* Botón Panel de Control */
.btn-style-70 {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    /* Texto + flecha más juntos */
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    /* Más cuadrado, esquinas 50% redondeadas aprox visual */
    background: #f7a01e;
    /* Sin neón ni degradado */
    color: #1d1a15;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* Texto dentro del botón (Panel de control) */
.text-style-56 {
    font-size: 0.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    /* Alinea verticalmente con la flecha */
}

/* Normalizar icono/flecha dentro del botón */
.btn-style-70 i,
.btn-style-70 svg {
    font-size: 0.9rem;
    display: block;
}

.btn-style-70:hover {
    background: #e5941d;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.btn-style-70:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

/* Compensar la altura del nav en el contenido */
.page-wrapper {
    padding-top: 80px;
    /* misma altura que nav */
}

/* En móvil puedes ocultar los links si quieres */
@media (max-width: 768px) {
    .nav-links-classic {
        display: none;
    }
}


/* SCROLLBAR */

/* --- Configuración para navegadores modernos (Firefox) --- */
* {
    scrollbar-width: thin;
    /* Barra más fina y elegante */
    scrollbar-color: #f7a01e transparent;
    /* Color del deslizador y fondo transparente */
}

/* --- Personalización avanzada (Chrome, Edge, Safari) --- */

/* 1. Contenedor de la barra: la hacemos más estrecha */
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    /* Para barras horizontales */
}

/* 2. Pista (Fondo): invisible o muy sutil para que no destaque */
*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    /* Un gris casi imperceptible */
    border-radius: 10px;
}

/* 3. El deslizador: aquí es donde aplicamos el color #f7a01e */
*::-webkit-scrollbar-thumb {
    background: #f7a01e;
    border-radius: 10px;
    /* Bordes totalmente redondeados (estética 'pill') */
    border: 2px solid transparent;
    /* Crea un efecto de margen interno */
    background-clip: content-box;
    /* Hace que el color no toque los bordes del track */
    transition: background 0.3s ease;
}

/* 4. Efecto Hover: el toque "bonito" al interactuar */
*::-webkit-scrollbar-thumb:hover {
    background: #d68910;
    /* Un tono un poco más oscuro al pasar el ratón */
    cursor: pointer;
}


/* Minecraft Characters */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.minecraft-characters {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.character-container {
    position: absolute;
    width: 120px;
    height: 140px;
}

.character-head-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 140px;
}

.pixelated {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.drop-shadow-2xl {
    filter: drop-shadow(0 20px 20px rgb(0 0 0 / 0.3)) drop-shadow(0 8px 8px rgb(0 0 0 / 0.2));
}

.opacity-90 {
    opacity: 0.95;
}

@keyframes peekLeft {
    0% {
        transform: translateX(-150px) translateY(-50%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateX(-60px) translateY(-50%);
        opacity: 1;
    }
}

@keyframes peekRight {
    0% {
        transform: translateX(150px) translateY(-50%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateX(60px) translateY(-50%);
        opacity: 1;
    }
}

@keyframes peekTop {
    0% {
        transform: translateY(-150px) translateX(-50%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-60px) translateX(-50%);
        opacity: 1;
    }
}

@keyframes peekBottom {
    0% {
        transform: translateY(150px) translateX(-50%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(60px) translateX(-50%);
        opacity: 1;
    }
}

@keyframes exitLeft {
    0% {
        transform: translateX(-60px) translateY(-50%);
        opacity: 1;
    }

    100% {
        transform: translateX(-150px) translateY(-50%);
        opacity: 0;
    }
}

@keyframes exitRight {
    0% {
        transform: translateX(60px) translateY(-50%);
        opacity: 1;
    }

    100% {
        transform: translateX(150px) translateY(-50%);
        opacity: 0;
    }
}

@keyframes exitTop {
    0% {
        transform: translateY(-60px) translateX(-50%);
        opacity: 1;
    }

    100% {
        transform: translateY(-150px) translateX(-50%);
        opacity: 0;
    }
}

@keyframes exitBottom {
    0% {
        transform: translateY(60px) translateX(-50%);
        opacity: 1;
    }

    100% {
        transform: translateY(150px) translateX(-50%);
        opacity: 0;
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-4deg);
    }

    40% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-2deg);
    }

    80% {
        transform: rotate(2deg);
    }
}

.animate-left {
    animation: peekLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-right {
    animation: peekRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-top {
    animation: peekTop 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-bottom {
    animation: peekBottom 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.exit-left {
    animation: exitLeft 0.6s ease-in forwards;
}

.exit-right {
    animation: exitRight 0.6s ease-in forwards;
}

.exit-top {
    animation: exitTop 0.6s ease-in forwards;
}

.exit-bottom {
    animation: exitBottom 0.6s ease-in forwards;
}

.wiggle {
    animation: wiggle 3s ease-in-out infinite;
}

.flip-horizontal {
    transform: scaleX(-1);
}

.rotate-180 {
    transform: rotate(180deg);
}





/* === MAPA UBICACIONES === */
/* === MAPA UBICACIONES - FULL RESPONSIVE === */
.map-container {
    margin-top: 4rem;
    text-align: center;
    position: relative;
}

.map-wrapper {
    background: var(--card);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.map-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

/* PUNTOS BASE */
.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.map-point-madrid {
    left: 47.1%;
    top: 43.1%;
}

.map-point-miami {
    left: 29.8%;
    top: 48%;
}

.map-point-germany {
    left: 50%;
    top: 37.5%;
}

/* DOTS ANIMADOS */
.map-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.map-dot-green {
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e;
    animation: pulse-green 2s infinite;
}

.map-dot-yellow {
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 12px;
    height: 12px;
    animation: pulse-yellow 2.5s infinite;
}

.map-dot-delay {
    animation-delay: 0.5s;
}

/* TOOLTIPS IGUALES */
.map-tooltip {
    position: absolute;
    background: var(--card);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 20;
}

/* COLOR SEGÚN PUNTO */
.map-point-madrid .map-tooltip {
    color: #22c55e;
}

.map-point-miami .map-tooltip {
    color: #22c55e;
}

.map-point-germany .map-tooltip {
    color: var(--primary);
}

/* HOVER */
.map-point:hover .map-tooltip {
    opacity: 1;
}

/* ANIMACIONES */
@keyframes pulse-green {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes pulse-yellow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* ============================================ */
/* RESPONSIVE - TODAS LAS PANTALLAS */
/* ============================================ */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    .map-wrapper {
        padding: 2.5rem;
        max-width: 900px;
    }

    .map-image {
        height: 450px;
    }
}

/* MOBILE MEDIUM (640px - 768px) */
@media (max-width: 768px) {
    .map-wrapper {
        padding: 2rem;
        max-width: 100%;
        margin: 0 1rem;
        border-radius: 1rem;
    }

    .map-image {
        height: 400px;
        border-radius: 0.75rem;
    }

    /* PUNTOS MÁS GRANDES EN MÓVIL */
    .map-dot {
        width: 16px;
        height: 16px;
    }

    .map-dot-yellow {
        width: 14px;
        height: 14px;
    }

    /* TOOLTIPS MÁS GRANDES */
    .map-tooltip {
        font-size: 11px;
        padding: 6px 10px;
        top: -40px;
    }
}

/* MOBILE SMALL (320px - 640px) */
@media (max-width: 640px) {
    .map-container {
        margin-top: 3rem;
    }

    .map-wrapper {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }

    .map-image {
        height: 320px;
        border-radius: 0.5rem;
    }

    /* PUNTOS AÚN MÁS VISIBLES */
    .map-dot {
        width: 18px;
        height: 18px;
    }

    .map-dot-yellow {
        width: 16px;
        height: 16px;
    }

    /* TOOLTIPS OPTIMIZADOS MÓVIL */
    .map-tooltip {
        font-size: 12px;
        padding: 8px 12px;
        top: -44px;
        left: 50%;
        transform: translateX(-50%) translateY(0);
        max-width: 120px;
    }

    /* EVITA SALIDA DE PANTALLA */
    .map-point-madrid .map-tooltip,
    .map-point-miami .map-tooltip {
        top: auto;
        bottom: -44px;
    }
}

/* EXTRA SMALL (<320px) */
@media (max-width: 360px) {
    .map-wrapper {
        padding: 1.25rem;
    }

    .map-image {
        height: 280px;
    }

    .map-tooltip {
        font-size: 11px;
        padding: 6px 10px;
        max-width: 100px;
    }
}

/* OCULTAR MAPA EN MÓVILES */
@media (max-width: 768px) {
    .map-container {
        display: none;
    }
}









/* ===========================
   NAVBAR MÓVIL (FINAL)
   =========================== */

/* Estado por defecto en escritorio */
.btn-panel-mobile {
    display: none;
}

.btn-panel-desktop {
    display: inline-flex;
}

/* Escritorio: ocultar hamburguesa */
.menu-toggle,
#mobile-btn {
    display: none;
}


@media (max-width: 768px) {

    /* Botón hamburguesa visible en móvil */
    .menu-toggle,
    #mobile-btn {
        display: block !important;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 2rem;
        cursor: pointer;
        padding-left: 12px;
        line-height: 1;
        z-index: 60;
    }

    /* Botón Panel de control de escritorio: oculto en móvil */
    .btn-panel-desktop {
        display: none !important;
    }

    /* RESET de estilos de escritorio del nav centrado */
    .nav-links-classic {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    /* Contenedor del menú (links + botón panel móvil) */
    .nav-links-classic,
    #mobile-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        top: 80px;
        /* debajo del nav fijo */
        width: 100%;
        background: #1d1a15;
        backdrop-filter: blur(14px);
        border-bottom: 1px solid #f7a01e;
        padding: 1.8rem 1rem 2.3rem;
        gap: 1.3rem;

        /* Estado cerrado: ligeramente arriba + transparente */
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition:
            opacity 0.25s ease-out,
            transform 0.25s ease-out;
        z-index: 40;
    }

    /* Estado abierto (cuando JS añade .active) */
    .nav-links-classic.active,
    #mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Estilo de los enlaces del menú */
    .nav-item {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 0.4rem 0;
    }

    /* Botón Panel dentro del desplegable móvil */
    .btn-panel-mobile {
        display: inline-flex !important;
        width: 80%;
        justify-content: center;
        margin-top: 0.4rem;
    }
}



/* Boton Perfil ------------------------------------------------------------------------------*/

/* Botón de usuario estilo avatar con colores Gamzy */
.btn-user-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: var(--card); /* mismo fondo que las cards */
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);           /* gris texto de la web */
    text-decoration: none;
    position: relative;
    margin-right: 0.75rem;
    transition: background-color 0.2s ease, border-color 0.2s ease,
                color 0.2s ease, transform 0.2s ease;
}

/* Icono de perfil centrado */
.btn-user-icon i {
    font-size: 1.2rem;
}

/* Punto de estado (abajo derecha) en naranja Gamzy */
.btn-user-icon::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background-color: var(--primary);  /* naranja corporativo */
    border: 1px solid var(--bg);       /* borde del color del fondo */
}

/* Hover: usar el naranja como acento, sin neón */
.btn-user-icon:hover {
    background-color: #2b2720; /* un poco más claro que var(--bg) */
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-1px);
}

/* Móvil */
@media (max-width: 768px) {
    .btn-user-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.5rem;
    }

    .btn-user-icon i {
        font-size: 1.1rem;
    }
}












/* --- ARREGLO DE ERRORES MÓVIL --- */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* evita que la página se mueva a los lados */
}

/* 2. Ajustar textos gigantes en móvil */
@media (max-width: 768px) {

    /* Título principal más pequeño */
    .style-54 {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }

    /* Subtítulos más pequeños */
    .style-53 {
        font-size: 1.8rem !important;
    }

    /* Ajuste del padding del héroe para que no corte contenido */
    .hero-style-9 {
        padding: 6rem 1.5rem 3rem !important;
    }
}