.footer-bottom-zone {
    text-align: center !important;
}

.footer-bottom-zone .container {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
    max-width: 100%;
}

.footer-bottom-zone p {
    text-align: center !important;
    margin: 0 auto !important;
}
.gallery-item {
    padding: 6px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.small {
    height: 260px;
}

.big {
    height: 260px;
}

.wide {
    height: 420px;
}

.small-bottom {
    height: 220px;
}

@media (max-width: 768px) {
    .small,
    .big,
    .wide,
    .small-bottom {
        height: 250px;
    }
}
.galeria-premium {
  width: 100%;
}

.galeria-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HERO */
.galeria-hero {
  height: 70vh;
  margin-bottom: 20px;
}

/* DOS COLUMNAS */
.galeria-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.galeria-grid-2 img {
  height: 400px;
}

/* TRES IMÁGENES */
.galeria-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.galeria-grid-3 img {
  height: 250px;
}

/* FULL FINAL */
.galeria-full {
  height: 50vh;
}
.galeria-premium {
    width: 100%;
    padding: 0 14px 30px;
}

.galeria-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-hero {
    height: 68vh;
    margin-bottom: 16px;
    overflow: hidden;
}

.galeria-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.galeria-grid-2 img {
    height: 420px;
}

.galeria-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.galeria-grid-3 img {
    height: 260px;
}

.galeria-full {
    height: 52vh;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .galeria-hero,
    .galeria-full {
        height: 420px;
    }

    .galeria-grid-2 img,
    .galeria-grid-3 img {
        height: 280px;
    }
}

@media only screen and (max-width: 767px) {
    .galeria-premium {
        padding: 0 8px 20px;
    }

    .galeria-grid-2,
    .galeria-grid-3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .galeria-hero,
    .galeria-full,
    .galeria-grid-2 img,
    .galeria-grid-3 img {
        height: 240px;
    }
}
@media only screen and (max-width: 767px) {
    .galeria-grid-2,
    .galeria-grid-3 {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 767px) {

    .galeria-premium img {
        border-radius: 6px;
    }

    .galeria-hero {
        height: 60vh;
    }

    .galeria-full {
        height: 40vh;
    }

    .galeria-grid-2 img,
    .galeria-grid-3 img {
        height: 260px;
    }

}
/* ===== GALERÍA PREMIUM PRO ===== */

.galeria-premium {
    width: 100%;
    padding: 0 14px 30px;
}

.galeria-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* estructura */
.galeria-hero,
.galeria-full,
.galeria-grid-2 img,
.galeria-grid-3 img {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.galeria-hero {
    height: 68vh;
    margin-bottom: 16px;
}

.galeria-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.galeria-grid-2 img {
    height: 420px;
}

.galeria-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.galeria-grid-3 img {
    height: 260px;
}

.galeria-full {
    height: 52vh;
}

/* hover elegante desktop */
.galeria-premium img {
    transition: transform 0.7s ease, filter 0.5s ease;
}

.galeria-premium img:hover {
    transform: scale(1.04);
    filter: brightness(1.03);
}

/* contenedor animado */
.gallery-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.gallery-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* delay sutil por bloques */
.gallery-delay-1 { transition-delay: 0.05s; }
.gallery-delay-2 { transition-delay: 0.12s; }
.gallery-delay-3 { transition-delay: 0.2s; }
.gallery-delay-4 { transition-delay: 0.28s; }

/* overlay muy sutil lujo */
.galeria-hero::after,
.galeria-full::after,
.galeria-grid-2 > div::after,
.galeria-grid-3 > div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.08), rgba(0,0,0,0.00));
    pointer-events: none;
}

/* móvil premium */
@media only screen and (max-width: 991px) {
    .galeria-hero,
    .galeria-full {
        height: 420px;
    }

    .galeria-grid-2 img,
    .galeria-grid-3 img {
        height: 280px;
    }
}

@media only screen and (max-width: 767px) {
    .galeria-premium {
        padding: 0 8px 20px;
    }

    .galeria-grid-2,
    .galeria-grid-3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .galeria-hero {
        height: 60vh;
        margin-bottom: 10px;
    }

    .galeria-full {
        height: 40vh;
    }

    .galeria-grid-2 img,
    .galeria-grid-3 img {
        height: 260px;
    }

    .galeria-premium img {
        border-radius: 6px;
    }

    /* menos zoom en móvil */
    .galeria-premium img:hover {
        transform: none;
        filter: none;
    }

    .gallery-reveal {
        transform: translateY(20px);
    }
}
/* ===== EXPERIENCIAS PRO ===== */
.experience {
    background: #f7f7f7;
    padding: 90px 0;
}

.section-title-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-title-center span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #9b9b9b;
    margin-bottom: 12px;
}

.section-title-center h2 {
    margin-bottom: 18px;
}

.section-title-center p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.experience-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin-bottom: 30px;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.experience-card__image {
    height: 320px;
    overflow: hidden;
}

.experience-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.experience-card:hover .experience-card__image img {
    transform: scale(1.04);
}

.experience-card__content {
    padding: 28px 24px 24px;
    text-align: left;
}

.experience-card__quote {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    min-height: 140px;
}

.experience-card h4 {
    font-size: 18px;
    margin: 0;
    color: #111;
}

.experience-cta {
    text-align: center;
    margin-top: 18px;
}

@media only screen and (max-width: 991px) {
    .experience-card__image {
        height: 280px;
    }

    .experience-card__quote {
        min-height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .experience {
        padding: 70px 0;
    }

    .section-title-center {
        margin-bottom: 35px;
    }

    .experience-card__image {
        height: 240px;
    }

    .experience-card__content {
        padding: 22px 18px 20px;
    }

    .experience-card__quote {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* ===== EXPERIENCE PREMIUM ===== */

.experience {
    padding: 100px 0;
}

/* tarjetas */
.experience-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 35px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* hover elegante */
.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* títulos */
.experience-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
}

/* texto */
.experience-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* título principal */
.experience .section-title h2 {
    font-size: 42px;
    letter-spacing: 2px;
}

/* subtítulo */
.experience .section-title span {
    color: #c9a74d; /* dorado */
    letter-spacing: 3px;
    font-size: 12px;
}
.experience-card h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #c9a74d;
    margin-top: 10px;
}
/* ===== EXPERIENCE LUXURY ===== */

.luxury-experience {
    background: #14081f;
    padding: 110px 0;
    position: relative;
}

.luxury-experience .section-title-center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
}

.luxury-experience .section-title-center span {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 16px;
}

.luxury-experience .section-title-center h2 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-weight: 600;
}

.luxury-experience .section-title-center p {
    color: rgba(255,255,255,0.78);
    font-size: 19px;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto;
}

/* tarjetas editoriales */
.luxury-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,162,39,0.18);
    border-radius: 0;
    padding: 42px 34px;
    min-height: 290px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(6px);
}

.luxury-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,162,39,0.45);
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}

.luxury-card h3 {
    color: #f4e6bb;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.luxury-card h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    background: #c9a227;
    margin-top: 14px;
}

.luxury-card p {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

/* animación scroll ya compatible con fade-soft */
.fade-soft {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-soft.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* responsivo */
@media only screen and (max-width: 991px) {
    .luxury-experience {
        padding: 90px 0;
    }

    .luxury-experience .section-title-center h2 {
        font-size: 42px;
    }

    .luxury-experience .section-title-center p {
        font-size: 17px;
    }

    .luxury-card {
        min-height: auto;
        margin-bottom: 24px;
    }

    .luxury-card h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .luxury-experience {
        padding: 75px 0;
    }

    .luxury-experience .section-title-center {
        margin-bottom: 40px;
    }

    .luxury-experience .section-title-center span {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .luxury-experience .section-title-center h2 {
        font-size: 34px;
    }

    .luxury-experience .section-title-center p {
        font-size: 15px;
        line-height: 1.8;
    }

    .luxury-card {
        padding: 30px 22px;
    }

    .luxury-card h3 {
        font-size: 23px;
    }

    .luxury-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}
.luxury-experience .section-title-center h2,
.luxury-card h3 {
    font-family: 'Cormorant Garamond', serif;
}

    background: rgba(20, 8, 31, 0.76) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 0 !important;
    min-height: auto !important;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header__logo img {
    max-height: 78px !important;
    width: auto;
    display: block;
}

.header__nav {
    min-height: auto !important;
}

.header__menu ul li {
    margin-right: 34px;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li a {
    font-size: 15px;
    letter-spacing: 0.8px;
}

@media only screen and (max-width: 767px) {
    .header {
        padding: 10px 0 !important;
    }

    .header__logo img {
        max-height: 52px !important;
    }
}
/* ===== LOGO HEADER FIX PRO ===== */

.header__logo {
    display: flex;
    align-items: center;
    height: auto !important;
}

.header__logo img {
    height: auto !important;
    max-height: 95px !important; /* 🔥 AJUSTA: 90 / 100 / 110 */
    width: auto !important;
    display: block;
}
/* liberar altura del header */
.header,
.header__nav {
    height: auto !important;
    min-height: unset !important;
}

/* ajustar padding para que no quede gigante */
.header {
    padding: 12px 0 !important;
}
.header__logo img {
    max-height: 100px !important;
}
/* ===== HEADER MOBILE FIX FINAL ===== */
@media only screen and (max-width: 767px) {

    .header {
        background: rgba(20, 8, 31, 0.88) !important;
        padding: 6px 0 !important;
        min-height: 64px !important;
        height: auto !important;
    }

    .header .container,
    .header .row {
        min-height: 64px !important;
        height: auto !important;
        align-items: center !important;
    }

    .header__logo {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: auto !important;
        min-height: 64px !important;
    }

    .header__logo img {
        max-height: 42px !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
        margin: 0 !important;
    }

    .header__nav {
        min-height: 58px !important;
        height: auto !important;
    }

    #mobile-menu-wrap {
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}
@media only screen and (max-width: 767px) {

    .header {
        background: rgba(20, 8, 31, 0.92) !important;
        padding: 4px 0 !important;
        min-height: 54px !important;
    }

    .header__logo img {
        max-height: 38px !important;
    }

    /* BOTÓN MENU MÁS ELEGANTE */
    .canvas__open {
        font-size: 13px !important;
        padding: 8px 14px !important;
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        border-radius: 6px !important;
        letter-spacing: 1px;
    }
}
@media only screen and (max-width: 767px) {

    .hero {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }

    .hero__text h2 {
        font-size: 42px !important;
        line-height: 1.1 !important;
    }

    .hero__text p {
        font-size: 14px !important;
        padding: 0 10px;
    }
}
/* ===== MOBILE FIX HEADER ===== */
@media only screen and (max-width: 767px) {
    .header {
        background: rgba(20, 8, 31, 0.92) !important;
        padding: 4px 0 !important;
        min-height: 54px !important;
    }

    .header__logo img {
        max-height: 38px !important;
    }

    .canvas__open {
        font-size: 13px !important;
        padding: 8px 14px !important;
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        border-radius: 6px !important;
        letter-spacing: 1px;
    }
}


/* ===== HERO MOBILE ===== */
@media only screen and (max-width: 767px) {
    .hero {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }

    .hero__text h2 {
        font-size: 42px !important;
        line-height: 1.1 !important;
    }

    .hero__text p {
        font-size: 14px !important;
        padding: 0 10px;
    }
}


/* ===== ABOUT LOGO SECTION ===== */
@media only screen and (max-width: 767px) {
    .about {
        padding: 60px 0 40px !important;
        text-align: center;
    }

    .about img {
        max-width: 140px !important;
        margin-bottom: 10px;
    }
}
/* =========================================================
   MOBILE FINAL CORREGIDO | SOLO MOVIL Y SIN FONDO GLOBAL
========================================================= */
@media only screen and (max-width: 767px) {

    /* ===== HEADER ===== */
    .header {
        background: rgba(20, 8, 31, 0.92) !important;
        padding: 4px 0 !important;
        min-height: 58px !important;
        height: auto !important;
    }

    .header .container,
    .header .row {
        min-height: 58px !important;
        height: auto !important;
        align-items: center !important;
    }

    .header__logo {
        display: flex !important;
        align-items: center !important;
        height: auto !important;
        min-height: 58px !important;
    }

    .header__logo img {
        max-height: 44px !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
        margin: 0 !important;
    }

    .header__nav {
        min-height: 58px !important;
        height: auto !important;
    }

    /* ===== BOTON MENU ===== */
    .canvas__open,
    .slicknav_menu {
        position: absolute !important;
        top: 14px !important;
        right: 16px !important;
        z-index: 9999 !important;
    }

    .canvas__open {
        font-size: 13px !important;
        padding: 10px 14px !important;
        border-radius: 6px !important;
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        letter-spacing: 1px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
    }

    /* ===== HERO ===== */
    .hero {
        padding-top: 84px !important;
        padding-bottom: 56px !important;
    }

    .hero-logo,
    .hero__logo img,
    .hero__text img {
        width: 220px !important;
        max-width: 220px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 18px !important;
    }

    .hero__text h2 {
        font-size: 34px !important;
        line-height: 1.05 !important;
    }

    .hero__text p {
        font-size: 14px !important;
        line-height: 1.65 !important;
        padding: 0 16px !important;
    }

    .primary-btn,
    .btn-gold {
        padding: 14px 26px !important;
        font-size: 15px !important;
        letter-spacing: 2px !important;
    }

    /* ===== BLOQUE LOGO / ABOUT ===== */
    .about {
        padding: 50px 0 34px !important;
        text-align: center !important;
    }

    .about img {
        max-width: 150px !important;
        height: auto !important;
        margin: 0 auto 10px !important;
        display: block !important;
    }

    /* ===== EXPERIENCIA ===== */
    .luxury-experience {
        padding: 70px 0 !important;
    }

    .luxury-experience .section-title-center {
        margin-bottom: 36px !important;
    }

    .luxury-experience .section-title-center span {
        font-size: 11px !important;
        letter-spacing: 3px !important;
    }

    .luxury-experience .section-title-center h2 {
        font-size: 34px !important;
        line-height: 1.08 !important;
    }

    .luxury-experience .section-title-center p {
        font-size: 15px !important;
        line-height: 1.8 !important;
        padding: 0 10px !important;
    }

    .luxury-card {
        padding: 28px 22px !important;
        min-height: auto !important;
        margin-bottom: 20px !important;
    }

    .luxury-card h3 {
        font-size: 22px !important;
    }

    .luxury-card p {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    /* ===== EXPERIENCIAS REALES ===== */
    .experience {
        padding: 70px 0 !important;
    }

    .experience-card__image {
        height: 240px !important;
    }

    .experience-card__content {
        padding: 22px 18px 20px !important;
    }

    .experience-card__quote {
        font-size: 15px !important;
        line-height: 1.7 !important;
        min-height: auto !important;
    }

    /* ===== GALERIA ===== */
    .galeria-premium {
        padding: 0 8px 20px !important;
    }

    .galeria-grid-2,
    .galeria-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .galeria-hero {
        height: 60vh !important;
        margin-bottom: 10px !important;
    }

    .galeria-full {
        height: 40vh !important;
    }

    .galeria-grid-2 img,
    .galeria-grid-3 img {
        height: 260px !important;
    }

    .galeria-premium img {
        border-radius: 6px !important;
    }

    /* ===== CONTACTO ===== */
    .contact_spad,
    .contact {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }

    /* ===== WHATSAPP ===== */
    .whatsapp-float {
        background: linear-gradient(135deg, #d4af37, #b8962e) !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.18) !important;
        width: 68px !important;
        height: 68px !important;
        right: 18px !important;
        bottom: 92px !important;
    }

    .whatsapp-float i {
        color: #fff !important;
        font-size: 30px !important;
        line-height: 68px !important;
    }

    /* ===== FOOTER / CIERRE FINAL ===== */
    footer,
    .footer-bottom-zone,
    .footer-logo-zone {
        background: #14081f !important;
    }

    .footer-logo-zone {
        padding-top: 24px !important;
        padding-bottom: 10px !important;
    }

    .footer-logo {
        max-width: 180px !important;
        width: 180px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 12px !important;
    }

    .footer-location,
    .footer-copy {
        color: #f3f0e8 !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-location {
        font-size: 14px !important;
    }

    .footer-copy {
        font-size: 12px !important;
        line-height: 1.6 !important;
        padding: 0 12px !important;
    }
}
/* ===== MENU MOBILE FIX ===== */
@media only screen and (max-width: 767px) {

    .canvas__open,
    .slicknav_menu {
        position: absolute !important;
        top: 16px !important;
        right: 16px !important;
        z-index: 9999 !important;
    }

    .canvas__open {
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        padding: 10px 16px !important;
        border-radius: 6px !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
    }

    /* Evita que se superponga con textos */
    .hero__text {
        padding-top: 40px !important;
    }

}
/* ===== MENU MOBILE FIX ===== */
@media only screen and (max-width: 767px) {

    .canvas__open,
    .slicknav_menu {
        position: absolute !important;
        top: 16px !important;
        right: 16px !important;
        z-index: 9999 !important;
    }

    .canvas__open {
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        padding: 10px 16px !important;
        border-radius: 6px !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
    }

    /* Evita que se superponga con textos */
    .hero__text {
        padding-top: 40px !important;
    }

}
/* ===== BOTONES DORADOS GLOBAL ===== */
.hero .primary-btn,
.hero .btn-gold,
.hero a.primary-btn,
.hero a.btn-gold,
.experience-cta .primary-btn,
.experience-cta .btn-gold,
.experience-cta a {
    background: linear-gradient(135deg, #d4af37, #b8962e) !important;
    color: #fff !important;
    border: none !important;
}
/* ===== BOTONES DORADOS GLOBAL ===== */
.hero .primary-btn,
.hero .btn-gold,
.hero a.primary-btn,
.hero a.btn-gold,
.experience-cta .primary-btn,
.experience-cta .btn-gold,
.experience-cta a {
    background: linear-gradient(135deg, #d4af37, #b8962e) !important;
    color: #fff !important;
    border: none !important;
}
/* ===== MENU MOBILE FINAL DEFINITIVO ===== */
@media only screen and (max-width: 767px) {

    .header {
        position: relative !important;
    }

    .canvas__open,
    .slicknav_menu,
    .slicknav_btn {
        position: fixed !important;
        top: 90px !important;
        right: 18px !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 99999 !important;
    }

    .canvas__open {
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        padding: 10px 16px !important;
        border-radius: 6px !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.22) !important;
    }

    /* baja un poco el contenido del hero para que respire */
    .hero__text {
        padding-top: 70px !important;
    }
}
/* ===== MENU MOBILE FINAL DEFINITIVO ===== */
@media only screen and (max-width: 767px) {

    .header {
        position: relative !important;
    }

    .canvas__open,
    .slicknav_menu,
    .slicknav_btn {
        position: fixed !important;
        top: 118px !important;
        right: 18px !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 99999 !important;
    }

    .canvas__open {
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        padding: 10px 16px !important;
        border-radius: 6px !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.22) !important;
    }

    /* baja un poco el contenido del hero para que respire */
    .hero__text {
        padding-top: 90px !important;
    }
}
/* ===== MOBILE HERO + MENU PREMIUM FINAL ===== */
@media only screen and (max-width: 767px) {

    /* cabecera superior */
    .header {
        background: rgba(20, 8, 31, 0.92) !important;
        min-height: 10px !important;
        padding: 6px 0 !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    .header .container,
    .header .row,
    .header__nav {
        min-height: 10px !important;
        height: auto !important;
        align-items: center !important;
    }

    .header__logo {
        display: flex !important;
        align-items: center !important;
        min-height: 64px !important;
    }

    .header__logo img {
        max-height: 110px !important;
        width: auto !important;
        height: auto !important;
        display: block !important;
    }

    /* boton menu fijo arriba */
        top: 80px !important;
        right: 16px !important;
        left: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        transform: none !important;
        z-index: 100000 !important;
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        border-radius: 6px !important;
        padding: 10px 16px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.22) !important;
    }

    /* hero baja completo */
    .hero {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }

    .hero__text {
        padding-top: 10px !important;
    }

    /* logo dentro del hero */
    .hero-logo,
    .hero__text img,
    .hero__logo img {
        width: 20px !important;
        max-width: 10px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 20px !important;
    }

    .hero__text h2 {
        font-size: 60px !important;
        line-height: 1.02 !important;
        margin-top: 10px !important;
        margin-bottom: 18px !important;
    }

    .hero__text p {
        font-size: 28px !important;
        line-height: 1.65 !important;
        padding: 0 16px !important;
        margin-bottom: 24px !important;
    }

    .hero .primary-btn,
    .hero .btn-gold,
    .hero a.primary-btn,
    .hero a.btn-gold {
        background: linear-gradient(135deg, #d4af37, #b8962e) !important;
        color: #fff !important;
        border: none !important;
        padding: 14px 26px !important;
        letter-spacing: 2px !important;
    }
}
/* ===== MENU MOVIL VISIBILIDAD ===== */
@media only screen and (max-width: 767px) {

    #/mobile-menu-wrap {
        display: block !important;
        position: relative !important;
        z-index: 100001 !important;
    }

    .slicknav_menu {
        display: block !important;
        background: transparent !important;
        position: relative !important;
        z-index: 100001 !important;
    }

    .slicknav_nav {
        background: #14081f !important;
        margin-top: 8px !important;
        padding: 10px 0 !important;
        border-radius: 8px !important;
        box-shadow: 0 12px 30px rgba(0,0,0,0.25) !important;
    }

    .slicknav_nav a {
        color: #fff !important;
        font-size: 15px !important;
        letter-spacing: 1px !important;
        padding: 12px 18px !important;
    }

    .slicknav_nav a:hover {
        background: rgba(212,175,55,0.12) !important;
        color: #d4af37 !important;
    }
}
/* =========================================================
   MENU MOVIL DEFINITIVO | SLICKNAV REAL
========================================================= */
@media only screen and (max-width: 767px) {

    /* header limpio */
    .header {
        background: rgba(20, 8, 31, 0.92) !important;
        min-height: 0px !important;
        padding: 6px 0 !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    .header .container,
    .header .row,
    .header__nav {
        min-height: 0px !important;
        height: auto !important;
        align-items: center !important;
    }

    .header__logo {
        display: flex !important;
        align-items: center !important;
        min-height: 64px !important;
    }

    .header__logo img {
        max-height: 0px !important;
        width: auto !important;
        height: auto !important;
        display: block !important;
    }

    /* ocultar menú desktop */
    .header__menu {
        display: none !important;
    }

    .header__right__social {
        display: none !important;
    }

    /* wrapper del menú móvil */
    #/mobile-menu-wrap {
        display: block !important;
        position: absolute !important;
        top: 14px !important;
        right: 16px !important;
        width: auto !important;
        z-index: 100000 !important;
    }

    /* contenedor slicknav */
    .slicknav_menu {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* botón real */
    .slicknav_btn {
        float: none !important;
        margin: 0 !important;
        background: linear-gradient(135deg, #6a00ff, #9d4edd) !important;
        border-radius: 6px !important;
        padding: 10px 16px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.22) !important;
    }

    .slicknav_menutxt {
        font-size: 13px !important;
        letter-spacing: 1px !important;
        font-weight: 600 !important;
        color: #fff !important;
    }

    .slicknav_icon-bar {
        background-color: #fff !important;
    }

    /* menú desplegado */
    .slicknav_nav {
        background: #14081f !important;
        margin-top: 10px !important;
        border-radius: 8px !important;
        padding: 8px 0 !important;
        box-shadow: 0 12px 30px rgba(0,0,0,0.28) !important;
        min-width: 220px !important;
    }

    .slicknav_nav li {
        border: none !important;
    }

    .slicknav_nav a {
        color: #fff !important;
        font-size: 15px !important;
        letter-spacing: 0.8px !important;
        padding: 12px 18px !important;
        margin: 0 !important;
    }

    .slicknav_nav a:hover {
        background: rgba(212,175,55,0.12) !important;
        color: #d4af37 !important;
        border-radius: 0 !important;
    }

    /* hero baja para que no choque con menú */
    .hero {
        padding-top: 130px !important;
        padding-bottom: 60px !important;
    }

    .hero__text {
        padding-top: 25px !important;
    }

    .hero__text h2 {
        font-size: 34px !important;
        line-height: 1.02 !important;
        margin-top: 8px !important;
        margin-bottom: 18px !important;
    }

    .hero__text p {
        font-size: 14px !important;
        line-height: 1.65 !important;
        padding: 0 16px !important;
        margin-bottom: 24px !important;
    }
}
.hero,
.hero::before,
.hero__overlay {
    z-index: 1 !important;
}

.header {
    z-index: 9999 !important;
}
.//slicknav_nav a {
    color: #fff !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
    letter-spacing: 1px;
}

.//slicknav_nav a:hover {
    color: #d4af37 !important;
    background: rgba(212,175,55,0.08) !important;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
   #mobile-menu-wrap {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
}
.header {
    background: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 999;
}
.header.scrolled {
    background: #14081f !important;
}
/* =========================================================
   MOBILE ONLY | LIMPIAR FRANJA SUPERIOR + MENU FUERA DEL TITULO
========================================================= */
@media only screen and (max-width: 767px) {

    /* 1) OCULTAR por completo el header móvil */

    }

    /*// 2) //HERO más limpio, sin depender del header */
    .hero {
        padding-top: 90px !important;
        padding-bottom: 60px !important;
        position: relative !important;
    }

    .hero__text {
        padding-top: 0 !important;
        position: relative !important;
        z-index: 5 !important;
    }

    ///*// 3) BOTÓN MENU como botón propio, arriba a la derecha y fuera del título */
    .//slicknav_menu {
        display: block !important;
        position: absolute !important;
        top: 120px !important;
        right: 16px !important;
        left: auto !important;
        width: auto !important;
        background: transparent !important;
        z-index: 99999 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .//slicknav_btn {
        float: none !important;
        display: inline-block !important;
        margin: 0 !important;
        background: linear-gradient(135deg, #7b1bff, #b45cff) !important;
        border-radius: 8px !important;
        padding: 10px 16px !important;
        box-shadow: 0 10px 24px rgba(0,0,0,0.22) !important;
    }

    .//slicknav_menutxt {
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
    }

    .//slicknav_icon-bar {
        background: #fff !important;
    }

    /* 4) MENÚ desplegable */
    //.//slicknav_nav {
        position: absolute !important;
        top: 58px !important;
        right: 0 !important;
        left: auto !important;
        width: 220px !important;
        background: #14081f !important;
        border-radius: 10px !important;
        padding: 8px 0 !important;
        box-shadow: 0 18px 40px rgba(0,0,0,0.30) !important;
        z-index: 100000 !important;
    }

    .//slicknav_nav a {
        color: #fff !important;
        font-size: 15px !important;
        padding: 12px 18px !important;
        letter-spacing: 0.5px !important;
    }

    .//slicknav_nav a:hover {
        color: #d4af37 !important;
        background: rgba(212,175,55,0.08) !important;
    }

    /* 5) BAJAR un poco el hero para que no choque con el botón */
    .hero__text h2 {
        margin-top: 10px !important;
    }
}
/* =========================================
   FIX SOLO INSTAGRAM (mobile in-app)
========================================= */

@media only screen and (max-width: 767px) {

    /* Instagram suele tener altura rara + barra superior */
    @supports (-webkit-touch-callout: none) {

        /* Ocultar header SOLO en entorno tipo IG */
    
        }

        /* Ocultar menú */
        body .slicknav_menu,
        body #mobile-menu-wrap {
            display: none !important;
        }

    }
}
.ig-subtext {
    font-size: 14px;
    color: #777;
    margin-top: 14px;
    line-height: 1.6;
    text-align: center;
    max-width: 60px;
    margin-left: auto;
    margin-right: auto;
}
/* ===== FORMULARIO MÁS CENTRADO Y MÁS COMPACTO ===== */
.cotizar-card-fix form,
#formularioCotizacionIG {
    max-width: 60px;
    margin: 0 auto;
}

.form-icon-group,
.form-group {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.form-icon-group input,
.form-icon-group textarea,
.select-clean,
textarea.form-control {
    max-width: 60px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* campos un poco más bajos */
.form-icon-group input,
.select-clean {
    height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.form-icon-group textarea,
textarea.form-control {
    min-height: 60px;
    padding-top: 14px;
    padding-bottom: 14px;
}

/* servicios más angostos también */
.check-premium {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* botón alineado con el ancho */
button.primary-btn {
    max-width: 680px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* móvil */
@media only screen and (max-width: 767px) {
    .cotizar-card-fix form,
    #formularioCotizacionIG,
    .form-icon-group,
    .form-group,
    .form-icon-group input,
    .form-icon-group textarea,
    .select-clean,
    textarea.form-control,
    .check-premium,
    button.primary-btn {
        max-width: 60%;
    }

    .form-icon-group input,
    .select-clean {
        height: 46px;
    }

    .form-icon-group textarea,
    textarea.form-control {
        min-height: 60px;
    }
}
/* CONTENEDOR CENTRADO REAL */
.form-wrapper {
    max-width: 580px;
    margin: 0 auto;
}

/* que bootstrap no rompa el ancho */
#formularioCotizacionIG .form-control,
#formularioCotizacionIG input,
#formularioCotizacionIG textarea,
#formularioCotizacionIG select {
    width: 100%;
}

/* aire lateral elegante */
#formularioCotizacionIG {
    padding: 0 10px;
}
/* ===== CENTRAR FORMULARIO REAL ===== */
.formulario-centro {
    width: 50%;
    max-width: 100px;
    margin: 0 auto !important;
}

#formularioCotizacionIG {
    width: 100% !important;
    margin: 0 auto !important;
}

#formularioCotizacionIG .form-icon-group,
#formularioCotizacionIG .form-group,
#formularioCotizacionIG .check-premium,
#formularioCotizacionIG button,
#formularioCotizacionIG hr,
#formularioCotizacionIG p,
#formularioCotizacionIG label {
    width: 50% !important;
    max-width: 50% !important;
    margin-left: 50 !important;
    margin-right: 50 !important;
}

#formularioCotizacionIG input,
#formularioCotizacionIG textarea,
#formularioCotizacionIG select,
#formularioCotizacionIG .form-control,
#formularioCotizacionIG .select-clean {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

@media only screen and (max-width: 767px) {
    .formulario-centro {
        max-width: 100%;
    }
}
.cotizar-card-fix {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cotizar-card-fix > * {
    width: 100%;
}
/* ===== OCULTAR MENU MOBILE DEFINITIVO ===== */
@media only screen and (max-width: 767px) {
    .slicknav_menu,
    .slicknav_btn,
    #mobile-menu-wrap,
    .canvas__open {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}
.area-cliente-item a {
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.area-cliente-item a:hover {
    opacity: 1;
    color: #d4af37; /* dorado */
}
@media (max-width: 768px) {
    .area-cliente-item a {
        font-size: 14px;
        opacity: 1;
    }
}
.header__menu ul li a {
    font-size: 14px;
    padding: 10px 12px;
}
/* =========================
   HEADER PREMIUM - ÁREA CLIENTE
   ========================= */

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header__menu ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__menu ul li {
    list-style: none;
}

.header__menu ul li a {
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.header__right__extras {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header__client-link {
    display: inline-block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.82;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header__client-link:hover {
    color: #d4af37;
    opacity: 1;
    text-decoration: none;
}

.header__right__extras a i {
    font-size: 18px;
}

/* Desktop mediano */
@media (max-width: 1199px) {
    .header__menu ul li a {
        font-size: 13px;
        padding: 10px 9px;
    }

    .header__client-link {
        font-size: 12px;
    }

    .header__nav {
        gap: 16px;
    }
}

/* Mobile / Tablet */
@media (max-width: 991px) {
    .header__nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header__menu {
        width: 100%;
    }

    .header__menu ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .header__menu ul li {
        width: 100%;
    }

    .header__menu ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 15px;
    }

    .header__right__extras {
        width: 100%;
        justify-content: flex-start;
        gap: 16px;
        padding-top: 6px;
    }

    .header__client-link {
        font-size: 14px;
        opacity: 1;
    }
}
/* ===== FIX HEADER MENÚ (SOLUCIÓN DEFINITIVA) ===== */

.header-shell {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.header__nav {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.header__menu {
    margin-right: 0 !important;
}

.header__menu ul {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
}

.header__menu ul li {
    margin-right: 0 !important;
}

.header__menu ul li a {
    white-space: nowrap;
    font-size: 14px;
}

/* Área Cliente visible SIEMPRE */
.area-cliente-item {
    display: block !important;
}
.area-cliente-item a {
    opacity: 0.8;
    font-weight: 500;
    transition: 0.3s;
}

.area-cliente-item a:hover {
    opacity: 1;
    color: #d4af37;
}
/* ===== HEADER / MENU FINAL LIMPIO ===== */

}

.header.scrolled {
    background: rgba(20, 8, 31, 0.96) !important;
}

.header-shell {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.header__logo {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    min-height: unset !important;
    padding: 0 !important;
}

.header__logo img {
    max-height: 78px !important;
    width: auto !important;
    display: block !important;
}

.header__nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
    text-align: right !important;
    min-height: unset !important;
    height: auto !important;
    position: static !important;
    width: auto !important;
    background: transparent !important;
}

.header__menu {
    display: block !important;
    margin-right: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

.header__menu ul {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.header__menu ul li {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    list-style: none !important;
    position: relative !important;
    width: auto !important;
}

.header__menu ul li a {
    display: inline-block !important;
    padding: 6px 0 !important;
    font-size: 14px !important;
    letter-spacing: 0.6px !important;
    color: #fff !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.area-cliente-item {
    display: inline-flex !important;
}

.area-cliente-item a {
    color: #d4af37 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
}

.header__right__social {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.header__right__social a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    margin: 0 !important;
}

.jm-menu-toggle {
    display: none !important;
}

/* ===== TABLET / MOBILE ===== */
@media only screen and (max-width: 991px) {
    .jm-menu-toggle {
        display: inline-flex !important;
        width: 44px !important;
        height: 44px !important;
        border: 1px solid rgba(255,255,255,0.22) !important;
        border-radius: 10px !important;
        background: transparent !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        margin-left: auto !important;
    }

    .jm-menu-toggle span {
        width: 20px !important;
        height: 2px !important;
        background: #fff !important;
        display: block !important;
    }

    .header__nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #14081f !important;
        padding: 14px 18px 20px !important;
        box-shadow: 0 16px 40px rgba(0,0,0,0.22) !important;
    }

    .header__nav.is-open {
        display: block !important;
    }

    .header__menu {
        width: 100% !important;
    }

    .header__menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .header__menu ul li {
        display: block !important;
        width: 100% !important;
    }

    .header__menu ul li a {
        display: block !important;
        width: 100% !important;
        font-size: 15px !important;
        padding: 8px 0 !important;
    }

    .header__right__social {
        display: flex !important;
        margin-top: 12px !important;
    }
}

@media only screen and (max-width: 767px) {

    }

    .header__logo img {
        max-height: 46px !important;

    }

    .header__nav {
        display: none !important;
    }

    .header__nav.is-open {
        display: block !important;
    }
}
/* =========================================
   FIX MOBILE MENÚ COMPLETO (SIN TOCAR DESKTOP)
========================================= */

@media only screen and (max-width: 991px) {

    #jmMainMenuWrap {
        display: none !important;
        width: 100% !important;
        background: #14081f !important;
    }

    #jmMainMenuWrap.is-open {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header__menu {
        width: 100% !important;
    }

    .header__menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 8px !important;
        padding-top: 10px !important;
    }

    .header__menu ul li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .header__menu ul li a {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 15px !important;
        color: #ffffff !important;
    }

    /* 🔥 AREA CLIENTE visible */
    .area-cliente-item {
        display: block !important;
        width: 100% !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 8px !important;
        padding-top: 8px !important;
    }

    .area-cliente-item a {
        color: #d4af37 !important;
        font-weight: 600 !important;
        letter-spacing: 0.8px !important;
    }

    /* Instagram abajo */
    .header__right__social {
        margin-top: 10px !important;
    }
}
/* =========================================
   AREA CLIENTE MOBILE INDEPENDIENTE
   Mantiene desktop igual
========================================= */

.header-mobile-actions {
    display: none;
}

.mobile-client-shortcut {
    display: none;
    text-decoration: none;
}

@media only screen and (max-width: 991px) {
    .header-shell {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .header__logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .header-mobile-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin-left: auto !important;
        flex: 0 0 auto !important;
    }

    .mobile-client-shortcut {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 9px 12px !important;
        border: 1px solid rgba(212, 175, 55, 0.42) !important;
        border-radius: 999px !important;
        color: #d4af37 !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 0.7px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        background: rgba(255,255,255,0.03) !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 10001 !important;
        -webkit-appearance: none;
    }

    .jm-menu-toggle {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        border: 1px solid rgba(255,255,255,0.16) !important;
        border-radius: 10px !important;
        background: transparent !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    .jm-menu-toggle span {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background: #ffffff !important;
    }

    /* El item del menú normal puede seguir existiendo;
       no dependemos de él para móvil */
    .area-cliente-item {
        display: block !important;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-client-shortcut {
        font-size: 11px !important;
        padding: 8px 10px !important;
    }

    .jm-menu-toggle {
        width: 40px !important;
        height: 40px !important;
    }
}
/* =========================================================
   HEADER FINAL | AREA CLIENTE SIN DUPLICADOS
========================================================= */

/* Desktop */
.header-shell {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.header__nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
    text-align: right !important;
}

.header__menu {
    display: block !important;
    margin-right: 0 !important;
    padding: 0 !important;
}

.header__menu ul {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.header__menu ul li {
    display: inline-block !important;
    margin: 0 !important;
    list-style: none !important;
}

.header__menu ul li a {
    display: inline-block !important;
    white-space: nowrap !important;
}

.area-cliente-item {
    display: inline-block !important;
}

.area-cliente-item a {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.jm-menu-toggle {
    display: none !important;
}

/* Mobile / tablet */
@media only screen and (max-width: 991px) {
    .jm-menu-toggle {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        border: 1px solid rgba(255,255,255,0.16) !important;
        border-radius: 10px !important;
        background: transparent !important;
        position: relative !important;
        z-index: 10001 !important;
        margin-left: auto !important;
    }

    .jm-menu-toggle span {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background: #ffffff !important;
    }

    .header__nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #14081f !important;
        padding: 14px 18px 18px !important;
        box-shadow: 0 16px 40px rgba(0,0,0,0.22) !important;
        z-index: 10000 !important;
    }

    .header__nav.is-open {
        display: block !important;
    }

    .header__menu {
        width: 100% !important;
    }

    .header__menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .header__menu ul li {
        display: block !important;
        width: 100% !important;
    }

    .header__menu ul li a {
        display: block !important;
        width: 100% !important;
        font-size: 15px !important;
        padding: 8px 0 !important;
        color: #ffffff !important;
    }

    .area-cliente-item {
        display: block !important;
        width: 100% !important;
        margin-top: 6px !important;
        padding-top: 8px !important;
        border-top: 1px solid rgba(255,255,255,0.10) !important;
    }

    .area-cliente-item a {
        color: #d4af37 !important;
        font-weight: 700 !important;
    }

    .header__right__social {
        display: flex !important;
        margin-top: 10px !important;
    }
}

@media only screen and (max-width: 767px) {
    .header {
        overflow: visible !important;
    }

    .header__logo img {
        max-height: 44px !important;
    }
}
/* =========================================================
   LIMPIEZA FINAL HEADER / MOBILE
   Pegar al FINAL de footer-fix.css
========================================================= */

/* ---------- DESKTOP: mantener lo que ya se ve bien ---------- */
@media only screen and (min-width: 992px) {

    }

    .header-shell {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
    }

    .header__nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 18px !important;
        text-align: right !important;
        position: static !important;
        width: auto !important;
        background: transparent !important;
    }

    .header__menu {
        display: block !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }

    .header__menu ul {
        display: flex !important;
        align-items: center !important;
        gap: 18px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .header__menu ul li {
        display: inline-block !important;
        margin: 0 !important;
        width: auto !important;
    }

    .area-cliente-item {
        display: inline-block !important;
    }

    .jm-menu-toggle,
    .slicknav_menu,
    .slicknav_btn,
    #mobile-menu-wrap,
    .canvas__open {
        display: none !important;
    }
}

/* ---------- MOBILE / TABLET ---------- */
@media only screen and (max-width: 991px) {

    }

    .header-shell {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .header__logo {
        padding: 0 !important;
        min-height: unset !important;
        height: auto !important;
    }

    .header__logo img {
        max-height: 44px !important;
        width: auto !important;
        display: block !important;
    }

    .jm-menu-toggle {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        border: 1px solid rgba(255,255,255,0.16) !important;
        border-radius: 10px !important;
        background: transparent !important;
        margin-left: auto !important;
        position: relative !important;
        z-index: 100001 !important;
    }

    .jm-menu-toggle span {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background: #ffffff !important;
    }

    /* Desactivar menús viejos */
    .slicknav_menu,
    .slicknav_btn,
    #mobile-menu-wrap,
    .canvas__open {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* Menú nuevo */
    .header__nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #14081f !important;
        padding: 14px 18px 18px !important;
        box-shadow: 0 16px 40px rgba(0,0,0,0.22) !important;
        z-index: 100000 !important;
        text-align: left !important;
    }

    .header__nav.is-open {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header__menu {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header__menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .header__menu ul li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .header__menu ul li a {
        display: block !important;
        width: 100% !important;
        font-size: 15px !important;
        padding: 8px 0 !important;
        color: #ffffff !important;
        white-space: nowrap !important;
    }

    .area-cliente-item {
        display: block !important;
        width: 100% !important;
        margin-top: 6px !important;
        padding-top: 8px !important;
        border-top: 1px solid rgba(255,255,255,0.10) !important;
    }

    .area-cliente-item a {
        color: #d4af37 !important;
        font-weight: 700 !important;
    }

    .header__right__social {
        display: flex !important;
        margin-top: 10px !important;
    }

    .hero {
        padding-top: 110px !important;
    }
{