/*
Theme Name: SC Theme
Theme URI: https://sc.wanatop.eu/
Author: Antonio
Author URI: https://sc.wanatop.eu/
Description: Child theme de GeneratePress para SC (Franchise Innovation Summit)
Version: 1.0.0
Requires at least: 4.5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sc
Tags:

Template: generatepress
*/

/* ==================================================
   ÍNDICE DE CONTENIDOS
   ==================================================
    00. ESTILOS GLOBALES ............. línea 38
    01. TOP HEADER, HEADER Y FOOTER .. línea 215
    02. HOME ......................... línea 830
    03. EXPOSITORES .................. línea 845
    04. VISITAR ...................... línea 1110
    05. PROGRAMA ..................... línea 1127
    06. COMUNICACIÓN ................. línea 1144
    07. SC365 ....................... línea 1161
    08. QUIERO ....................... línea 1178
    09. OTROS ........................ línea 1195
    10. BLOQUES GLOBALES ............. línea 1212
    11. SPAZIO RESTAURACIÓN NEWS ..... línea 1949
   ==================================================
*/



/* ==================================================
   00. ESTILOS GLOBALES
   ==================================================
*/


/* Tipografía general*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Tipografía RailwayGank para títulos amarillos*/
@font-face {
  font-family: "RailwayGank";
  src: url("https://sc.wanatop.eu/wp-content/themes/wanaframe/fonts/RailwayGank.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.span-railwaygank {
    font-family: "RailwayGank", Arial, Helvetica, sans-serif;
    color: #F7C904;
    font-size: 58px;
}

/* ==== VARIABLES ==== */
:root {
    --sc-blue-light: #0F9CA0;
    --sc-pink: #F7C904;
    --sc-blue-dark: #010F23;
    --sc-bg-dark: #010F23;
    --sc-bg-light: #F8F8F8;
    --sc-white: #FFFFFF;
    --sc-text-dark: #261B33;

    --sc-topbar-bg: var(--sc-bg-dark);
    --sc-topbar-text: var(--sc-white);
    --sc-topbar-text-muted: rgba(255, 255, 255, 0.6);
    --sc-navbar-bg: rgba(255, 255, 255, 0.12);
    --sc-navbar-bg-solid: #010F23;
    --sc-navbar-text: var(--sc-text-dark);
    --sc-cta-bg: var(--sc-blue-light);
    --sc-cta-bg-hover: #0F9CA0;
    --sc-cta-text: var(--sc-white);

    --sc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sc-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --sc-max-width: 1400px;
    --sc-navbar-radius: 12px;
    --sc-transition: 0.25s ease;
}



/* ==== TIPOGRAFÍA ==== */
.h1-white {
    text-align: center;
    color: white;
    font-size: 66px !important;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-style: italic;
}

@media (max-width: 768px) {
    .h1-white {
        text-align: center;
        color: white;
        font-size: 32px !important;
        font-family: 'Inter';
        font-weight: bold;
        font-style: italic;
    }
}

.h2-dark {
    color: #010F23;
    font-size: 52px !important;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

@media (max-width: 768px) {
    .h2-dark {
        color: #010F23;
        font-size: 38px !important;
        font-family: 'Inter', sans-serif;
        font-weight: bold;
    }
}

.h2-white {
    color: white;
    font-size: 58px !important;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

@media (max-width: 768px) {
    .h2-white {
        font-size: 32px !important;
    }
}

.h3-white {
    color: white;
    font-size: 28px !important;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

@media (max-width: 768px) {
    .h3-white {
        font-size: 18px !important;
    }
}

.p-white-hero {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: white;
    text-align: center;
    font-weight: 300;
}

@media (max-width: 768px) {
    .p-white-hero {
        font-size: 17px;
    }
}

.p-white {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: white;
    text-align: left;
    font-weight: 300;
}

@media (max-width: 768px) {
    .p-white {
        font-size: 14px;
    }
}

.p-dark {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #261B33;
    text-align: left;
}

@media (max-width: 768px) {
    .p-dark {
        font-size: 14px;
    }
}


/* ==== BASE / RESET ==== */
body {
    overflow-x: hidden;
}

.site-header,
.site-footer {
    display: none !important;
}


/* ==== CTAs ==== */
a.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    background-color: #0F9CA0;
    color: white;
    font-size: 16px;
    padding: 10px 50px 10px 50px;
    border-radius: 10px;
    width: fit-content;
}

a.btn-primary:hover {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    background-color: #F7C904;
    color: white;
}

a.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    background-color: #F7C904;
    color: #261B33;
    font-size: 16px;
    padding: 10px 50px 10px 50px;
    border-radius: 10px;
    width: fit-content;
}

a.btn-secondary:hover {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    background-color: #0F9CA0;
    color: white;
}

.btn-primary .icon {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.mat-graf-list {
    display: grid;
    gap: 52px;
    max-width: 840px;
    margin: 0 auto;
}

a.btn-mat-graf {
    display: flex;
    text-align: left !important;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    width: 100%;
    padding: 0 110px 0 110px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #F7C904;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    a.btn-mat-graf {
        font-size: 12px;
    }
}

a.btn-mat-graf:hover {
    background-color: #0F9CA0;
    color: #ffffff;
}

a.btn-mat-graf .btn-mat-graf__icon {
    width: 34px;
    height: 34px;
    fill: currentColor;
    flex-shrink: 0;
}

a.btn-sostenibilidad {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'FranklinCustom';
    font-weight: bold;
    background-color: transparent;
    color: #F7C904;
    font-size: 16px;
    padding: 10px 50px 10px 50px;
    border-radius: 10px;
    width: fit-content;
}

@media (max-width: 768px) {
    a.btn-primary,
    a.btn-secondary {
        padding: 10px 28px;
        font-size: 14px;
    }

    a.btn-sostenibilidad {
        padding: 10px 28px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .mat-graf-list {
        gap: 28px;
    }

    a.btn-mat-graf {
        min-height: 72px;
        padding: 0 24px;
        font-size: 24px;
    }

    a.btn-mat-graf .btn-mat-graf__icon {
        width: 28px;
        height: 28px;
    }
}

/* ==== OTROS GLOBALES ==== */
.icon-servicios-exclusivos .elementor-icon {
    margin-top: -40px !important;
}

/* Breadcrumbs */

.migas {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-align: center !important;
    color: white;
    font-weight: 400;
}

.migas a {
    color: white !important;
}

.migas a:hover {
    color: #010F23!important;
}

.legales {
    font-family: 'Inter', sans-serif; !important;
}


/* ==================================================
   01. TOP HEADER, HEADER Y FOOTER
   ==================================================
*/

/* ==== TOP HEADER ==== */
.sc-topbar {
    padding: 10px 0;
    background: var(--sc-topbar-bg);
}

.sc-topbar__inner {
    max-width: var(--sc-max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logos izquierda (SHOW2BE + AEF) */
.sc-topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sc-topbar__brand-link {
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity var(--sc-transition);
}

.sc-topbar__brand-link:hover {
    opacity: 1;
}

.sc-topbar__brand-logo {
    height: 22px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Lado derecho */
.sc-topbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Patrocinador */
.sc-topbar__sponsor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-topbar__sponsor-label {
    color: white;
    font-family: var(--sc-font-body);
    font-size: 10px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-align: right;
}

.sc-topbar__sponsor-logo {
    height: 24px;
    width: auto;
}

.sc-topbar__sponsor-placeholder {
    color: var(--sc-topbar-text);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Separador */
.sc-topbar__separator {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
}

/* Idiomas */
.sc-topbar__lang-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-topbar__lang-list li {
    margin: 0;
    padding: 0;
}

.sc-topbar__lang-list a {
    color: var(--sc-topbar-text-muted);
    text-decoration: none;
    font-family: var(--sc-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color var(--sc-transition);
}

.sc-topbar__lang-list .current-lang a,
.sc-topbar__lang-list .current-menu-item a,
.sc-topbar__lang-list a:hover {
    color: var(--sc-topbar-text);
}

.sc-topbar__contact-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.sc-topbar__contact-link:hover {
    opacity: 1;
    color: white;
}

/* Responsive — Top Header */
@media (max-width: 768px) {
    .sc-topbar {
        padding: 8px 0;
    }

    .sc-topbar__inner {
        padding: 0 16px;
    }

    .sc-topbar__brand-logo {
        height: 18px;
    }

    .sc-topbar__left {
        gap: 14px;
    }
}


/* ==== HEADER ==== */
#sc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    font-family: var(--sc-font-body);
}

.sc-navbar {
    padding: 0 30px 14px;
    transition: padding var(--sc-transition), box-shadow var(--sc-transition);
}

.sc-navbar.is-scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
}

.sc-navbar__inner {
    max-width: var(--sc-max-width);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--sc-navbar-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 8px 0 0;
    transition: box-shadow var(--sc-transition), background var(--sc-transition);
}

.sc-navbar.is-scrolled .sc-navbar__inner {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Logo */
.sc-navbar__logo {
    flex-shrink: 0;
    padding: 8px 20px;
}

.sc-navbar__logo img,
.sc-navbar__logo .custom-logo {
    height: 44px;
    width: auto;
    display: block;
}

.sc-navbar__site-name {
    color: var(--sc-navbar-text);
    text-decoration: none;
    font-family: var(--sc-font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navegación */
.sc-navbar__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sc-navbar__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.sc-navbar__menu > li {
    margin: 0;
    padding: 0;
    position: relative;
}

.sc-navbar__menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--sc-navbar-text);
    text-decoration: none;
    font-family: var(--sc-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 18px 22px;
    transition: background var(--sc-transition);
    white-space: nowrap;
}

/* Flecha dropdown */
.sc-navbar__menu > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 4px;
    opacity: 0.7;
    transition: transform var(--sc-transition);
}

.sc-navbar__menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submenú (dropdown) */
.sc-navbar__menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--sc-navbar-bg-solid);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--sc-transition);
    z-index: 100;
}

.sc-navbar__menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sc-navbar__menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.sc-navbar__menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--sc-font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all var(--sc-transition);
}

.sc-navbar__menu .sub-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    padding-left: 24px;
}

/* Botón CTA con desplegable hover */
.sc-navbar__cta {
    flex-shrink: 0;
    padding: 0 8px;
}

.sc-navbar__cta--dropdown {
    position: relative;
}

.sc-navbar__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sc-cta-bg);
    color: var(--sc-cta-text);
    text-decoration: none;
    font-family: var(--sc-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background var(--sc-transition);
    white-space: nowrap;
}

.sc-navbar__cta--dropdown:hover .sc-navbar__cta-btn,
.sc-navbar__cta-btn:hover {
    background: var(--sc-cta-bg-hover);
}

.sc-navbar__cta-btn svg {
    opacity: 0.85;
    flex-shrink: 0;
    transition: transform var(--sc-transition);
}

.sc-navbar__cta--dropdown:hover .sc-navbar__cta-btn svg {
    transform: rotate(180deg);
}

/* Dropdown del CTA — activado por hover CSS puro */
.sc-cta-drop {
    position: absolute;
    top: 100%;          /* pegado al borde inferior del wrapper */
    right: 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px 10px; /* padding-top actúa de puente invisible */
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity var(--sc-transition), transform var(--sc-transition), visibility var(--sc-transition);
    z-index: 500;
    pointer-events: none;
}

/* El panel visual va en ::before para no cortar el área de hover */
.sc-cta-drop::before {
    content: '';
    position: absolute;
    top: 10px;           /* coincide con el padding-top */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 50, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.sc-navbar__cta--dropdown:hover .sc-cta-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Items del dropdown */
.sc-cta-drop__item {
    display: block;
    padding: 13px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-family: var(--sc-font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: filter var(--sc-transition), transform var(--sc-transition);
}

.sc-cta-drop__item:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.sc-cta-drop__item--azul {
    background: var(--sc-blue-light);
    color: var(--sc-white);
}

.sc-cta-drop__item--rosa {
    background: var(--sc-pink);
    color: var(--sc-white);
}

.sc-cta-drop__item--rosa:hover {
    background: var(--sc-cta-bg);
    color: var(--sc-white);
}

/* Hamburguesa (mobile) */
.sc-navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.sc-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sc-navbar-text);
    border-radius: 2px;
    transition: all var(--sc-transition);
}

/* Responsive — Header */
@media (max-width: 1024px) {
    .sc-navbar__menu > li > a {
        padding: 16px 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .sc-navbar {
        padding: 0 16px 10px;
        position: relative; /* necesario para anclar .sc-mobile-panel */
    }

    .sc-navbar__inner {
        flex-wrap: nowrap;
        padding: 8px 12px;
    }

    .sc-navbar__logo {
        padding: 4px 0;
    }

    .sc-navbar__logo img,
    .sc-navbar__logo .custom-logo {
        height: 36px;
    }

    .sc-navbar__toggle {
        display: flex;
        margin-left: auto;
    }

    /* Nav y CTA quedan ocultos: su contenido mobile está en .sc-mobile-panel */
    .sc-navbar__nav,
    .sc-navbar__cta {
        display: none !important;
    }

    /* Mostrar panel mobile cuando el menú está abierto */
    .sc-navbar.is-open .sc-mobile-panel {
        display: block;
    }

    /* Topbar: ocultar elementos solo de desktop */
    .sc-desktop-only {
        display: none !important;
    }

    /* Animación hamburguesa → X */
    .sc-navbar.is-open .sc-navbar__toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .sc-navbar.is-open .sc-navbar__toggle span:nth-child(2) {
        opacity: 0;
    }

    .sc-navbar.is-open .sc-navbar__toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* ==== FOOTER ==== */
.sc-footer {
    background: #261B33;
    color: var(--sc-white);
    font-family: var(--sc-font-body);
    width: 100%;
}

.sc-footer__inner {
    max-width: var(--sc-max-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Sección principal (Logo + Info) */
.sc-footer__main {
    padding: 60px 0 50px;
}

.sc-footer__main .sc-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Brand */
.sc-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.sc-footer__logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sc-footer__logo-img,
.sc-footer__logo .custom-logo {
    height: 70px;
    max-height: none;
    max-width: none;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.sc-footer__tagline {
    font-family: var(--sc-font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--sc-white);
}

.sc-footer__site-name {
    color: var(--sc-white);
    text-decoration: none;
    font-family: var(--sc-font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Botón Contáctanos */
.sc-footer__contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0F9CA0;
    color: var(--sc-white);
    text-decoration: none;
    font-family: var(--sc-font-body);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.sc-footer__contact-btn:hover {
    background: #F7C904;
    color: white;
    transform: translateY(-2px);
}

/* Info (Ubicación + Redes) */
.sc-footer__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
}

.sc-footer__location-title {
    text-align: left;
    font-family: var(--sc-font-body);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: var(--sc-white);
}

.sc-footer__location-venue,
.sc-footer__location-address {
    font-family: var(--sc-font-body);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
    margin: 0;
    color: #0F9CA0;
    letter-spacing: 0.3px;
}

.sc-footer__location-venue {
    margin-bottom: 4px;
}

/* Redes sociales */
.sc-footer__social {
    display: flex;
    gap: 12px;
}

.sc-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F7C904;
    color: #261B33;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.sc-footer__social-link:hover {
    background: #0F9CA0;
    transform: scale(1.1);
}

.sc-footer__social-link img,
.sc-footer__social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Partners */
.sc-footer__partners {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 0;
}

.sc-footer__partner-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.sc-footer__partner-label {
    font-family: var(--sc-font-body);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 100;
    color: white;
    letter-spacing: 0.3px;
}

.sc-footer__partner-logos {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sc-footer__partner-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.sc-footer__partner-logo {
    height: 30px;
    width: auto;
    max-width: none;
    max-height: none;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.sc-footer__partner-link:hover .sc-footer__partner-logo {
    opacity: 1;
}

/* Barra legal */
.sc-footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.sc-footer__legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sc-footer__legal-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.sc-footer__legal-menu li {
    margin: 0;
    padding: 0;
}

.sc-footer__legal-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--sc-font-body);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.sc-footer__legal-menu a:hover {
    color: var(--sc-white);
}

.sc-footer__copyright {
    font-family: var(--sc-font-body);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
    text-align: right;
}

/* Responsive — Footer */
@media (max-width: 1200px) {
    .sc-footer__partner-logos {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .sc-footer__inner {
        padding: 0 20px;
    }

    .sc-footer__main {
        padding: 40px 50px 36px;
    }

    .sc-footer__main .sc-footer__inner {
        flex-direction: column;
        gap: 36px;
    }

    .sc-footer__brand {
        gap: 36px;
    }

    .sc-footer__logo-img,
    .sc-footer__logo .custom-logo {
        height: 60px;
        max-width: 100%;
    }

    .sc-footer__contact-btn {
        font-size: 14px;
    }

    .sc-footer__info {
        align-items: flex-start;
        text-align: left;
    }

    .sc-footer__location-title {
        font-size: 18px;
    }

    .sc-footer__location-venue,
    .sc-footer__location-address {
        font-size: 14px;
    }

    .sc-footer__partners {
        padding: 36px 30px;
    }

    .sc-footer__partner-logos {
        gap: 30px;
    }

    .sc-footer__partner-logo {
        height: 30px;
    }

    .sc-footer__legal {
        padding: 20px 0;
    }

    .sc-footer__legal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sc-footer__legal-menu {
        flex-wrap: wrap;
        gap: 16px;
    }

    .sc-footer__copyright {
        text-align: left;
    }
}



/* ==================================================
   02. HOME
   ==================================================
*/

.servicios-exclusivos-wh {
    font-family: 'FranklinCustom';
    font-size: 30px;
    color: white;
    font-weight: bold;
}

.servicios-exclusivos-bl {
    font-family: 'FranklinCustom';
    font-size: 30px;
    color: black;
    font-weight: bold;
}


/* ==================================================
   03. EXPOSITORES
   ==================================================
*/

/* ==== SHOWROOM ==== */

/* Por qué participar */
.sc-benefit-block__number {
    display: inline-block;
    margin-bottom: 12px;
    color: #F7C904;
    font-size: 3rem;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.sc-benefit-block__text {
    margin: 0;
    color: #010F23;
    font-size: 1rem;
    line-height: 1.18;
    font-weight: 600;
}

.sc-benefit-block__text strong {
    font-weight: 800;
}


/* ==== CLUB SC+ ==== */
.sc-stat-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    width: min(100%, 1160px);
    margin: 0 auto;
    padding: 12px 0;
}

.sc-stat-card {
    min-height: 184px;
    padding: 22px 16px 18px;
    border-radius: 14px;
    box-shadow: 10px 10px 6px #00000029;
    opacity: 1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sc-stat-card--dark {
    background: linear-gradient(90deg, #010f23 0%, #0F9CA0 100%);
}

.sc-stat-card--blue {
    background: linear-gradient(90deg, #0F9CA0 0%, #0F9CA0 100%);
}

.sc-stat-card--blend {
    background: linear-gradient(90deg, #0F9CA0 0%, #F7C904 100%);
}

.sc-stat-card--pink {
    background: linear-gradient(90deg, #F7C904 0%, #F7C904 100%);
}

.sc-stat-card__icon {
    display: block;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    object-fit: contain;
}

.sc-stat-card__title {
    margin: 0;
    font-family: "Aptos", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 11ch;
}

/* Responsive — Club SC+ */
@media (max-width: 1024px) {
    .sc-stat-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sc-stat-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sc-stat-card {
        min-height: 168px;
    }
}


/* ==== MODELOS DE PARTICIPACIÓN ==== */
.sc-stand-feature {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.06fr);
    align-items: stretch;
    width: min(100%, 1360px);
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    background: #F8F8F8;
    box-shadow: 0 10px 28px rgba(6, 22, 43, 0.14);
}

.sc-stand-feature__media {
    min-height: 620px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #FAFAFA;
}

.sc-stand-feature__media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.sc-stand-feature__content {
    background: #010F23;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.sc-stand-feature__head {
    padding: 30px 42px 26px;
    background: #0F9CA0;
}

.sc-stand-feature__head h2 {
    margin: 0 0 8px;
    font-family: "Aptos", "Segoe UI", sans-serif;
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
}

.sc-stand-feature__head p {
    margin: 0;
    font-family: "Aptos", "Segoe UI", sans-serif;
    font-size: 1.22rem;
    line-height: 1.2;
    font-weight: 700;
}

.sc-stand-feature__body {
    padding: 34px 42px 34px;
}

.sc-stand-feature__list {
    margin: 0;
    padding-left: 22px;
    font-family: "Aptos", "Segoe UI", sans-serif;
    font-size: 1.18rem;
    line-height: 1.6;
    font-weight: 500;
}

.sc-stand-feature__list li + li {
    margin-top: 4px;
}

.sc-stand-feature__note {
    margin: 28px 0 0;
    padding-top: 24px;
    border-top: 2px solid #0F9CA0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Aptos", "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
}

.sc-stand-feature__price {
    margin: 24px 0 0;
    padding-top: 22px;
    border-top: 2px solid #0F9CA0;
    text-align: right;
    font-family: "Aptos", "Segoe UI", sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
}

/* Responsive — Modelos de participación */
@media (max-width: 980px) {
    .sc-stand-feature {
        grid-template-columns: 1fr;
    }

    .sc-stand-feature__media {
        min-height: 420px;
    }

    .sc-stand-feature__media img {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .sc-stand-feature {
        border-radius: 24px;
    }

    .sc-stand-feature__media {
        min-height: 300px;
    }

    .sc-stand-feature__media img {
        min-height: 300px;
    }

    .sc-stand-feature__head,
    .sc-stand-feature__body {
        padding-left: 22px;
        padding-right: 22px;
    }

    .sc-stand-feature__head {
        padding-top: 22px;
        padding-bottom: 20px;
    }

    .sc-stand-feature__head h2 {
        font-size: 2.2rem;
    }

    .sc-stand-feature__head p {
        font-size: 1rem;
    }

    .sc-stand-feature__list {
        font-size: 1rem;
    }

    .sc-stand-feature__note {
        font-size: 0.92rem;
    }

    .sc-stand-feature__price {
        font-size: 1.45rem;
    }
}



/* ==================================================
   04. VISITAR
   ==================================================
*/

/* ==== CÓMO LLEGAR ==== */



/* ==================================================
   05. PROGRAMA
   ==================================================
*/



/* ==================================================
   06. COMUNICACIÓN
   ==================================================
*/

/* ==== MEDIA KIT ==== */



/* ==================================================
   07. SC365
   ==================================================
*/

/* ==== ACCEDER A SC365 ==== */



/* ==================================================
   08. QUIERO
   ==================================================
*/

/* ==== EXPONER ==== */



/* ==================================================
   09. OTROS
   ==================================================
*/



/* ==================================================
   10. BLOQUES GLOBALES
   ==================================================
*/

/* ==== NEWSLETTER ==== */
.sc-newsletter {
    margin: 80px 0;
}

.sc-newsletter__inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: clamp(430px, 43vw, 620px);
}

/* Fondo */
.sc-newsletter__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('/wp-content/uploads/2026/07/fondo-newsletter-sc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sc-newsletter__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(9deg, #010F23 0%, #0F9CA0 50%, #0F9CA0 100%); */
    opacity: 0.9;
}

/* Contenido */
.sc-newsletter__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: inherit;
    padding: 0;
}

.sc-newsletter__left {
    width: 56%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: inherit;
    overflow: visible;
}

.sc-newsletter__left img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 108%;
    max-width: none;
    height: auto;
    max-height: 112%;
    display: block;
    align-self: flex-end;
    object-fit: contain;
    object-position: left bottom;
}

/* Derecha */
.sc-newsletter__right {
    width: 44%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 90px) clamp(40px, 6vw, 90px) clamp(44px, 5vw, 76px) clamp(24px, 4vw, 56px);
}

.sc-newsletter__right h3 {
    font-size: 45px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 60px;
    font-family: 'Inter', sans-serif;
}

.sc-newsletter__right p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Form */
.sc-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-newsletter__form input[type="text"],
.sc-newsletter__form input[type="email"] {
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.sc-newsletter__check {
    font-size: 12px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.sc-newsletter__form button {
    margin-top: 10px;
    background: var(--sc-pink);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
}

.sc-newsletter__form button:hover {
    background: #F7C904;
}

/* Responsive — Newsletter */
@media (max-width: 768px) {
    .sc-newsletter {
        margin: 40px 0;
    }

    .sc-newsletter__inner {
        min-height: auto;
    }

    .sc-newsletter__content {
        flex-direction: column;
        padding: 24px 20px 0;
    }

    .sc-newsletter__left,
    .sc-newsletter__right {
        width: 100%;
    }

    .sc-newsletter__left img {
        max-height: 220px;
        object-fit: contain;
        display: none;
    }

    .sc-newsletter__right {
        padding: 0 0 32px;
        margin-top: 0;
    }

    .sc-newsletter__right h3 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 16px;
        text-align: center;
    }

    .sc-newsletter__right p {
        font-size: 16px;
        margin-bottom: 16px;
        text-align: center;
    }

    .sc-newsletter__form button {
        width: 100%;
    }
}

/* ==== SC STORIES ==== */
.sc-stories-section {
    padding: 48px 0;
}

.sc-stories-section__inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.sc-stories-section__title {
    margin: 0 0 42px;
    color: #010F23;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 3vw, 4rem);
    line-height: 1;
    font-weight: 700;
}

.sc-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.sc-story-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(17, 27, 54, 0.08);
    overflow: hidden;
}

.sc-story-card__media {
    display: block;
    position: relative;
    padding: 18px 18px 0;
}

.sc-story-card__media--link {
    text-decoration: none;
}

.sc-story-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #F8F8F8;
    border-radius: 10px !important;
}

.sc-story-card__image--empty {
    background: linear-gradient(135deg, #F8F8F8 0%, #FAFAFA 100%);
}

.sc-story-card__video-pill {
    position: absolute;
    top: 32px;
    right: 32px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 22, 44, 0.82);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.sc-story-card__body {
    padding: 22px 18px 22px;
}

.sc-story-card__title {
    margin: 0 0 30px;
    color: #261B33;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 700;
}

.sc-story-card__title a {
    color: inherit;
    text-decoration: none;
}

.sc-story-card__title a:hover {
    text-decoration: none;
}

.sc-story-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sc-story-card__date {
    flex: 0 0 auto;
    color: #261B33;
    font-family: 'FranklinCustom';
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
}

/* Audio player */
.sc-story-audio {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.sc-story-audio audio {
    display: none;
}

.sc-story-audio__toggle {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
}

.sc-story-audio__icon {
    position: relative;
    display: block;
    width: 14px;
    height: 16px;
}

.sc-story-audio__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #0F9CA0;
    transition: all 0.2s ease;
}

.sc-story-audio.is-playing .sc-story-audio__icon::before {
    width: 4px;
    height: 16px;
    border: 0;
    background: #0F9CA0;
    box-shadow: 8px 0 0 #0F9CA0;
}

.sc-story-audio__progress {
    appearance: none;
    width: 100%;
    min-width: 70px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        #0F9CA0 0%,
        #0F9CA0 var(--progress, 0%),
        #F8F8F8 var(--progress, 0%),
        #F8F8F8 100%
    );
    outline: none;
    cursor: pointer;
}

.sc-story-audio__progress::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0F9CA0;
    border: 0;
}

.sc-story-audio__progress::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0F9CA0;
    border: 0;
}

.sc-story-audio__time {
    min-width: 42px;
    color: #261B33;
    font-family: "Aptos", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: right;
    flex: 0 0 auto;
}

/* Responsive — SC Stories */
@media (max-width: 1024px) {
    .sc-stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .sc-stories-section {
        padding: 32px 0;
    }

    .sc-stories-section__inner {
        width: min(100%, calc(100% - 20px));
    }

    .sc-stories-section__title {
        margin-bottom: 26px;
    }

    .sc-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-story-card {
        border-radius: 18px;
    }

    .sc-story-card__media {
        padding: 14px 14px 0;
    }

    .sc-story-card__body {
        padding: 18px 14px 18px;
    }

    .sc-story-card__title {
        margin-bottom: 22px;
        font-size: 1.35rem;
    }

    .sc-story-card__footer {
        flex-wrap: wrap;
    }

    .sc-story-card__date {
        width: 100%;
        text-align: right;
    }
}


/* ==== FAQS ==== */
.sc-faqs {
    --faq-bg: #FAFAFA;
    --faq-text: #261B33;
    --faq-muted: #261B33;
    --faq-radius: 20px;
    --faq-gap: 26px;
    --faq-pad-y: 28px;
    --faq-pad-x: 36px;
    --faq-icon-size: 26px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.sc-faq {
    background: var(--faq-bg);
    border-radius: var(--faq-radius);
    margin: 0 0 var(--faq-gap);
    overflow: hidden;
}

.sc-faq:last-child {
    margin-bottom: 0;
}

.sc-faq__question {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: var(--faq-pad-y) calc(var(--faq-pad-x) + 34px) var(--faq-pad-y) var(--faq-pad-x);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--faq-text);
    font-family: 'Inter', sans-serif;
}

.sc-faq__question::-webkit-details-marker {
    display: none;
}

.sc-faq__question::before,
.sc-faq__question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: var(--faq-pad-x);
    width: var(--faq-icon-size);
    height: 3px;
    border-radius: 999px;
    background: var(--faq-text);
    transform: translateY(-50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sc-faq__question::after {
    transform: translateY(-50%) rotate(90deg);
}

.sc-faq[open] .sc-faq__question::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}

.sc-faq__answer {
    padding: 0 var(--faq-pad-x) 30px;
}

.sc-faq__answer p {
    margin: 0;
    max-width: 74ch;
    color: #261B33;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Responsive — FAQs */
@media (max-width: 1024px) {
    .sc-faq__question {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .sc-faqs {
        --faq-gap: 18px;
        --faq-radius: 16px;
        --faq-pad-y: 20px;
        --faq-pad-x: 22px;
        --faq-icon-size: 20px;
    }

    .sc-faq__question {
        font-size: 18px;
        line-height: 1.35;
        padding-right: calc(var(--faq-pad-x) + 28px);
    }

    .sc-faq__answer {
        padding-bottom: 22px;
    }

    .sc-faq__answer p {
        font-size: 14px;
    }
}


/* ==================================================
   11. SPAZIO RESTAURACIÓN NEWS
   ==================================================
*/

.spazio-h-white {
    font-family: 'FranklinCustom';
    font-size: 52px;
    color: white;
}

.spazio-h-dark {
    font-family: 'FranklinCustom';
    font-size: 52px;
    color: #010F23;
}

.spazio-tit-white {
    font-family: 'FranklinCustom';
    font-size: 42px;
    color: white;
    text-align: center;
}

.spazio-tit-dark {
    font-family: 'FranklinCustom';
    font-size: 42px;
    color: #010F23;
    text-align: center;
}

.p-white-spazio {
    font-family: 'FranklinCustom';
    font-size: 16px;
    color: white;
}

.p-dark-spazio {
    font-family: 'FranklinCustom';
    font-size: 16px;
    color: #010F23;
}

a.btn-spazio {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'FranklinCustom';
    font-weight: bold;
    background-color: #F7C904;
    color: white;
    font-size: 16px;
    padding: 10px 50px 10px 50px;
    border-radius: 10px;
    width: fit-content;
}

a.btn-spazio:hover {
    font-family: 'FranklinCustom';
    font-weight: bold;
    background-color: white;
    color: #F7C904;
}

.spazio-list li::marker {
  color: #F7C904;
}
.spazio-list {
    font-size: 18px;
    color: #010F23;
}

/* Responsive — Spazio */
@media (max-width: 768px) {
    .spazio-h-white,
    .spazio-h-dark {
        font-size: 26px;
    }

    .spazio-tit-white,
    .spazio-tit-dark {
        font-size: 20px;
    }

    a.btn-spazio {
        padding: 10px 28px;
        font-size: 12px;
    }

    .spazio-list {
        font-size: 12px;
    }
}


/* ============================================================
   HEADER — PANEL MOBILE
   ============================================================ */

/* Oculto por defecto; se muestra con .sc-navbar.is-open en mobile */
.sc-mobile-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sc-navbar-bg-solid);
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    padding: 1.25rem 1.5rem 2rem;
    overflow-y: auto;
    max-height: calc(100dvh - 100px);
}

/* Menú principal en el panel */
.sc-mobile-panel__menu {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.sc-mobile-panel__menu li {
    margin: 0;
    padding: 0;
}

.sc-mobile-panel__menu > li > a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--sc-white);
    font-family: var(--sc-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
}

/* Items con submenú: flex para alinear enlace + flecha */
.sc-mobile-panel__menu .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-mobile-panel__menu .menu-item-has-children > a {
    flex: 1;
    border-bottom: none;
}

/* Botón flecha toggle del submenú */
.sc-mobile-submenu-toggle {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.875rem 0.25rem 0.875rem 0.875rem;
    display: flex;
    align-items: center;
    line-height: 1;
}

.sc-mobile-submenu-toggle svg {
    transition: transform 0.25s ease;
}

.sc-mobile-panel__menu .menu-item-has-children.is-open > .sc-mobile-submenu-toggle svg {
    transform: rotate(180deg);
}

/* Submenú oculto por defecto; visible con .is-open en el padre */
.sc-mobile-panel__menu .sub-menu {
    display: none;
    width: 100%;
    list-style: none;
    padding: 0.25rem 0 0.75rem 1rem;
    margin: 0;
}

.sc-mobile-panel__menu .menu-item-has-children.is-open > .sub-menu {
    display: block;
}

.sc-mobile-panel__menu .sub-menu a {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--sc-font-body);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
}

/* Botón QUIERO en el panel mobile */
.sc-mobile-panel__cta-wrap {
    margin-bottom: 1.5rem;
}

.sc-mobile-panel__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--sc-cta-bg);
    color: var(--sc-cta-text);
    border: none;
    cursor: pointer;
    font-family: var(--sc-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 8px;
    transition: background var(--sc-transition);
}

.sc-mobile-panel__cta-btn:hover {
    background: var(--sc-cta-bg-hover);
}

.sc-mobile-panel__cta-btn svg {
    opacity: 0.85;
    flex-shrink: 0;
    transition: transform var(--sc-transition);
}

.sc-mobile-panel__cta-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Items ocultos por defecto, visibles con .is-open */
.sc-mobile-panel__cta {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.sc-mobile-panel__cta.is-open {
    display: flex;
}

/* Idioma y contacto */
.sc-mobile-panel__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sc-mobile-panel__lang {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.75rem;
}

.sc-mobile-panel__lang li a {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--sc-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.sc-mobile-panel__lang .current-lang a,
.sc-mobile-panel__lang .current-menu-item a {
    color: var(--sc-white);
}

.sc-mobile-panel__contact {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--sc-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Bloquear scroll del body cuando el menú está abierto */
body.sc-menu-open {
    overflow: hidden;
}





/**** CONTACTO *****/
.h2-equipo {
    font-size: 22px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;;
    color: #261B33;
    font-weight: 400;
}

.p-equipo {
    font-size: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;;
    color: #261B33;
    font-weight: 200;
}
