/* =============================================
   REDESIGN — Nav
   Sobreescribe el nav original de style.css
   ============================================= */

/* Scroll normal (quitar onepage-scroll) */
#main { height: auto !important; overflow: visible !important; }
.section { height: auto !important; min-height: 100vh; position: relative !important; top: auto !important; }
.section-content, .section-content-footer { position: relative !important; height: auto !important; min-height: calc(100vh - 70px); }

/* Asegurar que el contenido del hero esté sobre los layers de fondo */
.section-1 .hero-search-bar,
.section-1 .hero-content,
.section-1 .hero-artists { position: relative; z-index: 20 !important; }

nav {
    height: 70px !important;
    background: rgba(0, 0, 0, 0.80) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex !important;
    align-items: center;
}

/* Limpiar floats del diseño anterior */
nav .left-menu,
nav .right-menu { display: none !important; }

/* Layout interno */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    padding: 0 36px;
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.nav-logo a {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 44px !important;
    width: auto !important;
    max-width: 200px;
    display: block;
}

/* Links centrales */
.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: color .2s;
}
.nav-link:hover { color: #fc6d00; }

/* Redes sociales */
.nav-social {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.nav-social-link {
    color: rgba(255,255,255,0.90);
    font-size: 16px;
    text-decoration: none;
    transition: color .2s;
}
.nav-social-link:hover { color: #fc6d00; }
.nav-links-social { display: none; }

/* Quitar el indicador "Scroll" */
.scroll-event { display: none !important; }

/* Hamburguesa (solo móvil) */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.nav-hamburger .icon-close { display: none; }
nav.nav-open .nav-hamburger .icon-bars { display: none; }
nav.nav-open .nav-hamburger .icon-close { display: inline-block; }

/* Nav al hacer scroll */
nav.background-1 {
    background: rgba(0, 0, 0, 0.96) !important;
    box-shadow: 0 2px 0 0 #fc6d00 !important;
}

/* Compensar altura del nav en section-content */
.section-content,
.section-content-footer {
    padding-top: 70px !important;
}

/* =============================================
   REDESIGN — Hero (section-1)
   ============================================= */

.section-1 {
    position: relative;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column;
    padding-top: 70px; /* altura del nav */
    overflow: hidden;
}

/* Search bar — parte superior, en flujo normal */
.hero-search-bar {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px 20px 0;
    z-index: 30;
    position: relative;
    flex-shrink: 0;
}
.hero-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 10px 14px;
}
.hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}
.hero-search-input::placeholder { color: rgba(255,255,255,0.65); }
.hero-search-icon {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    cursor: pointer;
    padding: 0 4px;
    transition: color .2s;
}
.hero-search-icon:hover { color: #fc6d00; }

/* dropdown de subcategorías (Género / País) */
.hero-filters {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    margin-top: 8px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: #0d4a5a;
    border-radius: 8px;
    padding: 14px;
    z-index: 40;
    box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}
.hero-filters.open { display: flex; }
.hero-select {
    flex: 1;
    min-width: 110px;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-radius: 6px;
    padding: 12px 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.hero-buscar {
    background: #fc6d00;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.hero-buscar:hover { background: #e05e00; }

/* Género inline dentro de la barra (hero y sección artistas) */
.hero-inline-select,
.as-inline-select {
    flex-shrink: 0;
    max-width: 160px;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-left: 1px solid rgba(255,255,255,0.35);
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="%23ffffff" d="M0 0l5 6 5-6z"/></svg>') no-repeat right 8px center;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    padding: 6px 26px 6px 14px;
    cursor: pointer;
    outline: 0;
}
.hero-inline-select option,
.as-inline-select option { color: #333; }
.as-buscar-icon {
    background: none;
    border: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
    transition: color .2s;
}
.as-buscar-icon:hover { color: #fc6d00; }

/* Contenido central */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 20;
    padding: 20px 20px 20px;
    position: relative;
}
.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.hero-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: #fc6d00;
    margin: 18px auto 0;
}
.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-btn {
    display: inline-block;
    background: #fc6d00;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 42px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}
.hero-btn:hover {
    background: #e05e00;
    box-shadow: 0 4px 20px rgba(252, 109, 0, 0.5);
    color: white;
}

/* Tira de artistas — parte inferior */
.hero-artists {
    width: 100%;
    z-index: 10;
    flex-shrink: 0;
}
.hero-artist-item {
    position: relative;
    overflow: hidden;
}
.hero-artist-img {
    height: 26vh;
    width: 100%;
    transition: transform .4s;
}
.hero-artist-item:hover .hero-artist-img {
    transform: scale(1.05);
}
.hero-artist-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px 4px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.85);
}

/* =============================================
   REDESIGN — Responsive Nav + Hero (< 950px)
   ============================================= */
@media screen and (max-width: 950px) {
    /* nav mobile: logo centrado, sin redes, menú dropdown */
    .nav-inner { padding: 0 16px; position: relative; justify-content: center; }
    .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-social { position: absolute; right: 14px; gap: 0; }
    .nav-social-link { display: none !important; }
    .nav-hamburger { display: block !important; }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: #0d4a5a;
        padding: 8px 0 26px;
        box-shadow: 0 14px 26px rgba(0,0,0,0.45);
        z-index: 90;
    }
    nav.nav-open .nav-links { display: flex; }
    .nav-link {
        width: 100%;
        text-align: center;
        font-size: 15px;
        letter-spacing: 1.5px;
        padding: 17px 16px;
    }
    .nav-links-social {
        display: flex;
        justify-content: center;
        gap: 26px;
        padding: 20px 0 8px;
        width: 100%;
    }
    .nav-links-social a { color: #fff; font-size: 21px; text-decoration: none; }
    .nav-links-social a:hover { color: #fc6d00; }

    .hero-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }
    .hero-subtitle { font-size: 2.5vw; letter-spacing: 1px; }
    .hero-artist-img { height: 20vh; }
}

/* =============================================
   REDESIGN — Sección 2 (Cómo Funciona)
   ============================================= */
.section-2 {
    background: #f2f2f2 !important;
    min-height: 100vh !important;
    height: auto !important;
    position: relative !important;
    top: auto !important;
    display: flex !important;
    align-items: center;
    z-index: 10 !important;
    isolation: isolate;
}
.s2-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 30px;
    text-align: center;
}
.s2-header { margin-bottom: 60px; }
.s2-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #1a3a4a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.s2-underline {
    width: 300px;
    max-width: 80%;
    height: 5px;
    background: #fc6d00;
    margin: 0 auto 40px;
}
.s2-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    font-weight: 800;
    color: #1a3a4a;
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 1px;
}
/* recuadros resaltados del subtítulo */
.s2-subtitle .hl {
    display: inline-block;
    color: #fff;
    padding: 1px 12px;
    line-height: 1.35;
    white-space: nowrap;
}
.s2-subtitle .hl-orange { background: #fc6d00; }
.s2-subtitle .hl-teal { background: #1a4a5a; }

.s2-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.s2-step {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.s2-step-img-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}
.s2-step-img {
    width: 140px;
    height: 140px;
    display: block;
}
.s2-step-num {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 30%);
    background: white;
    border: 2px solid #fc6d00;
    color: #1a4a5a;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 900;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.s2-step-title {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #fc6d00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
    margin-top: 12px;
}
.s2-step-text {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a3a4a;
    line-height: 1.5;
    text-align: center;
    margin-top: 4px;
    text-wrap: balance;
}

@media (max-width: 768px) {
    /* Compactar para que la sección entre en una sola pantalla */
    .section-2 .s2-inner { padding: 84px 18px 34px; }
    .s2-header { margin-bottom: 24px; }
    .s2-title { font-size: 1.7rem; margin-bottom: 6px; }
    .s2-title::after { height: 4px; margin-top: 10px; }
    .s2-subtitle { font-size: 1rem; line-height: 1.4; letter-spacing: 0.5px; margin-bottom: 0; }
    /* 2 columnas (2x2) — evita que se monten uno sobre otro */
    .s2-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 14px; justify-items: center; }
    .s2-step { width: 100%; max-width: 100%; min-width: 0; gap: 10px; }
    .s2-step-img, .s2-step-img-wrap { width: 104px; height: 104px; }
    .s2-step-title { font-size: 14px; margin-top: 4px; }
    .s2-step-text { font-size: 12.5px; line-height: 1.45; margin-top: 2px; }
}
/* Pantallas muy bajas: reducir un poco más */
@media (max-width: 768px) and (max-height: 720px) {
    .s2-step-img, .s2-step-img-wrap { width: 78px; height: 78px; }
    .s2-step-text { font-size: 11px; }
    .s2-header { margin-bottom: 16px; }
    .section-2 .s2-inner { padding: 78px 16px 26px; }
}

/* Scroll suave a las secciones del home desde el menú */
html { scroll-behavior: smooth; }
#como-funciona, #tres, #servicios, #cuatro, #faq, #contacto { scroll-margin-top: 76px; }

/* =============================================
   REDESIGN — Sección 3 (Artistas / círculos)
   ============================================= */
.artists-section {
    position: relative !important;
    height: auto !important;
    min-height: 100vh !important;
    top: auto !important;
    display: flex !important;
    align-items: center;
    z-index: 10 !important;
    isolation: isolate;
    background: linear-gradient(180deg, #002630 0%, #004E5E 100%);
}
.as-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 84px 20px 34px;
    text-align: center;
}
.as-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}
.as-underline {
    width: 300px;
    max-width: 70%;
    height: 5px;
    background: #fc6d00;
    margin: 14px auto 26px;
}

/* búsqueda — misma barra colapsable que el hero */
.as-searchbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto 30px;
    padding: 10px 6px;
    border-bottom: 2px solid rgba(255,255,255,0.7);
}
.as-search-ico { color: #fff; font-size: 18px; }
.as-search-menu {
    background: none;
    border: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
    transition: color .2s;
}
.as-search-menu:hover { color: #fc6d00; }
.as-search-input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
}
.as-search-input::placeholder { color: rgba(255,255,255,0.75); }

/* filtros — dropdown desplegable (Género / País), oculto por defecto */
.as-filters {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background: #0d4a5a;
    border-radius: 8px;
    padding: 14px;
    z-index: 60;
    box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}
.as-filters.open { display: flex; }
.as-select {
    flex: 1;
    min-width: 130px;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.as-buscar {
    background: #fc6d00;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 12px 28px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.as-buscar:hover { background: #e05e00; }

/* galería de círculos */
.as-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 12px;
    scrollbar-width: none;
}
.as-scroll::-webkit-scrollbar { display: none; }
.as-track {
    display: flex;
    align-items: center;
    gap: 66px;
    width: max-content;
    padding: 16px 48px;
}
.as-group {
    display: flex;
    align-items: center;
    gap: 40px;
}
.as-smalls {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 30px 34px;
}

/* scrollbar custom siempre visible */
.as-bar {
    position: relative;
    height: 7px;
    max-width: 900px;
    margin: 16px auto 0;
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
    cursor: pointer;
}
.as-bar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: #fc6d00;
    border-radius: 4px;
    cursor: grab;
}
.as-bar-thumb:active { cursor: grabbing; }
.as-circle {
    position: relative;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    transition: opacity .28s ease, transform .3s ease;
}
.as-circle:hover { transform: scale(1.04); }
.as-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 4px #fff;
}
.as-small { width: 118px; height: 118px; }
.as-big { width: 236px; height: 236px; }
.as-curve {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.7));
}
.as-curve-text {
    fill: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 8px;
    letter-spacing: 0.4px;
}

.as-vermas {
    display: inline-block;
    margin-top: 22px;
    border: 2px solid #fc6d00;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 38px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}
.as-vermas:hover { background: #fc6d00; color: #fff; }

@media (max-width: 768px) {
    .as-select { min-width: 0; flex: 1; }
    .as-filters { gap: 12px; }
    /* galería con scroll/swipe manual horizontal */
    .as-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 30px 0 6px;
    }
    .as-track {
        flex-direction: row;
        width: max-content;
        gap: 40px;
        padding: 10px 22px;
        align-items: center;
    }
    .as-group { gap: 22px; }
    .as-smalls { gap: 30px 26px; }
    .as-small { width: 92px; height: 92px; }
    .as-big { width: 180px; height: 180px; }
    /* bordes más finos, tipografía más liviana */
    .as-photo { box-shadow: 0 0 0 2px #fff; }
    .as-curve-text { font-size: 8px; font-weight: 600; }
    .as-small .as-curve-text { font-size: 7px; }
    .as-hover-name { font-weight: 700; }
    .as-small .as-hover-name { font-size: 9px; }
    .as-big .as-hover-name { font-size: 16px; }
    .as-bar { display: block; }
}

/* =============================================
   REDESIGN — Sección Servicios
   ============================================= */
.services-section {
    position: relative !important;
    height: auto !important;
    min-height: 100vh !important;
    top: auto !important;
    display: flex !important;
    align-items: center;
    z-index: 10 !important;
    isolation: isolate;
    background: #e9edee;
}
.sv-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 84px 30px 44px;
    text-align: center;
}
.sv-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #1a4a5a;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}
.sv-underline {
    width: 300px;
    max-width: 70%;
    height: 5px;
    background: #fc6d00;
    margin: 16px auto 46px;
}
.sv-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #1a4a5a;
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 34px;
}
.sv-subtitle .hl {
    display: inline-block;
    color: #fff;
    padding: 1px 12px;
    line-height: 1.35;
}
.sv-subtitle .hl-orange { background: #fc6d00; }

.sv-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.sv-card {
    flex: 1;
    min-width: 240px;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sv-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 5px;
    background: #1a4a5a;
    box-sizing: border-box;
}
.sv-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #0d3947;
}
.sv-card-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fc6d00;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 16px 0 8px;
}
.sv-card-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #1a4a5a;
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0 0 16px;
}
.sv-btn {
    display: inline-block;
    margin-top: auto;
    background: #fc6d00;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 34px;
    border-radius: 4px;
    transition: background .2s;
}
.sv-btn:hover { background: #e05e00; color: #fff; }

@media (max-width: 768px) {
    .sv-cards { gap: 50px; }
    .sv-card { max-width: 360px; }
    /* El recuadro naranja del subtítulo se ve mal al partirse → subrayado */
    .sv-subtitle .hl-orange {
        display: inline;
        background: transparent;
        color: #fc6d00;
        padding: 0;
        text-decoration: underline;
        text-decoration-color: #fc6d00;
        text-decoration-thickness: 3px;
        text-underline-offset: 4px;
    }
}

/* =============================================
   REDESIGN — Sección Nosotros + Noticias
   ============================================= */
/* Nosotros — fondo oscuro, letra clara, con video institucional */
.about-section {
    position: relative !important;
    height: auto !important;
    min-height: 100vh !important;
    top: auto !important;
    display: flex !important;
    align-items: center;
    z-index: 10 !important;
    isolation: isolate;
    overflow-x: hidden;
    background: linear-gradient(180deg, #000000 0%, #042e3a 70%, #064254 100%);
}
.ab-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 84px 30px 48px;
    text-align: center;
    box-sizing: border-box;
}
.ab-about {
    max-width: 880px;
    margin: 28px auto 34px;
    color: #eef4f5;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.3vw, 1.08rem);
    line-height: 1.6;
}
.ab-about p { margin: 0 0 16px; }
.ab-about p:last-child { margin-bottom: 0; }
/* En móvil el video ocupa todo el ancho disponible (centrado) */
.ab-video { width: 100%; max-width: 720px; margin-left: auto; margin-right: auto; }
/* En desktop se limita por alto de pantalla para que la sección entre en 100vh */
@media (min-width: 901px) {
    .ab-video { width: min(720px, 78vh); }
}
.ab-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.12);
}
.ab-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* En móvil el iframe va en flujo normal (relative), no absolute */
@media (max-width: 900px) {
    .ab-video-frame {
        aspect-ratio: auto;
        height: auto;
    }
    .ab-video-frame iframe {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        display: block;
    }
    /* fallback si el navegador no soporta aspect-ratio en el iframe */
    @supports not (aspect-ratio: 1) {
        .ab-video-frame iframe { height: 56vw; max-height: 60vh; }
    }
}
.ab-video-placeholder {
    background: linear-gradient(135deg, #06333f 0%, #0a4c5e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-video-ph-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,0.72);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.ab-video-ph-inner i { font-size: 64px; color: #fc6d00; }
.ab-video-ph-inner span { font-size: 15px; }
/* Pantallas de poca altura: compactar aún más el texto */
@media (max-height: 760px) {
    .ab-inner { padding: 76px 24px 28px; }
    .ab-about { margin: 18px auto 22px; font-size: 0.88rem; line-height: 1.5; }
    .ab-about p { margin: 0 0 12px; }
}

/* Noticias — fondo blanco, letra azul, subsección de Nosotros */
.news-section {
    position: relative !important;
    height: auto !important;
    min-height: 100vh !important;
    top: auto !important;
    display: flex !important;
    align-items: center;
    z-index: 10 !important;
    isolation: isolate;
    background: #ffffff;
}
.news-section .nw-inner { width: 100%; padding: 56px 30px 70px; }
.news-section .nw-title { color: #12508a; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: 2px; }
.news-section .nw-title-cyan::after { background: #12508a; height: 4px; }
.news-section .nw-card-title,
.news-section .nw-card-title a { color: #12508a; }
.news-section .nw-card-text { color: #55636b; }
.news-section .nw-card-line { background: #fc6d00; }
.news-section .nw-leermas { background: #fc6d00; color: #fff; }
.news-section .nw-leermas:hover { background: #e05e00; color: #fff; }
.news-section .nw-card-photo { border-color: #12508a; }
.news-section .nw-cards { max-width: 900px; }
.nw-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 30px 90px;
    text-align: center;
}
.nw-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}
.nw-underline {
    width: 300px;
    max-width: 70%;
    height: 5px;
    margin: 16px auto 0;
    border-radius: 2px;
}
.nw-underline-orange { background: #fc6d00; }
.nw-underline-cyan { background: #1ba9cc; }

.nw-about {
    max-width: 1000px;
    margin: 44px auto 90px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.7;
}
.nw-about p { margin: 0 0 22px; }
.nw-about p:last-child { margin-bottom: 0; }

.nw-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 64px;
    max-width: 1120px;
    margin: 50px auto 0;
}
.nw-card {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}
.nw-card-img { flex-shrink: 0; display: block; }
.nw-card-photo {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 4px solid #fc6d00;
    background-size: cover;
    background-position: center;
    background-color: #0d3947;
    box-sizing: border-box;
}
.nw-card-body { flex: 1; }
.nw-card-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}
.nw-card-line {
    width: 90px;
    height: 3px;
    background: #fc6d00;
    margin: 10px 0 14px;
}
.nw-card-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #d4dde0;
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 18px;
}
.nw-leermas {
    display: inline-block;
    background: #fff;
    color: #1a3a4a;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    padding: 9px 26px;
    border-radius: 22px;
    transition: background .2s, color .2s;
}
.nw-leermas:hover { background: #fc6d00; color: #fff; }

@media (max-width: 900px) {
    .nw-cards { grid-template-columns: 1fr; gap: 44px; max-width: 460px; }
    .nw-card {
        flex-direction: column;
        text-align: center;
    }
    .nw-card-line { margin-left: auto; margin-right: auto; }
}

/* =============================================
   REDESIGN — Sección Preguntas Frecuentes
   ============================================= */
.faq-section {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    top: auto !important;
    display: block !important;
    z-index: 10 !important;
    isolation: isolate;
    background: #e9edee;
}
.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px 100px;
    text-align: center;
}
.faq-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #0d4a5a;
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}
.faq-underline {
    width: 320px;
    max-width: 70%;
    height: 5px;
    background: #fc6d00;
    margin: 16px auto 40px;
}
.faq-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #0d4a5a;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 56px;
}
.faq-list {
    max-width: 1140px;
    margin: 0 auto;
    text-align: left;
}
.faq-item { margin-bottom: 4px; }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #0d4a5a;
    color: #fff;
    border: 0;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    padding: 20px 26px;
}
.faq-ico {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.faq-ico::before {
    content: '+';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fc6d00;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}
.faq-item.open .faq-ico::before { content: '–'; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    background: #dfe4e5;
    transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
    margin: 0;
    padding: 18px 26px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #0d4a5a;
    font-size: 14px;
    line-height: 1.6;
}

/* =============================================
   REDESIGN — Sección Contáctanos
   ============================================= */
.contact-section {
    position: relative !important;
    height: auto !important;
    min-height: 100vh !important;
    top: auto !important;
    display: flex !important;
    align-items: center;
    z-index: 10 !important;
    isolation: isolate;
    background: linear-gradient(180deg, #00121a 0%, #0a3f4e 100%);
}
.ct-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 110px 30px 90px;
    text-align: center;
}
.ct-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(2.1rem, 4.2vw, 3.5rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}
.ct-underline {
    width: 320px;
    max-width: 70%;
    height: 5px;
    background: #fc6d00;
    margin: 16px auto 44px;
}
.ct-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.15rem, 2.1vw, 1.75rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 72px;
}
.ct-channels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
}
.ct-channel {
    flex: 1;
    min-width: 240px;
    max-width: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.ct-circle {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 3px solid #14505f;
    outline-offset: 6px;
    transition: transform .25s;
}
.ct-channel:hover .ct-circle { transform: translateY(-5px); }
.ct-circle img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}
.ct-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #fc6d00;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 46px 0 26px;
}
.ct-value {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    word-break: break-word;
}

@media (max-width: 768px) {
    .ct-channels {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 16px;
        max-width: 420px;
        margin: 0 auto;
    }
    .ct-channel { max-width: none; min-width: 0; }
    .ct-circle { width: 128px; height: 128px; }
    .ct-circle img { width: 50px; height: 50px; }
    .ct-label { margin: 28px 0 14px; font-size: 0.92rem; }
    .ct-value { font-size: 14px; }
}

/* =============================================
   REDESIGN — Página de Artista (simplificada)
   ============================================= */
.ap-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 40px 60px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #00121a 0%, #052b36 55%, #0a3f4e 100%);
}
.ap-wrap {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1240px;
    width: 100%;
}
.ap-photo-wrap { flex-shrink: 0; }
.ap-photo {
    width: 440px;
    height: 440px;
    max-width: 42vw;
    border-radius: 50%;
    border: 8px solid #fc6d00;
    background-size: cover;
    background-position: center;
    background-color: #0d3947;
    box-sizing: border-box;
}
.ap-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
/* Dark sites (contratar): solo el logo blanco, sin círculo ni borde */
.ap-photo--logo { border: 0; background: none; border-radius: 0; }
.ap-photo--logo img { object-fit: contain; padding: 0; border-radius: 0; }
.ap-info { flex: 1; min-width: 0; }
.ap-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}
.ap-name-line {
    width: 100%;
    max-width: 560px;
    height: 4px;
    background: #fc6d00;
    margin: 18px 0 26px;
}
.ap-bio {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #dfe7ea;
    font-size: 15px;
    line-height: 1.65;
    max-height: 34vh;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 28px;
}
.ap-bio::-webkit-scrollbar { width: 6px; }
.ap-bio::-webkit-scrollbar-thumb { background: #fc6d00; border-radius: 3px; }
.ap-btn {
    display: inline-block;
    background: #fc6d00;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 38px;
    border-radius: 6px;
    transition: background .2s;
}
.ap-btn:hover { background: #e05e00; color: #fff; }
.ap-player { margin-top: 28px; max-width: 560px; }
.ap-player-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1DB954;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ap-player iframe { display: block; border-radius: 12px; }

@media (max-width: 900px) {
    .ap-wrap { flex-direction: column; gap: 34px; text-align: center; }
    .ap-photo { width: 280px; height: 280px; max-width: 75vw; }
    .ap-name-line { margin-left: auto; margin-right: auto; }
    .ap-bio { text-align: left; max-height: none; }
    .ap-player { margin-left: auto; margin-right: auto; }
}

/* Detalle de noticia (reusa el hero de artista) */
.nd-hero { align-items: flex-start; }
.nd-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.08;
    text-transform: uppercase;
    margin: 0;
}
.nd-line {
    width: 100%;
    max-width: 560px;
    height: 4px;
    background: #fc6d00;
    margin: 18px 0 26px;
}
.nd-intro {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
}
.nd-body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #dfe7ea;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 30px;
}
.nd-body p { margin: 0 0 16px; }
@media (max-width: 900px) {
    .nd-hero { align-items: center; }
    .nd-line { margin-left: auto; margin-right: auto; }
    .nd-hero .ap-info { text-align: left; }
}

/* =============================================
   REDESIGN — Subpáginas de Servicios
   ============================================= */
.svc-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 50px 70px;
    box-sizing: border-box;
    background: linear-gradient(160deg, #00121a 0%, #042b36 55%, #0a3f4e 100%);
}
.svc-wrap {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.svc-left { flex: 1; min-width: 0; }
.svc-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}
.svc-underline {
    width: 100%;
    max-width: 430px;
    height: 5px;
    background: #fc6d00;
    margin: 16px 0 28px;
}
.svc-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #e0e8ea;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 620px;
}
.svc-gallery { margin-top: 28px; max-width: 620px; }
.svc-gimg {
    width: 100%;
    height: 150px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-color: #0d3947;
}
.svc-gallery .owl-nav { margin: 0; }
.svc-gallery .owl-nav button.owl-prev,
.svc-gallery .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
}
.svc-gallery .owl-nav button.owl-prev { left: -26px; }
.svc-gallery .owl-nav button.owl-next { right: -26px; }
.svc-arrow { color: #6f8a92; font-size: 22px; }
.svc-gallery .owl-nav button:hover .svc-arrow { color: #fc6d00; }

/* formulario */
.svc-right { flex: 0 0 440px; max-width: 440px; }
.svc-form {
    background: #fff;
    border-radius: 16px;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
}
.svc-label {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}
.svc-input {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4ccce;
    border-radius: 6px;
    padding: 11px 13px;
    margin-bottom: 18px;
    outline: none;
    transition: border-color .2s;
}
.svc-input:focus { border-color: #fc6d00; }
.svc-textarea { resize: vertical; min-height: 120px; }
.svc-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 18px;
    cursor: pointer;
}
.svc-check input { width: 16px; height: 16px; accent-color: #fc6d00; }
.svc-terms-link { color: #fc6d00; text-decoration: underline; font-weight: 600; }
.svc-terms-link:hover { color: #e05e00; }
.svc-error {
    display: none;
    color: #c0392b;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    margin-bottom: 12px;
}
.svc-submit {
    background: #fc6d00;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 13px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s;
}
.svc-submit:hover { background: #e05e00; }

@media (max-width: 950px) {
    .svc-hero { padding: 100px 20px 50px; overflow: hidden; }
    .svc-wrap { flex-direction: column; gap: 44px; min-width: 0; }
    .svc-left { width: 100%; min-width: 0; }
    .svc-right { flex: 1 1 auto; max-width: 560px; width: 100%; }
    .svc-title { font-size: clamp(1.7rem, 8vw, 2.6rem); word-break: break-word; }
    .svc-text { max-width: 100%; }
    /* Galería: nunca más ancha que la columna (imágenes deformaban el ancho) */
    .svc-gallery { max-width: 100%; width: 100%; margin-left: auto; margin-right: auto; }
    .svc-gallery .owl-stage-outer { overflow: hidden; }
    .svc-gimg { height: 200px; }
    .svc-gallery .owl-nav button.owl-prev { left: 4px; }
    .svc-gallery .owl-nav button.owl-next { right: 4px; }
}

/* =============================================
   Trabaja con nosotros (páginas ocultas)
   ============================================= */
.tj-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 24px 70px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #00121a 0%, #052b36 55%, #0a3f4e 100%);
}
.tj-inner { width: 100%; max-width: 600px; text-align: center; }
.tj-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}
.tj-underline {
    width: 300px;
    max-width: 70%;
    height: 5px;
    background: #1ba9cc;
    margin: 16px auto 0;
    border-radius: 2px;
}
.tj-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px 34px 36px;
    margin-top: 54px;
    text-align: left;
}
.tj-h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #fc6d00;
    font-size: 1.1rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}
.tj-h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #1ba9cc;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 6px;
}
.tj-intro {
    font-family: 'Raleway', sans-serif;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 0;
}
.tj-form { display: flex; flex-direction: column; margin-top: 20px; }
.tj-label {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #555;
    margin: 12px 0 6px;
}
.tj-input {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4ccce;
    border-radius: 6px;
    padding: 11px 13px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
    box-sizing: border-box;
}
.tj-input:focus { border-color: #fc6d00; }
.tj-textarea { resize: vertical; min-height: 120px; }
.tj-row { display: flex; gap: 16px; }
.tj-col { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.tj-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #555;
    margin: 18px 0;
    cursor: pointer;
}
.tj-check input { width: 16px; height: 16px; accent-color: #fc6d00; }
.tj-error {
    display: none;
    color: #c0392b;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    margin-bottom: 10px;
}
.tj-submit {
    background: #fc6d00;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 13px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s;
}
.tj-submit:hover { background: #e05e00; }

@media (max-width: 600px) {
    .tj-row { flex-direction: column; gap: 0; }
}

/* =============================================
   #3 Líneas (naranja/cyan) del mismo ancho que el texto
   ============================================= */
.s2-title, .as-title, .sv-title, .faq-title, .ct-title, .tj-title {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 38px;
}
.nw-title-orange, .nw-title-cyan {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}
.svc-title { width: fit-content; max-width: 100%; margin-bottom: 26px; }
.nd-title { width: fit-content; max-width: 100%; margin-bottom: 24px; }

.s2-underline, .as-underline, .sv-underline, .faq-underline, .ct-underline,
.tj-underline, .svc-underline, .nd-line, .nw-underline { display: none; }

.s2-title::after, .as-title::after, .sv-title::after, .faq-title::after,
.ct-title::after, .svc-title::after, .nd-title::after, .nw-title-orange::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #fc6d00;
    margin: 14px 0 0;
    border-radius: 2px;
}
.tj-title::after, .nw-title-cyan::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #1ba9cc;
    margin: 14px 0 0;
    border-radius: 2px;
}

/* =============================================
   #6 Hover en círculos de artistas
   ============================================= */
.as-hover {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 17, 22, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 12%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}
.as-circle:hover .as-hover { opacity: 1; }
.as-circle:hover .as-curve { opacity: 0; }
.as-hover-name {
    display: inline-block;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}
.as-small .as-hover-name { font-size: 11px; }
.as-big .as-hover-name { font-size: 20px; }

/* FAQ como página propia */
.faq-page { min-height: 100vh !important; box-sizing: border-box; }
.faq-body { background: #e9edee; }

/* =============================================
   Magic scroll — plugin onepage_scroll (como la versión vieja)
   Una sección completa por gesto, con paginación lateral.
   El plugin traslada #main en pasos de 100vh, por eso #main y
   cada .section deben medir exactamente 100vh en desktop.
   ============================================= */
#main.onepage-wrapper { height: 100vh !important; overflow: visible !important; }
.onepage-wrapper .section {
    height: 100vh !important;
    min-height: 0 !important;
    overflow: hidden;
}
/* Paginación lateral visible sobre fondos oscuros */
.onepage-pagination { right: 18px; }
.onepage-pagination li a:before { background: rgba(255,255,255,0.55); }
.onepage-pagination li a.active:before { background: none; border-color: #fc6d00; }

/* Fallback: en mobile/tablet el plugin se desactiva → scroll normal */
@media (max-width: 1024px) {
    html, body { overflow: auto !important; height: auto !important; position: static !important; }
    #main.onepage-wrapper { height: auto !important; }
    .onepage-wrapper .section {
        height: auto !important;
        min-height: 100vh !important;
        overflow: visible;
    }
    .onepage-pagination { display: none !important; }
}

/* =============================================
   Subpágina /artistas — catálogo con círculos (estilo home, fondo claro)
   ============================================= */
.ax-body { background: #e9edee; }
.ax-section {
    background: #e9edee;
    min-height: 100vh;
    padding: 104px 24px 70px;
    box-sizing: border-box;
}
.ax-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ax-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #1a3a4a;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
}
.ax-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #fc6d00;
    margin: 14px 0 0;
    border-radius: 2px;
}
/* buscador estilo hero (texto oscuro sobre fondo claro) */
.ax-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 760px;
    margin: 34px auto 26px;
    padding: 10px 6px;
    border-bottom: 2px solid rgba(26,58,74,0.45);
}
.ax-search-ico { color: #1a3a4a; font-size: 18px; }
.ax-search-input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: #1a3a4a;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
}
.ax-search-input::placeholder { color: rgba(26,58,74,0.6); }
.ax-search-menu { background: none; border: 0; color: #1a3a4a; font-size: 18px; cursor: pointer; padding: 0 4px; transition: color .2s; }
.ax-search-menu:hover { color: #fc6d00; }
.ax-filters {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    margin-top: 10px;
    gap: 12px;
    background: #0d4a5a;
    border-radius: 8px;
    padding: 14px;
    z-index: 60;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.ax-filters.open { display: flex; }
.ax-select {
    flex: 1;
    min-width: 130px;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.ax-buscar {
    background: #fc6d00; color: #fff; border: 0; border-radius: 6px;
    padding: 12px 28px; font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
    transition: background .2s;
}
.ax-buscar:hover { background: #e05e00; }
/* alfabeto */
.ax-alpha {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 4px 14px; max-width: 780px; margin: 0 auto 44px;
}
.ax-alpha a {
    color: #1a3a4a; font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 18px; letter-spacing: 1px; text-decoration: none; transition: color .2s;
}
.ax-alpha a:hover, .ax-alpha a.pag-selected { color: #fc6d00; }
.ax-reset {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fc6d00; font-family: 'Raleway', sans-serif; font-weight: 700;
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 26px;
}
/* grid de círculos */
.ax-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 44px;
    max-width: 1100px;
    margin: 0 auto;
}
.ax-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transition: transform .3s ease;
}
.ax-item:hover { transform: scale(1.04); }
.ax-photo {
    width: 100%; height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #0d3947;
    box-shadow: 0 0 0 4px #fc6d00;
    box-sizing: border-box;
}
.ax-curve {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: visible;
}
.ax-curve-text {
    fill: #1a3a4a;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 7px;
    letter-spacing: 0.4px;
}
.ax-empty {
    grid-column: 1 / -1;
    color: #6a7b82;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    padding: 40px 0;
}
.ax-more {
    display: inline-block;
    margin-top: 46px;
    border: 2px solid #fc6d00;
    color: #1a3a4a;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.ax-more:hover { background: #fc6d00; color: #fff; }

@media (max-width: 900px) {
    .ax-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 30px; }
    .ax-curve-text { font-size: 6.5px; }
}
@media (max-width: 768px) {
    .ax-section { padding: 92px 18px 50px; }
    .ax-grid { gap: 40px 24px; }
}

/* Formulario Bitrix24 embebido en las subpáginas de servicios */
.svc-form-b24 {
    display: block;
    padding: 18px;
    min-height: 220px;
}
.svc-form-b24 > script { display: none; }
.svc-terms-note {
    margin-top: 12px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}
.svc-terms-note .svc-terms-link { color: #fc6d00; }

/* Video de YouTube en el micrositio del artista */
.ap-video { margin-top: 20px; max-width: 560px; }
.ap-video-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff0033;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.ap-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}
.ap-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 900px) {
    .ap-video { margin-left: auto; margin-right: auto; }
}

/* Botón flotante reemplazado por el widget de LiveConnect */
.contact-event { display: none !important; }

/* Texto legal al final del micrositio del artista */
.ap-legal {
    background: #041f28;
    padding: 34px 24px 44px;
}
.ap-legal p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255,255,255,0.7);
    font-family: 'Raleway', sans-serif;
    font-size: 12.5px;
    line-height: 1.7;
    text-align: center;
}
