html, body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
}

button,
.btn,
.packages-toggle,
.btn-buy,
.hero-register {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.8px;
}

a{
    text-decoration: none;
}

@keyframes floatSponsor {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes handBounce {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -14px);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

/* ================= HERO ================= */
/* ===== HERO / INICIO ===== */

.hero-section {
    width: 100%;
    background: #000;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Imagen fondo */
.hero-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* Redes sociales */
.hero-socials {
    position: fixed;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
}

.hero-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all .25s ease;
    text-decoration: none;
}

.hero-socials a:hover {
    background: #ff008c;
    transform: scale(1.08);
}

/* Botón patrocinador */
.hero-sponsor {
    position: absolute;
    right: 3%;
    top: 32%;
    z-index: 10;
}

.hero-sponsor img {
    max-width: 190px;
}

/* Mano */
.sponsor-hand {
    position: absolute;
    top: 150px;
    left: 60%;
    transform: translateX(-50%);
    width: 60px;
    animation: handBounce 1.6s ease-in-out infinite;
    pointer-events: none;
}

/* Botón registrarme */
.hero-register {
    position: absolute;
    left: 50%;
    bottom: 10%;          /* RELATIVO A LA IMAGEN */
    transform: translateX(-50%);
    z-index: 20;
}

.hero-register img {
    width: clamp(260px, 28vw, 420px);
}

.hero-bottom {
    width: 100%;
    background: #006b3f;
}

.hero-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .hero-wrapper {
        height: 85vh;
        min-height: 560px;
    }

    .hero-socials {
        left: 10px;
    }

    .hero-sponsor {
        right: 10px;
    }
}


/* === Pantallas muy grandes (27", ultrawide) === */
@media (min-width: 1800px) {
    .hero-register {
        bottom: 5%;
    }
}

/* === Desktop grande === */
@media (max-width: 1799px) {
    .hero-register {
        bottom: 4%;
    }
}

/* === Laptop estándar === */
@media (max-width: 1440px) {
    .hero-register {
        bottom: 5%;
    }
}

/* === Laptop chica / desktop bajo === */
@media (max-width: 1280px) {
    .hero-register {
        bottom: 6%;
    }
}

/* === Tablets horizontales === */
@media (max-width: 1024px) {
    .hero-register {
        bottom: 4%;
    }
}

/* === Tablets verticales / móviles grandes === */
@media (max-width: 900px) {
    .hero-register {
        bottom: 0%;
    }
}

/* === Móviles === */
@media (max-width: 768px) {
    .hero-register {
        bottom: 5%;
    }
}

/* === Móviles pequeños === */
@media (max-width: 480px) {
    .hero-register {
        bottom: 3%;
    }
}


/* ================= BOTONES ================= */
.btn-primary {
    background: #ff007a;
    border: none;
    font-weight: bold;
}

.btn-collapse {
    background: #ff007a;
    color: #fff;
    font-weight: bold;
    padding: 15px;
}

.delgado{
    font-weight: 600;
}

/* ================= PAQUETES ================= */
/* ================= FRANJA VER PAQUETES ================= */
.packages-toggle {
    background: #ff007a;
    color: #fff;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    font-size: 1.6rem;
}

.packages-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #ff007a;
}

/* Hover sutil */
.packages-toggle:hover {
    background: #e6006f;
}


.packages-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../img/fondo2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Títulos */
.packages-title {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

.packages-title .big {
    font-size: 5.5rem;
    color: #ff007a;
    margin-right: 10px;
    position: relative;
    top: -12px;
}

.packages-right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
}

.packages-subtitle {
    color: #3cff00;
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.packages-text {
    font-size: 0.95rem;
    opacity: 0.9;
    color: #fff;
    line-height: 1.4;
    font-weight: 900;
}
rosa{
    color: #ff007a;
}

/* ================= CARD PAQUETE ================= */
.package-card {
    background: #000;
    border-radius: 25px;
    padding: 22px 18px;
    border: 4px solid #3cff00;
    box-shadow: 0 0 5px #3cff00;
    text-align: center;
}

/* Header */
.package-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.package-header .arrow {
    color: #ff007a;
    font-size: 2rem;
    font-weight: 900;
}

.package-header .package-name {
    color: #3cff00;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: italic;
}

.package-card.tier {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Botón layout */
.btn-layout {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 30px;
    padding: 4px 18px;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    margin: 6px auto 16px;
    display: inline-block;
    cursor: pointer;
}

.btn-layout:hover {
    background: #fff;
    color: #000;
}

/* Precio */
.package-price {
    background: #ff007a;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 12px 10px;
    border-radius: 14px;
    margin-bottom: 14px;
}

/* Comprar */
.btn-buy {
    background: #3cff00;
    color: #000;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
}

.btn-buy:hover {
    background: #2ecc00;
}


.package-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hover sutil (no rompe diseño) */
.package-card:hover {
    transform: translateY(-6px);
}

.package-header .arrow {
    color: #ff007a;
    font-size: 2rem;
    font-weight: 900;
}

.package-header .arrow2 {
    color: #ff0000;
    font-size: 2rem;
    font-weight: 900;
}

/* ===== VISITANTE ===== */
.package-card.visitante {
    max-width: 100%;
}

.package-card.visitante .package-price {
    font-size: 2rem;
    padding: 14px 10px;
    width: 250px;
    text-align: center;
}

.package-card.visitante small {
    display: block;
    font-size: 0.6rem;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.3;
}

/* ===== MEMBERSHIP LAYOUT CORRECTO ===== */
.package-card.membership {
    padding: 22px 30px;
}

/* Header */
.membership-header {
    margin-bottom: 18px;
}

/* Cuerpo */
.membership-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Bloque izquierdo */
.membership-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 260px;
}

/* Precio */
.package-card.membership .package-price {
    width: 100%;
    font-size: 2rem;
    padding: 14px 0;
    border-radius: 14px;
}

/* Botón comprar */
.package-card.membership .btn-buy {
    width: 100%;
    padding: 12px 0;
    font-size: 2rem;
    border-radius: 12px;
}

/* Logo */
.membership-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.membership-logo {
    max-width: 300px;
    height: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .membership-body {
        flex-direction: column;
        text-align: center;
    }

    .membership-left {
        width: 100%;
        max-width: 260px;
    }

    .membership-logo {
        max-width: 160px;
        margin-top: 10px;
    }
    .packages-title {
        justify-content: center;
        text-align: center;
    }

    .packages-title .big {
        font-size: 4.5rem;
    }

    .packages-subtitle,
    .packages-text {
        text-align: center;
    }
}

/* ===== COLORES ===== */
.arrow.pink { color: #ff007a; }
.arrow.red { color: #ff0000; }

.package-name.green { color: #39ff14; }
.package-name.red { color: #fff; }

.package-price.pink { background: #ff007a; }
.package-price.red { background: #ff0000; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .membership-body {
        flex-direction: column;
        text-align: center;
    }

    .membership-logo {
        max-width: 150px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .packages-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .packages-subtitle,
    .packages-text {
        text-align: center;
    }
}

/* ================= LOGOS ================= */
/* ================= LOGOS GRANDES ================= */
.logos-section {
    position: relative;
    background: #f4f4f4;
    padding: 18px 70px;
    overflow: hidden;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 120px;
    will-change: transform;
}

.logos-track::-webkit-scrollbar {
    display: none;
}

.logo-item img {
    max-height: 55px;
    width: auto;
}

/* Flechas */
.logos-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 5;
}

.logos-arrow img{
    width: 30px;
}
.logos-arrow.left { left: 10px; }
.logos-arrow.right { right: 10px; }

/* ================= LOGOS CHICOS ================= */
.logos-small-section {
    background: #ffffff;
    padding: 14px 0;
}

.logos-small-viewport {
    overflow: hidden;
    width: 100%;
}

.logos-small-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: scroll-logos-small 40s linear infinite;
}

.logo-small {
    flex: 0 0 auto;
}

.logo-small img {
    height: 36px;
    width: auto;
    display: block;
}

@keyframes scroll-logos-small {
    0% { transform: translateX(-50%); }  /* Empieza desde la segunda copia */
    100% { transform: translateX(0); }    /* Termina en la primera copia */
}
/* Responsive */
@media (max-width: 768px) {
    .logos-arrow { display: none; }
    .logo-small img { height: 28px; }
}

/* ================= SECCIONES ================= */
.section-title {
    text-align: center;
    font-weight: 900;
    margin-bottom: 40px;
}

.news-section {
    background: #000;
}

/* ================= NOTICIAS ================= */
.news-section-custom {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

/* ===== CARRUSEL ===== */
.news-carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.news-carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-news 35s linear infinite;
}

/* 4 visibles exactas */
.news-slide {
    width: 260px;
    min-width: 260px;
    border-radius: 20px;
    overflow: hidden;
}

.news-slide img {
    width: 100%;
    display: block;
}

/* ANIMACIÓN */
@keyframes scroll-news {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .news-slide {
        width: 220px;
        min-width: 220px;
    }
}

/* ===== BLOQUE NOTICIA ===== */

/* Responsive */
@media (max-width: 768px) {
    .news-carousel-track {
        gap: 15px;
    }

    .news-slide {
        min-width: 220px;
    }

    .news-label {
        font-size: 1.5rem;
        padding: 15px 30px;
    }
}

/* ===== NOTICIA PRINCIPAL ===== */
.news-main-custom {
    margin-top: 60px;
    color: #fff;
}

/* NUBE */
.news-bubble {
    background: #39ff14;
    color: #000;
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 25px;
}

/* FILA PRINCIPAL */
.news-row {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 25px;
    align-items: start;
}

/* IZQUIERDA */
.news-left {
    display: grid;
    grid-template-columns: 100px auto;
    column-gap: 5px;
    row-gap: 6px;
    align-items: start;
}

/* NUBE */
.news-cloud {
    grid-column: 1 / 2;
    width: 200px;

    position: relative;
    top: 50px;
    left: 30px;
}

/* MUNDO */
.news-world {
    grid-column: 1 / 2;
    width: 150px;

    position: relative;
    top: 45px;
    left: 90px;
    
    animation: floatSponsor 2.5s ease-in-out infinite;
}

/* IMAGEN */
.news-photo {
    position: relative;
    width: fit-content;
}

.news-link {
    display: block;
    position: relative;
}

.news-photo img {
    width: 100%;
    max-width: 300px;
    border-radius: 18px;
    display: block;

    margin-top: -70px;
    margin-left: 200px;
}

/* BOTÓN VER NOTICIA */
.btn-ver-noticia {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 60px !important;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: pulseNoticia 2.5s infinite;
}

.btn-ver-noticia:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255, 0, 122, .6);
}

@keyframes pulseNoticia {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* DERECHA */
.news-right {
    max-width: 100%;
    margin-top: 50px;
}

/* TEXTO */
.news-right h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.news-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #eaeaea;
}

#newsTitle,
#newsText,
#newsImage {
    transition: opacity .3s ease;
}

.testimonial-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.02);
    cursor: default;
}

/* Transiciones suaves */
#nombre1, #nombre2,
#texto1, #texto2,
#avatar1, #avatar2,
#empresa1, #empresa2 {
    transition: opacity 0.3s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-row {
        grid-template-columns: 1fr;
    }

    .news-left {
        grid-template-columns: 1fr;
    }

    .news-cloud,
    .news-world {
        width: 80px;
    }

    .news-photo img {
        max-width: 100%;
    }
}

/* =====================================================
   CONFERENCIAS – COLAPSABLE (MISMO COMPORTAMIENTO QUE PAQUETES)
   ===================================================== */

/* ===== HEADER / TOGGLE ===== */
.conferencias-header {
    background: #0b6b3a;
    color: #ffffff;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
    user-select: none;
    font-size: 1.6rem;
}

/* Flecha inferior */
.conferencias-header::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #0b6b3a;
}

/* ===== CONTENIDO COLAPSABLE ===== */
#conferenciasContent {
    overflow: hidden;
}

/* ===== CONTENEDOR INTERNO ===== */
.conferencias-section-inner {
    position: relative;
    padding: 70px 0 80px;
    background-image: url('../img/fondo3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== GRID DE CONFERENCIAS ===== */
.conferencias-content {
    display: flex;
    justify-content: center;
    gap: 70px;
    max-width: 1320px;
    margin: 0 auto;
}

/* ===== ITEM CIRCULAR ===== */
.conferencia-item {
    width: 180px;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.conferencia-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .conferencias-content {
        gap: 40px;
    }

    .conferencia-item {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 900px) {
    .conferencias-content {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .conferencias-section-inner {
        padding: 50px 20px 60px;
    }

    .conferencia-item {
        width: 140px;
        height: 140px;
    }
}

/* ================= BOTÓN VER LAYOUT ================= */
.btn-layout {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 10px 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 20px;
}

.btn-layout:hover {
    background: #fff;
    color: #000;
}

/* ================= MODAL LAYOUT ================= */
.layout-modal {
    background: #000;
    border-radius: 25px;
    border: 4px solid #fff;
    position: relative;
    padding: 20px;
}

/* Botón cerrar con imagen */
.btn-close-img {
    position: absolute;
    top: -25px;
    right: -25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.btn-close-img img {
    width: 50px;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-close-img {
        top: -15px;
        right: -15px;
    }

    .btn-close-img img {
        width: 40px;
    }
}

/* ===== FIX FINAL NOTICIAS ===== */

/* Quitar rigidez del container solo aquí */
.news-section-custom .container {
    max-width: 1200px;
}

/* Alinear nube y bloque */
.news-main-custom {
    position: relative;
}

/* Nube exactamente como el diseño */
.news-bubble {
    margin-left: 80px;
}

/* Mundo flotando, no empuja */
.news-world {
    flex-shrink: 0;
}

.news-photo {
    border-radius: 18px;
}


/* ===== LOCATION SECTION ===== */

.location-section {
    background: #fff;
    width: 100%;
    font-family: inherit;
}

/* CONTENEDOR GENERAL */
.location-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

/* TOP */
.location-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    padding: 40px 0px;
    align-items: center;
}

/* INFO */
.location-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.location-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.icon-location {
    width: 60px;
}

.icon-route {
    width: 80px;
}

.logo-expo {
    width: 90px;
}

/* TEXT */
.location-text {
  position: absolute;
  top: 50px;
  left: 330px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.55;
  color: #000;
}

.logo-centro {
    width: 180px;
    margin-bottom: 10px;
}

.location-text p {
    font-size: 14px;
    line-height: 1.55;
    color: #000;
    margin: 0;
}

.location-marca{
    width: 150px;
    margin-bottom: 0;
    animation: floatSponsor 2.5s ease-in-out infinite;
    position: relative;
    top: 50px;
}

.location-info-block{
    position: relative;
    width: 100%;
}

.location-graphic{
    max-width: 480px;
    margin-top: -180px;
}
/* MAP */
.location-map img {
    width: 100%;
    border-radius: 6px;
}

.location-map iframe {
    width: 100%;
    height: 340px;
    min-height: 340px;
    border: 0;
    border-radius: 6px;
}

/* BOTTOM */
.location-bottom {
    background: #5cff00;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 25px 0px;
    font-size: 14px;
}

.location-bottom strong {
    display: block;
    margin-bottom: 6px;
}

.location-bottom a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.location-left{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0; /* importante */
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .location-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-info {
        flex-direction: column;
    }

    .location-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}

/* ===== FOOTER LOCATION ===== */

.location-footer {
    background: #40d902;
    width: 100%;
    color: #fff;
    font-family: inherit;
}

.location-footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 60px 15px;
}

/* TOP */
.location-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
}

.footer-hours {
    color: #fff;
    text-align: right;

    padding-left: 140px;
    padding-right: 40px;

    font-size: 15px;
    line-height: 1.7;
}

.footer-hours strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.footer-office {
    color: #000;
    text-align: left;

    padding-left: 40px;
    padding-right: 140px;

    font-size: 14px;
    line-height: 1.6;
}

.footer-office strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.footer-office a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

/* BOTTOM */
.location-footer-bottom {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px){

    .location-footer-container{
        padding: 25px 20px 15px;
    }

    .location-footer-top {
        grid-template-columns: 1fr;
    }

    .footer-hours,
    .footer-office {
        padding: 0;
        text-align: center;
    }
}

/* ===== CONTENIDO SWITCH ===== */
.content-panel {
    display: none;
    animation: fadeUp .4s ease;
}

.content-panel.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TESTIMONIOS ===== */
.testimonials-main-custom {
    margin-top: 60px;
}

.testimonials-row {
    display: grid;
    grid-template-columns: 0.6fr 1.2fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* IZQUIERDA */
.testimonials-left {
    position: relative;
    min-height: 260px;
}

.testimonials-left .news-cloud {
    position: absolute;
    top: 50;
    left: 0;
    width: 200px;
}

.testimonials-left .news-world {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 150px;
    top: 170px;
}

/* TESTIMONIOS TEXTO */
.testimonial-item {
    color: #39ff14;
    max-width: 420px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-header strong {
    color: #fff;
    font-size: 0.95rem;
}

.stars {
    color: #ff007a;
    font-size: 1.5rem;
}

.testimonial-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 8px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .testimonials-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonials-left {
        min-height: 180px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UNIFICAR ANCHO: PRECIO + BOTONES (PAQUETES TIER) ===== */
.package-card.tier .btn-layout,
.package-card.tier .btn-buy,
.package-card.tier .package-price {
    width: 250px;              /* MISMO ANCHO PARA LOS 3 */
    max-width: 100%;
    margin: 0 auto 14px;
    display: block;
    text-align: center;
}

/* Ajuste fino del precio */
.package-card.tier .package-price {
    padding: 12px 0;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .package-card.tier .btn-layout,
    .package-card.tier .btn-buy,
    .package-card.tier .package-price {
        width: 100%;
        max-width: 240px;
    }
}
/* ===== NOTICIAS · TIPOGRAFÍA ===== */
.news-right p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;          /* Medium */
}

/* Pausar animación al hover */
.logos-small-viewport:hover .logos-small-track {
    animation-play-state: paused;
}
.logo-small {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-small:hover {
    transform: scale(1.08);
    z-index: 5;
}
.logos-small-viewport:hover .logo-small:not(:hover) {
    filter: grayscale(60%) brightness(0.7);
}
.logos-small-track {
    align-items: center;
}
.logo-small {
    transform-origin: center center;
}
/* ======================================================
   CARRUSEL NOTICIAS / TESTIMONIOS · HOVER INTERACTIVO
   ====================================================== */

/* Pausar el carrusel al pasar el mouse */
.news-carousel-wrapper:hover .news-carousel-track {
    animation-play-state: paused;
}

/* Transición suave para las tarjetas */
.news-slide {
    transition: transform 0.35s ease, filter 0.35s ease;
    transform-origin: center center;
}

/* Tarjeta resaltada */
.news-slide:hover {
    transform: scale(1.1);
    z-index: 20;
}

/* Atenuar las demás cuando hay hover */
.news-carousel-wrapper:hover .news-slide:not(:hover) {
    filter: brightness(0.55) grayscale(60%);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* ========== TABLET Y MENORES (992px) ========== */
@media (max-width: 992px) {
    
    /* HERO SECTION */
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-sponsor {
        right: 10px;
        top: 60%;
    }
    
    .hero-sponsor img {
        max-width: 80px;
    }
    
    .hero-register {
        right: 10px;
        bottom: 15%;
    }
    
    .hero-register img {
        max-width: 140px;
    }
    
    .sponsor-hand {
        max-width: 50px !important;
    }
    
    /* LOGOS GRANDES */
    .logos-section {
        padding: 30px 0;
    }
    
    .logo-item img {
        max-height: 60px;
    }
    
    /* PAQUETES */
    .packages-title {
        font-size: 40px;
    }
    
    .packages-title .big {
        font-size: 80px;
    }
    
    .packages-subtitle {
        font-size: 24px;
    }
    
    .packages-text {
        font-size: 14px;
    }
    
    .package-card {
        margin-bottom: 20px;
    }
    
    .package-price {
        font-size: 40px;
    }
    
    .package-price small {
        font-size: 12px;
    }
    
    /* MEMBERSHIP */
    .membership-body {
        flex-direction: column;
        gap: 20px;
    }
    
    .membership-left {
        width: 100%;
        text-align: center;
    }
    
    .membership-right {
        width: 100%;
        justify-content: center;
    }
    
    .membership-logo {
        max-width: 250px;
    }
    
    /* NOTICIAS */
    .news-section-custom {
        padding: 40px 0;
    }
    
    .news-carousel-wrapper {
        margin-bottom: 30px;
    }
    
    .news-slide {
        min-width: 250px;
    }
    
    .news-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .news-left,
    .news-right {
        width: 100%;
    }
    
    .news-photo {
        max-width: 100%;
    }
    
    .news-right h3 {
        font-size: 24px;
    }
    
    .news-right p {
        font-size: 14px;
    }
    
    /* TESTIMONIOS */
    .testimonials-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonials-left {
        width: 100%;
        height: 150px;
    }
    
    .testimonial-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    /* CONFERENCIAS */
    .conferencias-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* UBICACIÓN */
    .location-top {
        flex-direction: column;
    }
    
    .location-left,
    .location-map {
        width: 100%;
    }
    
    .location-marca {
        max-width: 250px;
    }
    
    .location-graphic {
        max-width: 100px;
    }
    
    .location-text strong {
        font-size: 16px;
    }
    
    .location-text p {
        font-size: 12px;
    }
    
    /* FOOTER */
    .location-footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-hours,
    .footer-office {
        width: 100%;
        text-align: center;
    }
}

/* ========== MÓVILES (768px) ========== */
/* ============================================
   CORRECCIONES MÓVILES ESPECÍFICAS
   ============================================ */

@media (max-width: 768px) {
    
    /* ========== FIX: HERO Y REDES SOCIALES ========== */
    .hero-socials {
        left: 5px !important;
        top: 10px !important;
        gap: 8px !important;
        z-index: 100 !important;
    }
    
    .hero-socials a {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* ========== FIX: BOTONES HERO ========== */
    .hero-sponsor,
    .hero-register {
        z-index: 90 !important;
    }
    
    .hero-register img {
        max-width: 140px !important;
        height: auto !important;
    }
    
    /* ========== FIX: LOGOS ========== */
    .logos-section {
        overflow: hidden !important;
        padding: 25px 0 !important;
    }
    
    .logos-viewport {
        overflow: hidden !important;
        width: 100% !important;
    }
    
    .logo-item {
        min-width: 120px !important;
        padding: 0 15px !important;
    }
    
    .logo-item img {
        max-height: 50px !important;
        width: auto !important;
    }
    
    /* ========== FIX: LOGOS PEQUEÑOS ========== */
    .logos-small-section {
        padding: 20px 0 !important;
    }
    
    .logos-small-viewport {
        position: relative !important;
        overflow: hidden !important;
    }
    
    .logos-small-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .logos-small-track::-webkit-scrollbar {
        display: none !important;
    }
    
    .logo-small {
        min-width: 90px !important;
        padding: 0 10px !important;
    }
    
    .logo-small img {
        max-height: 45px !important;
        width: auto !important;
    }
    
    /* ========== FIX: BOTONES TOGGLE ========== */
    .packages-toggle,
    .conferencias-header {
        font-size: 28px !important;
        padding: 15px 20px !important;
        margin: 0 !important;
        cursor: pointer !important;
        text-align: center !important;
    }
    
    .packages-toggle delgado,
    .packages-toggle .delgado {
        font-size: 18px !important;
    }
    
    /* ========== FIX: SECCIÓN DE PAQUETES ========== */
    .packages-section {
        padding: 30px 0 !important;
        background: #000 !important;
    }
    
    .packages-section .container {
        padding: 0 15px !important;
    }
    
    .packages-section .row {
        margin: 0 -10px !important;
    }
    
    .packages-section [class*="col-"] {
        padding: 0 10px !important;
    }
    
    /* Títulos de paquetes */
    .packages-title {
        font-size: 28px !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .packages-title .big {
        font-size: 56px !important;
        display: block !important;
        margin-bottom: 5px !important;
    }
    
    .packages-subtitle {
        font-size: 22px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .packages-text {
        font-size: 13px !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
    
    .packages-right {
        text-align: center !important;
        margin-top: 20px !important;
    }
    
    /* Cards de paquetes */
    .package-card {
        padding: 20px !important;
        margin-bottom: 20px !important;
        border-radius: 15px !important;
    }
    
    .package-header {
        margin-bottom: 15px !important;
    }
    
    .package-name {
        font-size: 26px !important;
    }
    
    .package-price {
        font-size: 36px !important;
        padding: 15px 20px !important;
        margin: 15px auto !important;
        text-align: center !important;
        display: block !important;
        width: fit-content !important;
    }
    
    .package-price small {
        font-size: 11px !important;
        display: block !important;
        margin-top: 8px !important;
        line-height: 1.3 !important;
    }
    
    .btn-buy {
        padding: 14px 35px !important;
        font-size: 16px !important;
        display: block !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 15px auto !important;
        text-align: center !important;
    }
    
    .btn-layout {
        padding: 10px 20px !important;
        font-size: 14px !important;
        display: block !important;
        width: 100% !important;
        max-width: 200px !important;
        margin: 10px auto !important;
    }
    
    /* Membership card específico */
    .membership-body {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
    }
    
    .membership-left {
        width: 100% !important;
        text-align: center !important;
    }
    
    .membership-left .package-price {
        font-size: 48px !important;
        margin: 15px auto !important;
    }
    
    .membership-right {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .membership-logo {
        max-width: 200px !important;
        height: auto !important;
    }
    
    /* ========== FIX: IMÁGENES DENTRO DE PAQUETES ========== */
    .package-card img,
    .packages-section img,
    #packagesContent img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 15px auto !important;
        border-radius: 10px !important;
    }
    
    /* ========== FIX: SECCIÓN DE NOTICIAS ========== */
    .news-section-custom {
        padding: 30px 0 !important;
        background: #000 !important;
    }
    
    .news-carousel-wrapper {
        margin-bottom: 25px !important;
        padding: 0 10px !important;
    }
    
    .news-carousel-viewport {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    
    .news-carousel-viewport::-webkit-scrollbar {
        display: none !important;
    }
    
    .news-carousel-track {
        display: flex !important;
        gap: 15px !important;
    }
    
    .news-slide {
        min-width: 180px !important;
        flex-shrink: 0 !important;
    }
    
    .news-slide img {
        height: 70px !important;
        width: 100% !important;
        object-fit: contain !important;
    }
    
    /* ========== FIX: CONTENIDO DE NOTICIA ========== */
    .news-main-custom {
        padding: 25px 15px !important;
        min-height: auto !important;
    }
    
    .news-row {
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .news-left {
        width: 100% !important;
        position: relative !important;
        margin-bottom: 20px !important;
    }
    
    .news-cloud {
        width: 100px !important;
        top: -15px !important;
        right: -15px !important;
    }
    
    .news-world {
        width: 80px !important;
        bottom: -10px !important;
        left: -10px !important;
    }
    
    .news-photo {
        max-width: 100% !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .news-photo img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        display: block !important;
    }
    
    .btn-ver-noticia {
        width: 90px !important;
        bottom: 10px !important;
        right: 10px !important;
    }
    
    .news-right {
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    .news-right h3 {
        font-size: 22px !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
        color: #3CFF00 !important;
    }
    
    .news-right p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: #fff !important;
        max-height: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        display: block !important;
        margin: 0 !important;
    }
    
    /* ========== FIX: TESTIMONIOS ========== */
    .testimonials-main-custom {
        padding: 25px 15px !important;
    }
    
    .testimonials-row {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .testimonials-left {
        width: 100% !important;
        height: 120px !important;
        margin-bottom: 15px !important;
    }
    
    .testimonial-item {
        width: 100% !important;
        padding: 15px !important;
        margin-bottom: 15px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
    }
    
    .testimonial-header {
        display: flex !important;
        gap: 12px !important;
        align-items: center !important;
        margin-bottom: 12px !important;
    }
    
    .testimonial-avatar {
        width: 55px !important;
        height: 55px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }
    
    .testimonial-item strong {
        font-size: 15px !important;
        display: block !important;
        margin-bottom: 3px !important;
    }
    
    .testimonial-item p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin: 0 !important;
    }
    
    .stars {
        font-size: 14px !important;
        color: #FFD700 !important;
    }
    
    /* ========== FIX: CONFERENCIAS ========== */
    .conferencias-section-inner {
        padding: 25px 0 !important;
    }
    
    .conferencias-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 15px !important;
    }
    
    .conferencia-item {
        width: 100% !important;
    }
    
    .conferencia-item img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        display: block !important;
    }
    
    /* ========== FIX: UBICACIÓN ========== */
    .location-section {
        padding: 25px 0 !important;
    }
    
    .location-container {
        padding: 0 15px !important;
    }
    
    .location-top {
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .location-left {
        width: 100% !important;
    }
    
    .location-marca {
        max-width: 180px !important;
        margin: 0 auto 20px !important;
        display: block !important;
    }
    
    .location-info-block {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
    }
    
    .location-graphic {
        max-width: 80px !important;
        margin: 0 auto !important;
    }
    
    .location-text {
        text-align: center !important;
        padding: 0 !important;
    }
    
    .location-text strong {
        font-size: 16px !important;
        display: block !important;
        margin-bottom: 8px !important;
        color: #3CFF00 !important;
    }
    
    .location-text p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin: 0 !important;
    }
    
    .location-map {
        width: 100% !important;
    }
    
    .location-map iframe {
        width: 100% !important;
        height: 280px !important;
        border-radius: 12px !important;
        border: none !important;
    }
    
    /* ========== FIX: FOOTER ========== */
    .location-footer {
        padding: 25px 0 !important;
    }
    
    .location-footer-top {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 25px 15px !important;
    }
    
    .footer-hours,
    .footer-office {
        width: 100% !important;
        text-align: center !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    .footer-hours strong,
    .footer-office strong {
        font-size: 15px !important;
        display: block !important;
        margin-bottom: 8px !important;
        color: #3CFF00 !important;
    }
    
    .footer-office a {
        color: #3CFF00 !important;
        text-decoration: none !important;
        word-break: break-word !important;
    }
    
    .location-footer-bottom {
        font-size: 11px !important;
        padding: 15px !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
    
    /* ========== FIX: MODAL ========== */
    .modal-dialog {
        margin: 15px !important;
    }
    
    .layout-modal {
        padding: 15px !important;
    }
    
    .btn-close-img {
        top: 5px !important;
        right: 5px !important;
    }
    
    .btn-close-img img {
        width: 32px !important;
    }
    
    .modal-body img {
        width: 100% !important;
        height: auto !important;
    }
}

/* ========== MÓVILES MUY PEQUEÑOS (< 400px) ========== */
@media (max-width: 400px) {
    .packages-title {
        font-size: 24px !important;
    }
    
    .packages-title .big {
        font-size: 48px !important;
    }
    
    .package-name {
        font-size: 22px !important;
    }
    
    .package-price {
        font-size: 32px !important;
    }
    
    .news-right h3 {
        font-size: 18px !important;
    }
    
    .news-right p {
        font-size: 13px !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN OPTIMIZADO
   MOBILE FIRST - SAMSUNG S24 COMPATIBLE
   ============================================ */

/* ========== AJUSTES GENERALES RESPONSIVE ========== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ========== TABLETS Y MENORES (992px) ========== */
@media (max-width: 992px) {
    
    /* HERO - Ajustes tablet */
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-sponsor {
        right: 15px;
        top: 55%;
    }
    
    .hero-sponsor img {
        max-width: 90px;
    }
    
    .sponsor-hand {
        max-width: 55px !important;
    }
    
    .hero-register {
        right: 15px;
        bottom: 12%;
    }
    
    .hero-register img {
        max-width: 160px;
    }
    
    /* LOGOS */
    .logo-item img {
        max-height: 70px;
    }
    
    /* PAQUETES - Columnas tablet */
    .packages-section .col-md-4,
    .packages-section .col-md-8 {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 20px auto;
    }
    
    .membership-body {
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* NOTICIAS - Tablet */
    .news-row {
        flex-direction: row;
    }
    
    .news-left {
        width: 45%;
    }
    
    .news-right {
        width: 55%;
    }
    
    /* TESTIMONIOS - Tablet */
    .testimonials-row {
        flex-direction: row;
    }
    
    .testimonials-left {
        width: 25%;
    }
    
    .testimonial-item {
        width: 37%;
    }
}

/* ========== MÓVILES (768px) - SAMSUNG S24 Y SIMILARES ========== */
@media (max-width: 768px) {
    
    /* ===== HERO SECTION ===== */
    .hero-section {
        min-height: 60vh;
        position: relative;
        overflow: hidden;
    }
    
    .hero-wrapper {
        position: relative;
        width: 100%;
        /*height: 100%;*/
    }
    
    .hero-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Redes sociales móvil */
    .hero-socials {
        left: 8px !important;
        top: 150px !important;
        gap: 10px !important;
        flex-direction: column !important;
        z-index: 100 !important;
    }
    
    .hero-socials a {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border-radius: 50% !important;
    }
    
    /* Botón patrocinador - OCULTAR EN MÓVIL */
    .hero-sponsor {
        display: none !important;
    }
    
    /* Botón registrar - centrado abajo */
    .hero-register {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        bottom: 8% !important;
    }
    
    .hero-register img {
        max-width: 180px !important;
        height: auto !important;
        filter: drop-shadow(0 5px 15px rgba(60, 255, 0, 0.5));
    }
    
    /* Franja verde inferior */
    .hero-bottom {
        height: auto;
    }
    
    .hero-bottom img {
        height: 60px;
        width: 100%;
        object-fit: cover;
    }
    
    /* ===== LOGOS GRANDES ===== */
    .logos-section {
        padding: 25px 0;
        overflow: hidden;
    }
    
    .logos-viewport {
        overflow: hidden;
    }
    
    .logos-track {
        display: flex;
        gap: 20px;
    }
    
    .logo-item {
        min-width: 140px;
        flex-shrink: 0;
    }
    
    .logo-item img {
        max-height: 55px;
        width: auto;
        margin: 0 auto;
        display: block;
    }
    
    /* ===== LOGOS PEQUEÑOS ===== */
    .logos-small-section {
        padding: 20px 0;
    }
    
    .logos-small-viewport {
        position: relative;
        overflow: hidden;
        padding: 0 40px;
    }
    
    .logos-small-track {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 15px;
    }
    
    .logos-small-track::-webkit-scrollbar {
        display: none;
    }
    
    .logo-small {
        min-width: 100px;
        flex-shrink: 0;
    }
    
    .logo-small img {
        max-height: 50px;
        width: auto;
    }
    
    .logos-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        padding: 8px;
    }
    
    .logos-arrow.left {
        left: 5px;
    }
    
    .logos-arrow.right {
        right: 5px;
    }
    
    .logos-arrow img {
        width: 30px;
    }
    
    /* ===== TOGGLE PAQUETES ===== */
    .packages-toggle {
        font-size: 32px !important;
        padding: 18px 0 !important;
        cursor: pointer;
    }
    
    .packages-toggle delgado,
    .packages-toggle .delgado {
        font-size: 20px;
    }
    
    /* ===== SECCIÓN PAQUETES ===== */
    .packages-section {
        padding: 35px 0 !important;
    }
    
    .packages-section .container {
        padding: 0 20px !important;
    }
    
    /* Títulos de paquetes */
    .packages-title {
        font-size: 32px !important;
        text-align: center;
        display: block !important;
        margin-bottom: 25px !important;
    }
    
    .packages-title .big {
        font-size: 65px !important;
        display: block !important;
        margin-bottom: 10px;
    }
    
    .packages-subtitle {
        font-size: 24px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .packages-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        padding: 0 10px;
    }
    
    .packages-right {
        text-align: center !important;
        margin-top: 25px;
    }
    
    /* Cards de paquetes */
    .packages-section .row {
        margin: 0 !important;
    }
    
    .packages-section [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .package-card {
        padding: 25px 20px !important;
        margin: 0 auto 20px auto !important;
        max-width: 500px;
        border-radius: 20px;
    }
    
    .package-header {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .arrow,
    .arrow2 {
        font-size: 26px !important;
    }
    
    .package-name {
        font-size: 30px !important;
    }
    
    .package-price {
        font-size: 42px !important;
        padding: 18px 25px !important;
        margin: 20px auto !important;
        display: block !important;
        width: fit-content !important;
        border-radius: 15px;
    }
    
    .package-price small {
        font-size: 12px !important;
        display: block !important;
        margin-top: 10px !important;
        line-height: 1.4 !important;
    }
    
    .btn-buy {
        padding: 16px 40px !important;
        font-size: 18px !important;
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 20px auto !important;
        border-radius: 50px;
        font-weight: 900;
    }
    
    .btn-layout {
        padding: 12px 25px !important;
        font-size: 15px !important;
        display: block !important;
        width: 100% !important;
        max-width: 220px !important;
        margin: 15px auto !important;
        border-radius: 30px;
    }
    
    /* Card Visitante */
    .package-card.visitante {
        text-align: center;
    }
    
    .package-card.visitante .btn-buy {
        margin: 20px auto !important;
    }
    
    /* Card Membership */
    .package-card.membership {
        padding: 25px !important;
    }
    
    .membership-header {
        margin-bottom: 20px;
    }
    
    .membership-body {
        flex-direction: column !important;
        gap: 25px !important;
        align-items: center;
    }
    
    .membership-left {
        width: 100% !important;
        text-align: center;
    }
    
    .membership-left .package-price {
        font-size: 52px !important;
        margin: 20px auto !important;
    }
    
    .membership-right {
        width: 100% !important;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .membership-logo {
        max-width: 220px !important;
        height: auto;
    }
    
    /* Cards Silver/Golden/Platinum */
    .package-card.tier {
        text-align: center;
    }
    
    /* ===== SECCIÓN NOTICIAS ===== */
    .news-section-custom {
        padding: 35px 0 !important;
    }
    
    /* Carrusel de noticias */
    .news-carousel-wrapper {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .news-carousel-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .news-carousel-viewport::-webkit-scrollbar {
        display: none;
    }
    
    .news-carousel-track {
        display: flex;
        gap: 15px;
    }
    
    .news-slide {
        min-width: 200px;
        flex-shrink: 0;
    }
    
    .news-slide img {
        height: 80px;
        width: 100%;
        object-fit: contain;
        border-radius: 8px;
    }
    
    /* Contenido de noticia */
    .news-main-custom {
        padding: 25px 15px !important;
    }
    
    .news-row {
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .news-left {
        width: 100% !important;
        position: relative;
    }
    
    .news-cloud {
        width: 110px;
        top: -20px;
        right: -15px;
        display: none;
    }
    
    .news-world {
        width: 90px;
        bottom: -15px;
        left: -15px;
        display: none;
    }
    
    .news-photo {
        max-width: 100%;
        position: relative;
        margin: 0 auto;
    }
    
    .news-photo img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        display: block;
        margin-left: 0px;
    }
    
    .btn-ver-noticia {
        width: 100px;
        bottom: 12px;
        right: 12px;
        max-width: 40px !important;
    }
    
    .news-right {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .news-right h3 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
        color: #3CFF00 !important;
    }
    
    .news-right p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        color: #fff !important;
        margin: 0 !important;
    }
    
    /* ===== SECCIÓN TESTIMONIOS ===== */
    .testimonials-main-custom {
        padding: 25px 15px !important;
    }
    
    .testimonials-row {
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .testimonials-left {
        width: 100% !important;
        height: 130px !important;
        position: relative;
    }
    
    .testimonial-item {
        width: 100% !important;
        padding: 18px !important;
        margin-bottom: 18px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 15px !important;
        border: 1px solid rgba(60, 255, 0, 0.2);
    }
    
    .testimonial-header {
        display: flex !important;
        gap: 15px !important;
        align-items: flex-start !important;
        margin-bottom: 15px !important;
    }
    
    .testimonial-avatar {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        border: 2px solid #3CFF00;
    }
    
    .testimonial-item strong {
        font-size: 16px !important;
        display: block !important;
        margin-bottom: 4px !important;
        color: #fff;
    }
    
    .testimonial-item p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .stars {
        font-size: 15px !important;
        color: #FFD700 !important;
        margin-top: 3px;
    }
    
    /* ===== TOGGLE CONFERENCIAS ===== */
    .conferencias-header {
        font-size: 32px !important;
        padding: 18px 0 !important;
        cursor: pointer;
    }
    
    /* ===== SECCIÓN CONFERENCIAS ===== */
    .conferencias-section-inner {
        padding: 30px 0 !important;
    }
    
    .conferencias-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }
    
    .conferencia-item {
        width: 100%;
    }
    
    .conferencia-item img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        display: inline;
        max-width: 100px;
    }
    
    /* ===== SECCIÓN UBICACIÓN ===== */
    .location-section {
        padding: 30px 0 !important;
    }
    
    .location-container {
        padding: 0 20px !important;
    }
    
    .location-top {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .location-left {
        width: 100% !important;
    }
    
    .location-marca {
        max-width: 200px !important;
        margin: 0 auto 25px auto !important;
        display: block !important;
    }
    
    .location-info-block {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 15px !important;
        text-align: center;
    }
    
    .location-graphic {
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .location-text {
        text-align: center !important;
        padding: 0 !important;
        display: contents;
    }
    
    .location-text strong {
        font-size: 18px !important;
        display: block !important;
        margin-bottom: 10px !important;
        color: #3CFF00 !important;
    }
    
    .location-text p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin: 0 !important;
    }
    
    .location-map {
        width: 100% !important;
    }
    
    .location-map iframe {
        width: 100% !important;
        height: 320px !important;
        border-radius: 15px !important;
        border: none !important;
    }
    
    /* ===== FOOTER ===== */
    .location-footer {
        padding: 30px 0 !important;
    }
    
    .location-footer-top {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 30px 20px !important;
    }
    
    .footer-hours,
    .footer-office {
        width: 100% !important;
        text-align: center !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
    
    .footer-hours strong,
    .footer-office strong {
        font-size: 16px !important;
        display: block !important;
        margin-bottom: 10px !important;
        color: #fff !important;
    }
    
    .footer-office a {
        color: #fff !important;
        text-decoration: none !important;
        word-break: break-word !important;
        display: inline-block;
        margin: 5px 0;
    }
    
    .location-footer-bottom {
        font-size: 12px !important;
        padding: 20px !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }
    
    /* ===== MODAL ===== */
    .modal-dialog {
        margin: 20px !important;
    }
    
    .layout-modal {
        padding: 20px !important;
        border-radius: 15px !important;
    }
    
    .btn-close-img {
        top: 10px !important;
        right: 10px !important;
    }
    
    .btn-close-img img {
        width: 35px !important;
    }
    
    .modal-body {
        padding: 10px !important;
    }
    
    .modal-body img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px;
    }
    
    /* ===== CURSOR - Desactivar en móvil ===== */
    body,
    *,
    a, button, input[type="submit"],
    .btn, .btn-buy, .btn-comprar, .btn-pagar,
    [onclick], [data-bs-toggle], .clickable {
        cursor: default !important;
    }
}

/* ========== SAMSUNG S24 Y MÓVILES SIMILARES (max 430px) ========== */
@media (max-width: 430px) {
    
    .hero-section {
        min-height: 55vh;
    }
    
    .hero-register img {
        max-width: 160px !important;
    }
    
    .hero-bottom img {
        height: 50px;
    }
    
    /* Ajustes de texto */
    .packages-title {
        font-size: 28px !important;
    }
    
    .packages-title .big {
        font-size: 58px !important;
    }
    
    .packages-subtitle {
        font-size: 22px !important;
    }
    
    .packages-text {
        font-size: 13px !important;
    }
    
    .package-name {
        font-size: 26px !important;
    }
    
    .package-price {
        font-size: 38px !important;
    }
    
    .membership-left .package-price {
        font-size: 46px !important;
    }
    
    .news-right h3 {
        font-size: 20px !important;
    }
    
    .news-right p {
        font-size: 14px !important;
    }
    
    .testimonial-item p {
        font-size: 13px !important;
    }
}

/* ========== MÓVILES PEQUEÑOS (max 375px) ========== */
@media (max-width: 375px) {
    
    .hero-register img {
        max-width: 140px !important;
    }
    
    .packages-title .big {
        font-size: 50px !important;
    }
    
    .package-name {
        font-size: 24px !important;
    }
    
    .package-price {
        font-size: 34px !important;
        padding: 15px 20px !important;
    }
    
    .btn-buy {
        font-size: 16px !important;
        padding: 14px 35px !important;
    }
    
    .news-right h3 {
        font-size: 18px !important;
    }
    
    .news-right p {
        font-size: 13px !important;
    }
}

/* ========== LANDSCAPE EN MÓVILES ========== */
@media (max-width: 768px) and (orientation: landscape) {
    
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-socials {
        flex-direction: row !important;
        left: 10px !important;
        top: 10px !important;
    }
    
    .hero-register {
        right: 20px !important;
        left: auto !important;
        transform: none !important;
        bottom: 15% !important;
    }
    
    .hero-register img {
        max-width: 140px !important;
    }
}

/* ========== TABLETS GRANDES (768px - 992px) ========== */
@media (min-width: 768px) and (max-width: 992px) {
    
    .packages-title {
        font-size: 48px;
    }
    
    .packages-title .big {
        font-size: 95px;
    }
    
    .conferencias-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

/* ========== FIX: Prevenir scroll horizontal ========== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    .container {
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100%;
    }
}