/*
Theme Name: FIS Theme
Theme URI: https://www.fis.com/
Author: Antonio
Author URI: https://www.fis.com/
Description: Child theme de GeneratePress para FIS (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: fis
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. FIS365 ....................... 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
   ==================================================
*/

/* ==== VARIABLES ==== */
:root {
    --fis-blue-light: #28BBE6;
    --fis-pink: #E73875;
    --fis-blue-dark: #010F23;
    --fis-bg-dark: #010F23;
    --fis-bg-light: #F8F8F8;
    --fis-white: #FFFFFF;
    --fis-text-dark: #010F23;

    --fis-topbar-bg: var(--fis-bg-dark);
    --fis-topbar-text: var(--fis-white);
    --fis-topbar-text-muted: rgba(255, 255, 255, 0.6);
    --fis-navbar-bg: rgba(255, 255, 255, 0.12);
    --fis-navbar-bg-solid: #071a32;
    --fis-navbar-text: var(--fis-text-dark);
    --fis-cta-bg: var(--fis-blue-light);
    --fis-cta-bg-hover: #1a9bc4;
    --fis-cta-text: var(--fis-white);

    --fis-font-body: 'FranklinCustom', -apple-system, BlinkMacSystemFont, sans-serif;
    --fis-font-display: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;

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

.span-partners {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'FranklinCustom';
}


/* ==== FONTS ==== */
@font-face {
    font-family: 'FranklinCustom';
    src: url('/wp-content/themes/wanaframe/fonts/franklin-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FranklinCustom';
    src: url('/wp-content/themes/wanaframe/fonts/franklin-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FranklinCustom';
    src: url('/wp-content/themes/wanaframe/fonts/franklin-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


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

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

.h2-dark {
    color: #010F23;
    font-size: 52px !important;
    font-family: 'Source Serif 4';
    font-weight: bold;
}

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

.h2-white {
    color: white;
    font-size: 58px !important;
    font-family: 'Source Serif 4';
    font-weight: bold;
    font-style: italic;
}

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

.p-white-hero {
    font-family: 'FranklinCustom';
    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: 'FranklinCustom';
    font-size: 18px;
    color: white;
    text-align: left;
    font-weight: 300;
}

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

.p-dark {
    font-family: 'FranklinCustom';
    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: 'FranklinCustom';
    font-weight: bold;
    background-color: #E73875;
    color: white;
    font-size: 16px;
    padding: 10px 50px 10px 50px;
    border-radius: 10px;
    width: fit-content;
}

a.btn-primary:hover {
    font-family: 'FranklinCustom';
    font-weight: bold;
    background-color: #28BBE6;
    color: white;
}

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

a.btn-secondary:hover {
    font-family: 'FranklinCustom';
    font-weight: bold;
    background-color: #E73875;
    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: #e83275;
    color: #ffffff;
    font-family: 'FranklinCustom';
    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: #28BBE6;
    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: #E73875;
    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: 'FranklinCustom';
    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: 'FranklinCustom' !important;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

.fis-navbar__inner {
    max-width: var(--fis-max-width);
    margin: 0 auto;
    background: #ffffffad;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--fis-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(--fis-transition), background var(--fis-transition);
}

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

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

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

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

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

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

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

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

/* Flecha dropdown */
.fis-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(--fis-transition);
}

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

/* Submenú (dropdown) */
.fis-navbar__menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--fis-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(--fis-transition);
    z-index: 100;
}

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

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

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

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

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

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

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

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

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

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

/* Dropdown del CTA — activado por hover CSS puro */
.fis-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(--fis-transition), transform var(--fis-transition), visibility var(--fis-transition);
    z-index: 500;
    pointer-events: none;
}

/* El panel visual va en ::before para no cortar el área de hover */
.fis-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ==== FOOTER ==== */
.fis-footer {
    background: var(--fis-bg-dark);
    color: var(--fis-white);
    font-family: var(--fis-font-body);
    width: 100%;
}

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

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

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

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

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

.fis-footer__logo-img,
.fis-footer__logo .custom-logo {
    height: 70px;
    width: auto;
}

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

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

/* Botón Contáctanos */
.fis-footer__contact-btn {
    display: inline-block;
    background: var(--fis-pink);
    color: var(--fis-white);
    text-decoration: none;
    font-family: var(--fis-font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.fis-footer__contact-btn:hover {
    background: #28BBE6;
    color: white;
    transform: translateY(-2px);
}

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

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

.fis-footer__location-address {
    font-family: var(--fis-font-body);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #28BBE6;
    letter-spacing: 0.3px;
}

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

.fis-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e73875;
    color: var(--fis-bg-dark);
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.fis-footer__social-link:hover {
    background: #28BBE6;
    transform: scale(1.1);
}

.fis-footer__social-link svg {
    width: 20px;
    height: 20px;
}

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


@media (max-width: 768px) {
    .fis-footer__partners {
        padding: 36px 30px;
    }
}

.fis-footer__partners-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.fis-footer__partner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fis-footer__partner--sponsor {
    margin-left: auto;
}

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

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

.fis-footer__partner a:hover .fis-footer__partner-logo {
    opacity: 1;
}

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

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

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

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

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

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

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

/* Responsive — Footer */
@media (max-width: 768px) {
    .fis-footer__inner {
        padding: 0 20px;
    }

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

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

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

    .fis-footer__partners-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .fis-footer__partner--sponsor {
        margin-left: 0;
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

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

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



/* ==================================================
   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 */
.fis-benefit-block__number {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff4b8a;
    font-size: 3rem;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
}

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

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


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

.fis-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;
}

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

.fis-stat-card--blue {
    background: linear-gradient(90deg, #1689cb 0%, #25a8df 100%);
}

.fis-stat-card--blend {
    background: linear-gradient(90deg, #1ca3d8 0%, #8b74be 100%);
}

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

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

.fis-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 FIS+ */
@media (max-width: 1024px) {
    .fis-stat-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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


/* ==== MODELOS DE PARTICIPACIÓN ==== */
.fis-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: #e9edf2;
    box-shadow: 0 10px 28px rgba(6, 22, 43, 0.14);
}

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

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

.fis-stand-feature__content {
    background: #031328;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.fis-stand-feature__head {
    padding: 30px 42px 26px;
    background: #1689cb;
}

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

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

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

.fis-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;
}

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

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

.fis-stand-feature__price {
    margin: 24px 0 0;
    padding-top: 22px;
    border-top: 2px solid #1689cb;
    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) {
    .fis-stand-feature {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

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

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

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

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



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

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



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



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

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



/* ==================================================
   07. FIS365
   ==================================================
*/

/* ==== ACCEDER A FIS365 ==== */



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

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



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



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

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

.fis-newsletter__inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

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

/* Contenido */
.fis-newsletter__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    padding: 60px 60px 0px 60px;
}

.fis-newsletter__left {
    width: 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.fis-newsletter__left img {
    max-width: 100%;
    display: block;
    align-self: flex-end;
}

/* Derecha */
.fis-newsletter__right {
    width: 50%;
    color: #fff;
    padding-left: 40px;
    padding-bottom: 60px;
}

.fis-newsletter__right h3 {
    font-size: 50px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 60px;
    font-family: 'Source Serif 4';
}

.fis-newsletter__right p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'FranklinCustom';
    font-weight: 300;
}

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

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

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

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

.fis-newsletter__form button:hover {
    background: #c92e63;
}

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

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

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

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

    .fis-newsletter__right {
        padding-left: 0;
        padding-bottom: 32px;
        margin-top: 0;
    }

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

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

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


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

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

.fis-stories-section__title {
    margin: 0 0 42px;
    color: #08162c;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 3vw, 4rem);
    line-height: 1;
    font-weight: 700;
}

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

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

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

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

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

.fis-story-card__image--empty {
    background: linear-gradient(135deg, #dfe7f4 0%, #edf2f8 100%);
}

.fis-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;
}

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

.fis-story-card__title {
    margin: 0 0 30px;
    color: #1a2234;
    font-family: 'FranklinCustom';
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 700;
}

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

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

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

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

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

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

.fis-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;
}

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

.fis-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 #7466b0;
    transition: all 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ==== FAQS ==== */
.fis-faqs {
    --faq-bg: #f5f5f6;
    --faq-text: #261B33;
    --faq-muted: #5a5365;
    --faq-radius: 20px;
    --faq-gap: 26px;
    --faq-pad-y: 28px;
    --faq-pad-x: 36px;
    --faq-icon-size: 26px;
    margin: 0 auto;
    font-family: "Aptos", "Segoe UI", sans-serif;
}

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

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

.fis-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: 'FranklinCustom';
}

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

.fis-faq__question::before,
.fis-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;
}

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

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

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

.fis-faq__answer p {
    margin: 0;
    max-width: 74ch;
    color: #505050;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'FranklinCustom';
    font-weight: 300;
}

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

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

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

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

    .fis-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: #000B1C;
}

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

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

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

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

a.btn-spazio {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'FranklinCustom';
    font-weight: bold;
    background-color: #DF8033;
    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: #DF8033;
}

.spazio-list li::marker {
  color: #EFBA3A;
}
.spazio-list {
    font-size: 18px;
    color: #000B1C;
}

/* 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 .fis-navbar.is-open en mobile */
.fis-mobile-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--fis-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 */
.fis-mobile-panel__menu {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

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

.fis-mobile-panel__menu > li > a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--fis-white);
    font-family: var(--fis-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 */
.fis-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);
}

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

/* Botón flecha toggle del submenú */
.fis-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;
}

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

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

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

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

.fis-mobile-panel__menu .sub-menu a {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--fis-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 */
.fis-mobile-panel__cta-wrap {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

.fis-mobile-panel__contact {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--fis-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.fis-menu-open {
    overflow: hidden;
}





/**** CONTACTO *****/
.h2-equipo {
    font-size: 22px;
    font-family: 'FranklinCustom';
    color: #24135F;
    font-weight: 400;
}

.p-equipo {
    font-size: 16px;
    font-family: 'FranklinCustom';
    color: #24135F;
    font-weight: 200;
}