/* ==========================================================================
   Tipografías
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Pattaya&display=swap');

@font-face {
    font-family: 'Panton';
    src: url('../fonts/Panton-Regular.woff2') format('woff2'),
        url('../fonts/Panton-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panton';
    src: url('../fonts/Panton-SemiBold.woff2') format('woff2'),
        url('../fonts/Panton-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panton';
    src: url('../fonts/Panton-Bold.woff2') format('woff2'),
        url('../fonts/Panton-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panton Trial';
    src: url('../fonts/panton/Panton-Trial-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panton Trial';
    src: url('../fonts/panton/Panton-Trial-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Panton Trial';
    src: url('../fonts/panton/Panton-Trial-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --cys-font-primary: 'Panton', Arial, sans-serif;
    --cys-font-trial: 'Panton Trial', var(--cys-font-primary);
    --cys-text: #222;
    --cys-bg: #fff;
    --cys-accent: #7a4b8e;
    --cys-header-bg: #CA6C20;
    --cys-orange: #EA7105;
    --cys-teal: #32B0B1;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--cys-font-primary);
    color: var(--cys-text);
    background: var(--cys-bg);
}

body.home {
    background-image: url('../images/bg-cys.png');
    background-repeat: repeat;
    background-size: contain;
}

body.category {
    background-image: url('../images/bg-cys.png');
    background-repeat: repeat;
    background-size: contain;
}

.site-header {
    background-color: var(--cys-header-bg);
    height: 122px;
    display: flex;
    align-items: center;
    z-index: 1040;
    transition: background-color 0.3s ease;
}

body.archive .site-header,
body.single .site-header,
body.search-results .site-header,
body.search-no-results .site-header {
    background-color: #00000075 !important;
    border-radius: 0 0 40px 40px;
}

body.page main article .post-content h1:not([class]),
body.page main article .post-content h2:not([class]),
body.page main article .post-content h3:not([class]),
body.page main article .post-content h4:not([class]),
body.page main article .post-content h5:not([class]),
body.page main article .post-content h6:not([class]),
body.page .cys-page-title,
body.page .titulos {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cys-orange);
    padding-right: 160px;
    position: relative;
    width: fit-content;
    font-size: 40px;
}

body.page main article .post-content h1:not([class]):not(:has(img))::after,
body.page main article .post-content h2:not([class]):not(:has(img))::after,
body.page main article .post-content h3:not([class]):not(:has(img))::after,
body.page main article .post-content h4:not([class]):not(:has(img))::after,
body.page main article .post-content h5:not([class]):not(:has(img))::after,
body.page main article .post-content h6:not([class]):not(:has(img))::after,
body.page .cys-page-title::after,
body.page .titulos::after {
    content: ' ';
    display: block;
    width: 150px;
    height: 8px;
    background-image: url('../images/adorno-verde-horizontal.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


@media (max-width: 991px) {

    body.page main article .post-content h1:not([class]),
    body.page main article .post-content h2:not([class]),
    body.page main article .post-content h3:not([class]),
    body.page main article .post-content h4:not([class]),
    body.page main article .post-content h5:not([class]),
    body.page main article .post-content h6:not([class]),
    body.page .cys-page-title,
    body.page .titulos {
        font-size: 35px;
        padding-right: 0;
        position: relative;
        padding-bottom: 30px;
    }

    body.page main article .post-content h1:not([class]):not(:has(img))::after,
    body.page main article .post-content h2:not([class]):not(:has(img))::after,
    body.page main article .post-content h3:not([class]):not(:has(img))::after,
    body.page main article .post-content h4:not([class]):not(:has(img))::after,
    body.page main article .post-content h5:not([class]):not(:has(img))::after,
    body.page main article .post-content h6:not([class]):not(:has(img))::after,
    body.page .cys-page-title::after,
    body.page .titulos::after {
        width: 150px;
        bottom: 5px;
        top: auto;
        left: 0;
    }

    body.page main article .post-content h2.text-center::after {
        left: 50%;
        transform: translateX(-50%);
    }

}

.cys-highlight {
    background-color: rgba(234, 113, 5, 0.2);
    color: inherit;
    padding: 0 2px;
    border-radius: 4px;
}

.site-header .navbar {
    width: 100%;
}

.site-header .navbar {
    width: 100%;
}

.site-header .navbar-nav .nav-link {
    font-family: var(--cys-font-primary);
    color: #fff;
    font-weight: 600;
    padding-left: 1rem;
    padding-right: 1rem;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.8);
}

.site-header .navbar-nav>.nav-item {
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Soporte submenu simple Bootstrap */
.site-header .dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 260px;
    top: 50px;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item.active,
.site-header .dropdown-item:active {
    background-color: #E6F6F6;
    color: #007D85 !important;
}

.site-header .dropdown-item {
    padding: 0.5rem 1rem;
}

/* Override para la animación de dropdown:
   Queremos que no venga desde muy abajo. */
@keyframes customFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 1rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__customFadeInUp {
    animation-name: customFadeInUp;
}

.cys-header {
    background-color: var(--cys-header-bg);
}

body:not(.home):not(.page-template-template-full-width-php) .cys-header {
    margin-bottom: 30px;
}

body.single-receta .cys-header {
    background-color: #0C7C7D;
}

/* Buscador del header */
.header-search {
    min-width: 220px;
}

.cys-search-wrapper {
    display: flex;
    align-items: center;
    background-color: #F1EFEA;
    border-radius: 50px;
    padding: 6px 16px;
    height: 48px;
    transition: box-shadow 0.3s ease;
}

.cys-search-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 126, 129, 0.2);
}

.cys-search-input {
    border: none;
    background: transparent;
    color: #007D85;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    outline: none;
    font-family: var(--cys-font-primary);
}

.cys-search-input::placeholder {
    color: #007D85;
    opacity: 1;
}

.cys-search-button {
    background: transparent;
    border: none;
    color: #007D85;
    cursor: pointer;
    padding: 0 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.cys-search-button svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* ==========================================================================
   Hero Countdown Shortcode
   ========================================================================== */

.cys-hero-countdown {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-slash;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 50px;
    /* Separación del reloj con el piso */
}

/* El video de fondo */
.cys-hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.cys-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cys-countdown-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cys-countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cys-time-block {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    width: 70px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    /* para la línea central semicircular */
    display: flex;
    flex-direction: column;
}

/* Linea horizontal central simulando separador */
.cys-time-block::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ED6D05;
    z-index: 1;
}

.cys-time-value {
    color: #000;
    font-family: var(--cys-font-primary);
    font-size: 37px;
    font-weight: 700;
    line-height: 1;
    padding: 12px 0 8px;
    /* Espacio superior gordo */
    position: relative;
    z-index: 2;
}

.cys-time-label {
    display: block;
    background-color: #fff;
    color: #444;
    font-family: var(--cys-font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.cys-time-separator {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    /* Alinear colon visualmente */
}

.cys-countdown-text {
    color: #fff;
    font-family: var(--cys-font-primary);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .cys-countdown-widget {
        flex-direction: column;
        gap: 25px;
    }

    .cys-countdown-timer {
        gap: 4px;
    }

    .cys-time-block {
        width: 55px;
    }

    .cys-time-value {
        font-size: 26px;
        padding: 8px 0 6px;
    }

    .cys-time-label {
        font-size: 10px;
        padding: 4px 0;
    }

    .cys-time-separator {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cys-countdown-text {
        font-size: 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        width: 100vw;
        margin-left: calc(-50vw + 53%);
        margin-bottom: 0;
        padding: 20px 15px 25px;
        border-radius: 0;
        max-width: none;
    }

    .cys-hero-countdown {
        min-height: 400px;
        padding-bottom: 0;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    width: 100%;
    margin-top: 0;
    color: var(--cys-text);
}

/* Franja superior (Sponsors) */
.cys-footer-top-bar {
    background-color: #2F92CA;
    /* Color celeste base */
    background: linear-gradient(90deg, #3DC8D6 0%, #155F8A 50%, #2087C1 100%);
    padding: 14px 0;
    color: #fff;
    border-bottom: 5px solid #1C7EA8;
    /* Línea azul oscura abajo de la franja */
}

.cys-sponsors-left,
.cys-sponsors-right {
    gap: 15px;
}

.cys-sponsor-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 10px;
}

.cys-footer-top-logo {
    max-height: 18px;
    width: auto;
    object-fit: contain;
}

.cys-sponsor-name {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.cys-sponsor-x {
    color: #40DFEB;
    /* Celeste vibrante de la X de Clarin */
    font-style: italic;
    font-size: 26px;
}

.cys-logo-exponenciar {
    height: 35px;
    width: auto;
}

/* Área principal del footer */
.cys-footer-main {
    background-color: rgba(50, 176, 177, 0.1);
    padding-top: 40px;
    padding-bottom: 20px;
    position: relative;
    border-top-width: 8px;
    /* Borde adicional si fuera necesario */
}

.cys-footer-organiza-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.cys-logo-exponenciar-main {
    max-width: 220px;
    height: auto;
    margin-bottom: 15px;
}

.cys-footer-contact {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.cys-footer-email {
    color: #333;
    text-decoration: underline;
    font-weight: 700;
}

.cys-footer-email:hover {
    color: var(--cys-accent);
}

/* Logo central y hashtag */
.cys-footer-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cys-footer-main-logo {
    max-width: 200px;
    /* Círculo naranja central */
    height: auto;
    margin-top: -20px;
    /* Para que suba un poco en la grilla visualmente */
}

.cys-footer-hashtag {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 36px;
    color: #ED6D05;
    line-height: 1.1;
    margin: 15px 0 0 0;
    text-align: center;
}

.cys-text-gray {
    color: #9C9C9C;
    font-size: 26px;
    font-weight: 600;
}

/* Newsletter y Redes */
.cys-footer-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* Alinear a la derecha en col lg/md */
}

.cys-footer-newsletter {
    width: 100%;
    max-width: 380px;
}

.btn-newsletter {
    background-color: #155F8A;
    /* Azul oscuro */
    color: #fff;
    border-radius: 40px;
    padding: 14px 25px;
    font-family: var(--cys-font-primary);
    font-weight: 500;
    font-size: 18px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-newsletter svg {
    margin-left: 15px;
}

.btn-newsletter:hover {
    background-color: #0E486D;
    color: #fff;
}

.cys-footer-social {
    max-width: 380px;
    width: 100%;
    margin-top: 30px;
}

.cys-footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #32b0b1;
    /* Celeste cyan */
    transition: color 0.3s ease, transform 0.3s ease;
}

.cys-footer-social .social-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

.cys-footer-social .social-icon:hover {
    color: #155F8A;
    transform: translateY(-2px);
}

/* Créditos finales */
.cys-footer-credits {
    font-size: 12px;
    color: #555;
    padding-top: 10px;
}

.cys-footer-credits a {
    color: #555;
    text-decoration: none;
}

.cys-footer-credits a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .cys-footer-top-bar .cys-sponsors-left {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .cys-footer-top-bar .cys-sponsors-right {
        width: 100%;
        justify-content: center;
    }

    .cys-footer-col-info,
    .cys-footer-col-right {
        align-items: center;
        text-align: center;
    }

    .cys-footer-col-right {
        margin-top: 40px;
    }

    .cys-footer-social {
        justify-content: center !important;
    }
}

/* ==========================================================================
   Bloque: Notas Destacadas (2 columnas)
   ========================================================================== */

.cys-animate {
    visibility: hidden;
}

/* Evitar que las animaciones oculten los bloques al previsualizar en el editor de bloques de WP / ACF */
.acf-block-preview .cys-animate {
    visibility: visible !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.cys-notas-destacadas {
    background-color: transparent;
    padding-top: 6rem;
    padding-bottom: 1rem;
}

.black-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 76%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.relative-container {
    position: relative;
}

.cys-nota-card {
    /* border-radius: 40px; Eliminado */
    overflow: visible;
    /* Cambiado a visible por si las imagenes / confeti desbordan */
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background-color: transparent;
    /* Fondo transparente */
}

.cys-nota-img-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.cys-nota-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cys-nota-card.cys-nota-left {
    padding-top: 12px;
}

.cys-nota-card.cys-nota-left .black-gradient-overlay {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: end;
    padding-bottom: 15px;
}

.cys-nota-left .cys-nota-img-wrap {
    border-radius: 0 60px 0 60px;
}

.cys-nota-right .cys-nota-img {
    object-fit: contain;
    object-position: right;
}

.cys-nota-card:hover .cys-nota-img {
    transform: scale(1.05);
    /* Leve efecto hover */
}

.cys-nota-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-top: 12px;
}

.cys-nota-left .cys-nota-content {
    padding: 20px 40px 0 40px;
}

.cys-nota-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cys-nota-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
}

.cys-nota-btn-wrap {
    margin-top: auto;
    /* Empuja el botón hacia el fondo si las columnas tienen distinto alto de texto */
}

/* --- Variación Izquierda (Blanca) --- */
.cys-nota-left {
    background-color: transparent;
    /* Box shadow y border-radius eliminados */
}

.cys-nota-left .left-title {
    color: #fff;
    /* Azul oscuro corporativo */
}

.cys-btn-outline-orange {
    color: #ED6D05;
    background-color: #fff;
    border: 1px solid #ED6D05;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cys-btn-outline-orange:hover {
    background-color: #ED6D05;
    color: #fff;
}

/* --- Variación Derecha (Naranja) --- */
.cys-nota-right {
    background-color: transparent;
    background: transparent;
    /* Degradado naranja y border-radius eliminados */
    color: var(--cys-text);
    overflow: visible;
    /* Permitir que los svgs se escapen de la caja si es necesario */
    align-self: flex-start;
    height: auto;
}

.cys-nota-content.right-theme {
    background-image: url('../images/fondo-caja-naranja.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 60px 60px 0 60px;
    flex-grow: 0;
}

.cys-nota-right .right-title {
    color: #333;
    /* Gris Oscuro / Dark Gray */
    font-size: 32px;
    /* Alineado al title izquierdo */
}

.cys-nota-right .cys-nota-text {
    color: #000;
}


/* ==========================================================================
   Elementos Decorativos SVG ("Ondas")
   ========================================================================== */
.cys-decor-wave {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* Posiciones estimadas según el diseño enviado */
.cys-decor-wave.top-left {
    top: -78px;
    left: 40px;
}

.cys-decor-wave.top-center {
    top: -78px;
    left: 82%;
    transform: translateX(-50%);
}

.cys-decor-wave.mid-left {
    top: 30%;
    left: 59%;
    transform: translateY(-50%);
}

.cys-decor-wave.top-right {
    top: 19%;
    right: -54px;
}

.cys-decor-wave img {
    width: 100px;
}

.cys-decor-wave.top-center img {
    width: 180px;
}

.cys-nota-content.right-theme .cys-nota-img-wrap {
    width: 315px;
    height: 325px;
    bottom: -150px;
    right: 8px;
}

/* Responsivo tablet / móvil para Notas Destacadas */
@media (max-width: 991px) {
    .cys-notas-destacadas {
        padding-top: 2rem;
    }

    .cys-nota-img-wrap {
        height: 250px;
    }

    .cys-nota-content.right-theme .cys-nota-img-wrap {
        width: 100%;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .cys-nota-content {
        padding: 25px 20px;
    }

    .cys-nota-title {
        font-size: 26px;
    }

    /* Volver bordes redondos regulares en móviles para que no quede raro apilado */
    .cys-nota-left,
    .cys-nota-right {
        border-radius: 20px;
    }
}

/* Espacio extra entre las notas solo en desktop */
@media (min-width: 992px) {
    .cys-nota-left {
        margin-right: 20px;
    }

    .cys-nota-right {
        margin-left: 20px;
    }
}

/* ==========================================================================
   Bloque: CTA Banner Completo
   ========================================================================== */

.cys-cta-banner-full {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cys-cta-top-image-wrap {
    position: relative;
    z-index: 3;
    margin-bottom: -80px;
    /* Sobrepone la imagen encima de la caja */
    display: inline-block;
}

/* ==========================================================================
   Masterclass Section
   ========================================================================== */

.cys-masterclass-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 60px 0 60px 0;
    margin: 40px 0;
}

.cys-masterclass-logo {
    max-width: 70px;
    height: auto;
}

.cys-convert-to-white-color {
    filter: brightness(0) invert(1);
}

.cys-masterclass-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 40px;
    color: #fff;
}

.cys-masterclass-wave {
    height: 8px;
    width: auto;
}

/* Carousel Cards */
.cys-masterclass-card {
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    color: #222;
    transition: transform 0.3s ease;
    gap: 20px;
}

.cys-masterclass-card:hover .cys-masterclass-card-img {
    transform: scale(1.1);
}

.cys-masterclass-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 0 60px 0 60px;
}

.cys-masterclass-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cys-card-pill {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.cys-card-pill.date {
    background-color: #D1E1E6;
    color: #000;
}

.cys-card-pill.auditorium {
    background-color: #EFDDCE;
    color: #000;
}

.cys-masterclass-card-body {
    background-color: #fff;
    border-radius: 60px 0 60px 0;
}

.cys-masterclass-card-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
}

.cys-masterclass-card-speaker {
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

/* Splide Customization */
.cys-masterclass-carousel .splide__arrow {
    background: transparent;
    opacity: 1;
}

.cys-masterclass-carousel .splide__arrow svg {
    fill: #000;
    width: 40px;
    height: 40px;
}

.cys-masterclass-carousel .splide__arrow--prev {
    left: -25px;
}

.splide__arrow--next {
    right: -25px;
}

/* Mobile adjustments */
@media (max-width: 1200px) {
    .cys-masterclass-carousel .splide__arrow--prev {
        left: -30px;
    }

    .cys-masterclass-carousel .splide__arrow--next {
        right: -30px;
    }
}

@media (max-width: 991px) {
    .cys-masterclass-title {
        font-size: 40px;
    }

    .cys-masterclass-section {
        border-radius: 30px;
    }

    .cys-masterclass-carousel .splide__arrow {
        display: none;
    }
}

/* Button */
.cys-btn-masterclass {
    background-color: #fff;
    color: #333;
    font-family: var(--cys-font-primary);
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cys-btn-masterclass:hover {
    background-color: #f8f8f8;
    transform: scale(1.05);
    color: #E8701B;
}

/* ==========================================================================
   Proveedores Sugeridos Section
   ========================================================================== */

.cys-suppliers-section {
    padding-bottom: 60px;
}

.cys-supplier-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.cys-supplier-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligned with title */
}

.cys-supplier-logo {
    max-width: 100%;
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 0 40px 0 40px;
}

.cys-supplier-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 24px;
    color: #F17A27;
    /* Orange */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cys-supplier-content {
    background-color: rgba(50, 176, 177, 0.25);
    /* Color #32B0B1 at 25% */
    border-radius: 40px 0 40px 0;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    flex-grow: 1;
}

.cys-supplier-content p {
    margin-bottom: 1rem;
}

.cys-supplier-content strong {
    font-weight: 700;
}

.cys-supplier-content a {
    color: #333;
    text-decoration: underline;
}

.cys-supplier-content a:hover {
    color: #F17A27;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cys-supplier-logo-wrap {
        justify-content: center;
    }

    .cys-supplier-title {
        text-align: center;
    }
}

/* ==========================================================================
   La Boutique Section
   ========================================================================== */

.cys-boutique-section {
    padding-bottom: 60px;
}

.cys-boutique-header {
    text-align: left;
}

.cys-boutique-main-title {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #EA7105;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.cys-boutique-wave {
    width: auto;
    max-width: 150px;
}

.cys-boutique-section-desc {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}

.cys-boutique-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.cys-boutique-img-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0 40px 0 40px;
    overflow: hidden;
}

.cys-boutique-img {
    max-width: 100%;
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cys-boutique-card:hover .cys-boutique-img {
    transform: scale(1.05);
}

.cys-boutique-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 24px;
    color: #F17A27;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cys-boutique-content {
    background-color: rgba(50, 176, 177, 0.25);
    border-radius: 40px 0 40px 0;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    flex-grow: 1;
}

.cys-boutique-content p {
    margin-bottom: 0;
}

.cys-boutique-content strong {
    font-weight: 700;
    font-size: 24px;
}

.cys-boutique-content a {
    color: #333;
    text-decoration: underline;
}

.cys-boutique-content a:hover {
    color: #F17A27;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cys-boutique-img-wrap {
        justify-content: center;
    }

    .cys-boutique-title {
        text-align: center;
    }

    .cys-boutique-main-title {
        font-size: 30px;
    }
}

.cys-cta-front-img {
    max-width: 75%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .cys-cta-front-img {
        max-width: 100%;
    }
}

.cys-cta-box-container {
    width: 100%;
    border-radius: 40px 0;
    overflow: hidden;
    position: relative;
    padding: 80px 40px 60px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
}

.cys-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.cys-cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.cys-cta-title {
    font-family: 'Panton', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.cys-cta-text {
    font-family: 'Panton', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    opacity: 0.9;
}

.cys-btn-solid-white {
    background-color: #fff;
    color: #ED6D05;
    border: none;
    border-radius: 30px;
    padding: 15px 35px;
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cys-btn-solid-white:hover {
    background-color: #ED6D05;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Bloque: CTA Banner 1 Imagen y 2 Imágenes
   ========================================================================== */

.cys-cta-banner-image .cys-cta-img-link,
.cys-cta-banner-dual .cys-cta-img-link {
    transition: transform 0.3s ease;
}

.cys-cta-banner-image .cys-cta-img-link:hover,
.cys-cta-banner-dual .cys-cta-img-link:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .cys-cta-banner-full {
        padding: 0;
        margin-bottom: 30px;
    }

    .cys-cta-top-image-wrap {
        margin-bottom: -30px;
    }

    .cys-cta-box-container {
        padding: 60px 20px 40px 20px;
        border-radius: 30px 0;
    }

    .cys-cta-content {
        text-align: center !important;
    }

    .cys-cta-overlay {
        background: rgba(0, 0, 0, 0.75);
    }

    .cys-cta-title {
        font-size: 28px;
    }

    .cys-cta-text {
        font-size: 18px;
        margin-bottom: 25px;
    }
}

/* ==========================================================================
   Plantilla de Categoría (category.php)
   ========================================================================== */

/* Banner */
.cys-category-banner {
    background-color: #D47223;
    padding: 20px 0;
}

.cys-category-banner .cys-category-title {
    /* font-family: 'Pattaya', cursive; */
    font-family: var(--cys-font-primary);
    color: #fff;
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

/* ==========================================================================
   Galería de Imágenes (Ronda de Negocios, etc.)
   ========================================================================== */
.cys-gallery-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.cys-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(12, 124, 125, 0.2);
    /* Sombra teal */
}

.cys-gallery-card img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cys-gallery-card:hover img {
    transform: scale(1.08);
}

.cys-gallery-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(234, 113, 5, 0.4), transparent);
    /* Gradiente Naranja CyS */
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cys-gallery-card:hover::after {
    opacity: 1;
}

/* Formulario de búsqueda en categoría */
.cys-category-filters {
    background-color: transparent;
}

.cys-category-search-form .cys-search-box-wrap {
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.cys-category-search-form .cys-search-input-box {
    border: none;
    background: transparent;
    padding: 12px 45px 12px 20px;
    box-shadow: none;
    font-size: 15px;
    width: 100%;
}

.cys-category-search-form .search-icon {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #666;
}

.cys-category-search-form .cys-btn-search {
    background-color: #ED6D05;
    border: none;
    border-radius: 30px;
    padding: 8px 30px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

/* Filtros / Pestañas */
.cys-tabs-label {
    color: #0C7C7D;
    /* Cyan color darker */
    font-weight: 700;
    font-size: 16px;
}

.cys-category-tabs {
    border-bottom: 2px solid #ED6D05;
    padding-bottom: 0;
    gap: 10px;
}

.cys-category-tabs .nav-link {
    background-color: #f0f0f0;
    color: #333;
    border-radius: 10px 10px 0 0;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cys-category-tabs .nav-link:hover {
    background-color: #e4e4e4;
}

.cys-category-tabs .nav-link.active {
    background-color: #ED6D05;
    color: #fff;
}

.nav-link:focus-visible {
    box-shadow: none;
}

/* Tarjetas de Post en Listado de Categoría */
.cys-posts-list {
    margin-top: 40px;
}

.cys-post-card {
    background-color: transparent;
    border: none;
}

.cys-post-img-col {
    position: relative;
}

.cys-post-img-link {
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
}

.cys-post-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cys-post-card:hover .cys-post-img {
    transform: scale(1.05);
}

body.search-results .cys-post-img {
    border-radius: 0;
}

body.search-results .cys-header,
body.search-no-results .cys-header {
    margin-bottom: 0;
}

.cys-post-date-bubble {
    background-color: rgba(203, 230, 235, 0.6);
    /* Light blue from design (20% opacity) */
    color: #333;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-weight: 700;
    line-height: 1;
    padding: 12px 12px;
    font-size: 20px;
}

.cys-post-date-bubble .day {
    font-size: 20px;
    font-family: 'Panton', sans-serif;
    font-weight: 600;
}

.cys-post-date-bubble .month {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Panton', sans-serif;
    font-weight: 600;
}

.cys-post-date-bubble .year {
    font-size: 20px;
    font-family: 'Panton', sans-serif;
    font-weight: 600;
}

.cys-post-date-bubble-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.cys-post-date-bubble-sm .day,
.cys-post-date-bubble-sm .month,
.cys-post-date-bubble-sm .year {
    font-size: 14px;
}

.cys-post-content-col {
    padding-left: 20px;
}

.cys-post-title,
.cys-post-title a {
    color: #ED6D05;
    text-decoration: none;
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 22px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.cys-post-title a:hover {
    color: #c75a02;
}

.cys-post-excerpt {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 15px;
}

.cys-post-img.fallback {
    /* If there's no thumbnail */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    height: 220px;
    border-radius: 20px 20px 20px 0;
}

/* Paginación */
.cys-pagination .pagination {
    gap: 8px;
    align-items: center;
}

.cys-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    color: #666;
    background-color: transparent;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    list-style: none;
}

.cys-pagination .page-numbers:hover {
    color: #ED6D05;
}

.cys-pagination .page-numbers.current {
    background-color: #111;
    color: #fff;
    border-radius: 5px;
}

.cys-pagination .page-numbers.current {
    color: #ED6D05;
}

.cys-pagination .page-numbers.prev,
.cys-pagination .page-numbers.next {
    color: #000;
    font-weight: 700;
    font-size: 22px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cys-post-date-bubble {
        margin: 20px 0;
    }

    .cys-post-content-col {
        padding-left: 15px;
        margin-top: 10px;
    }
}

/* ==========================================================================
   Plantilla de Artículo Individual (single.php)
   ========================================================================== */

.cys-single-white-box {
    border-radius: 40px;
    margin-bottom: 50px;
}

/* Etiqueta de Categoría (Eyebrow) */
.cys-single-cat-badge {
    color: #0E486D;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #0E486D;
    padding-bottom: 3px;
    display: inline-block;
}

/* Título Principal de la Nota */
.cys-single-title {
    color: #005381;
    /* Azul oscuro corporativo */
    font-family: var(--cys-font-primary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

/* Estilos dentro del contenido del post */
.cys-single-content {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
}

.cys-single-content h2,
.cys-single-content h3,
.cys-single-content h4 {
    color: #104C74;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Citas Destacadas (Blockquote) */
.cys-single-content blockquote {
    background-color: rgba(237, 109, 5, 0.2);
    /* ED6D05 al 20% */
    padding: 30px 40px;
    margin: 40px 0;
}

.cys-single-content blockquote p {
    border-left: 5px solid #005381;
    padding-left: 20px;
    color: #000;
    font-size: 18px;
    margin: 0;
}

/* Imágenes dentro del contenido */
.cys-single-content img {
    border-radius: 40px 0 40px 0;
    height: auto;
    margin: 30px 0;
    max-width: 100%;
}

.cys-single-content img.alignright {
    float: right;
    margin-left: 30px;
    max-width: 50%;
}

.cys-single-content img.alignleft {
    float: left;
    margin-right: 30px;
    max-width: 50%;
}

.cys-single-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Temas de esta nota (Etiquetas) */

.cys-single-tags-box {
    background-color: #fdf5ef;
    /* Fonde tenue durazno */
    border-radius: 20px 0;
}

.cys-single-tags-box .tags-title {
    color: var(--cys-text);
    font-weight: 700;
    font-size: 20px;
}

.cys-tag-link {
    color: #ED6D05;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.cys-tag-link:hover {
    color: #104C74;
}

.download-link {
    padding: 10px 20px;
    border-radius: 50px;
    color: #104C74 !important;
    transition: all 0.3s ease !important;
    font-size: 14px;
}

.download-link:hover {
    background-color: #ED6D05;
    color: #fff !important;
    border-color: #ED6D05;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(237, 109, 5, 0.2);
}

.download-link svg {
    color: #ED6D05;
    transition: color 0.3s ease;
}

.download-link:hover svg {
    color: #fff;
}

/* Sección Te Puede Interesar (Relacionados) */
.cys-related-posts {
    background-image: url('../images/bg-cys.png');
    background-repeat: repeat;
    background-size: contain;
}

.cys-related-title {
    color: #32B0B1;
    /* Cyan color */
    font-weight: 700;
    font-size: 32px;
}

.cys-related-card {
    background-color: transparent;
}

.cys-related-img-link {
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    position: relative;
    display: block;
}

.cys-related-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cys-related-card:hover .cys-related-img {
    transform: scale(1.05);
}

.cys-related-post-title {
    font-family: var(--cys-font-primary);
}

.cys-related-post-title a {
    color: #ED6D05;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.3;
}

.cys-related-post-title a:hover {
    color: #c75a02;
}

.cys-related-read-more {
    color: #32B0B1;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.cys-related-read-more:hover {
    color: #104C74;
    /* Dark blue */
    transform: translateX(5px);
}

/* ==========================================================================
   Plantilla: Agenda (Actividades)
   ========================================================================== */

.cys-agenda-container {
    max-width: 1000px;
    /* Ancho ajustado para que quede centrado como en el boceto */
    font-family: 'Inter', sans-serif;
}

/* Búsqueda y Filtros */
.cys-agenda-filters form {
    justify-content: flex-start;
}

.cys-agenda-search-wrap {
    position: relative;
    width: 200px;
}

.cys-agenda-input,
.cys-agenda-select {
    background-color: #EFEFEF;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.cys-agenda-input:focus,
.cys-agenda-select:focus {
    background-color: #E2E2E2;
    box-shadow: none;
    outline: none;
}

.cys-agenda-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    padding: 0;
    display: flex;
    align-items: center;
}

.cys-agenda-submit-btn {
    background-color: #ED6D05;
    border-color: #ED6D05;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

.cys-agenda-submit-btn:hover {
    background-color: #d15d00;
    color: #fff;
}

/* Pestañas de Días */
.cys-agenda-tab {
    display: inline-block;
    padding: 8px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #333;
    background-color: #CDE0E6;
    /* Celeste grisáceo claro */
    transition: all 0.3s ease;
}

.cys-agenda-tab.active {
    background-color: #174E79;
    /* Azul oscuro cys */
    color: #fff;
}

.cys-agenda-tab:hover:not(.active) {
    background-color: #B1CDD6;
    color: #333;
}

/* Tarjeta Individual */
.cys-agenda-card {
    /* background-color: rgba(237, 109, 5, 0.2); */
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    color: #1a1a1a;
    border: 2px solid rgba(237, 109, 5, 0.2);
}

/* Lado Izquierdo (Logística) */
.cys-agenda-card-left {
    padding: 50px 38px;
    width: 100%;
    background-color: rgba(237, 109, 5, 0.2)
}

@media (min-width: 768px) {
    .cys-agenda-card-left {
        width: 35%;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.cys-agenda-pill {
    background-color: #fbe4d7;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: Panton;
}

.cys-agenda-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.cys-agenda-meta-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.cys-agenda-meta-list strong {
    font-weight: 700;
}

.cys-agenda-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-top: 2px;
}

.svg-inline {
    width: 16px;
    height: 16px;
}

/* Lado Derecho (Contenido) */
.cys-agenda-card-right {
    padding: 50px 38px 50px 25px;
    width: 100%;
}

@media (min-width: 768px) {
    .cys-agenda-card-right {
        width: 65%;
    }
}

.cys-agenda-title {
    font-family: var(--cys-font-primary);
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-muted-cys {
    color: #4a4a4a;
}

.cys-btn-solid-orange {
    background-color: #ED6D05;
    color: #fff;
    border: 1px solid #ED6D05;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cys-btn-solid-orange:hover {
    background-color: #d15d00;
    border-color: #d15d00;
    color: #fff;
}

.cys-btn-outline-blue {
    background-color: #fff;
    color: #174E79;
    border: 1px solid #174E79;
}

.cys-btn-outline-blue:hover {
    background-color: #174E79;
    color: #fff;
}

/* ==========================================================================
   Bloque: Sponsors
   ========================================================================== */

.cys-sponsors-container {
    background-color: #fff;
}

.cys-sponsors-title {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #EA7105;
}

.cys-sponsors-wave-svg {
    max-width: 150px;
    height: auto;
}

.cys-sponsors-groups-wrapper {
    width: 100%;
}

.cys-sponsor-group {
    flex: 0 0 auto;
    width: calc(min(5, var(--group-cols)) * 20%);
    padding: 0 15px;
    margin-bottom: 50px;
    position: relative;
    display: flex;
}

.cys-sponsor-separator {
    width: 1px;
    background-color: #D1D1D1;
    margin: 40px 15px 40px 0;
    align-self: stretch;
    flex-shrink: 0;
}

.cys-sponsor-group-inner {
    flex-grow: 1;
}

.cys-sponsor-group-header {
    margin-bottom: 25px;
}

.cys-sponsor-group-title {
    font-family: var(--cys-font-primary);
    font-weight: 500;
    font-size: 13px;
    color: #4A4A4A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.cys-sponsor-group-items {
    align-items: stretch;
}

.cys-sponsor-item {
    flex: 0 0 auto;
    width: calc((var(--item-cols) / min(5, var(--group-cols))) * 100%);
    margin-bottom: 0;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.cys-sponsor-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    flex-grow: 1;
}

.cys-sponsor-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Tablet (3 columnas) */
@media (max-width: 991px) {
    .cys-sponsor-group {
        width: calc(min(3, var(--group-cols)) * 33.333%);
    }

    .cys-sponsor-item {
        width: calc((var(--item-cols) / min(3, var(--group-cols))) * 100%);
        margin-bottom: 30px;
    }
}

/* Móvil (2 columnas) */
@media (max-width: 767px) {
    .cys-sponsor-group {
        width: calc(min(2, var(--group-cols)) * 50%);
        padding: 0 15px;
    }

    .cys-sponsor-item {
        width: calc((var(--item-cols) / min(2, var(--group-cols))) * 100%);
    }

    .cys-sponsor-separator {
        display: none;
    }
}

.cys-sponsor-img:hover {
    transform: scale(1.05);
}

/* Spans para sponsors (compatibilidad con clases si se usan) */
.cys-span-2 {
    --item-cols: 2;
}

.cys-span-3 {
    --item-cols: 3;
}

/* ==========================================================================
   Bloque: Icon Circles (Círculos con Iconos)
   ========================================================================== */

.cys-icon-circles-section {
    position: relative;
}

.cys-icon-circle-shape {
    width: 220px;
    height: 220px;
    background-color: #32B0B1;
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
}

.cys-icon-circle-shape:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(50, 176, 177, 0.4);
}

.cys-icon-circle-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.cys-icon-circle-title {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #000;
}

.cys-icon-circle-text {
    font-family: 'Panton', sans-serif;
    font-size: 20px;
    font-weight: 600;
    /* Semibold */
    color: #1a1a1a;
    line-height: 1.4;
    text-align: center;
    margin-top: 20px;
}

/* ==========================================================================
   Bloque: Novedades
   ========================================================================== */

.cys-novedades-section {
    position: relative;
    background-color: transparent;
}

.cys-novedades-title {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #EA7105;
}

.cys-novedades-wave-svg {
    max-width: 150px;
    height: auto;
}

.cys-novedades-date-bubble {
    background-color: #e5edf0;
    /* Gris celeste claro similar al boceto */
    color: #1a1a1a;
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
}

.cys-novedades-date-bubble .day,
.cys-novedades-date-bubble .month {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.cys-novedades-card-title a {
    color: #005381;
    /* Azul oscuro cys solicitado */
    text-decoration: none;
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.cys-novedades-card-title a:hover {
    color: #EA7105;
}

.cys-novedades-read-more {
    font-family: 'Panton', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: underline !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cys-novedades-read-more:hover {
    color: #EA7105;
}

.cys-btn-outline-novedades {
    background-color: transparent;
    border: 1px solid #EA7105;
    color: #1a1a1a;
    font-family: 'Panton', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.cys-btn-outline-novedades:hover {
    background-color: #EA7105;
    color: #fff;
}

/* ==========================================================================
   Caminos Temáticos
   ========================================================================== */
.cys-caminos-section {
    background-color: #E6F6F6;
    /* Verde/celeste clarito del boceto */
    border-radius: 60px 0 60px 0;
    /* Bordes redondeados sup. izq. e inf. der. */
    overflow: hidden;
}

.cys-caminos-header {
    margin-bottom: 2rem;
}

.cys-caminos-title {
    color: #EA7105;
    /* Naranja CyS */
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 40px;
}

.cys-caminos-wave-svg {
    max-width: 150px;
    height: auto;
}

.cys-caminos-subtitle {
    font-family: 'Panton', sans-serif;
    font-size: 24px;
    color: #333333;
    font-weight: 400;
    margin-top: 0.5rem;
}

.cys-camino-item {
    margin-bottom: 25px;
    /* Spacing between rows */
}

.cys-camino-icon-box {
    width: 80px;
    /* Tamaño fijo para alinear los íconos */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cys-camino-icon {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cys-camino-text {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
}

/* Responsivo para Caminos Temáticos */
@media (max-width: 991px) {
    .cys-caminos-title {
        font-size: 32px;
    }

    .cys-caminos-subtitle {
        font-size: 20px;
    }

    .cys-caminos-wave-svg {
        max-width: 100px;
    }

    .cys-camino-icon-box {
        width: 60px;
        height: 60px;
        margin-right: 15px !important;
    }

    .cys-camino-text {
        font-size: 20px;
    }
}

/* ==========================================================================
   Banner Promo
   ========================================================================== */
.cys-banner-promo {
    border-radius: 0;
    overflow: hidden;
}

.cys-banner-promo .cys-btn-outline-orange {
    color: var(--bs-body-color);
}

.cys-banner-promo .cys-btn-outline-orange:hover {
    color: #fff;
}

.cys-banner-promo-title {
    color: #EA7105;
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

.cys-banner-promo-wave {
    max-width: 150px;
    height: auto;
}

.cys-banner-promo-img-wrap {
    border-radius: 0 60px 0 60px;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cys-banner-promo-img {
    width: 100%;
    height: auto;
    display: block;
}

.cys-banner-promo-dots {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    /* Detrás de la imagen según el boceto, o ligeramente al lado */
}

.cys-banner-promo-dots img {
    width: 120px;
}

@media (max-width: 1200px) {
    .cys-banner-promo-dots {
        right: -20px;
    }
}

@media (max-width: 991px) {
    .cys-banner-promo-title {
        font-size: 30px;
    }

    .cys-banner-promo-wave {
        max-width: 100px;
    }

    .cys-banner-promo {
        border-radius: 40px 0 40px 0;
    }

    .cys-banner-promo-img-wrap {
        border-radius: 0 40px 0 40px;
    }
}

/* ==========================================================================
   Bloque: Preguntas Frecuentes (FAQ)
   ========================================================================== */

.cys-faq-section {
    background-color: transparent;
}

.cys-faq-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 40px;
    color: #ED6D05;
    /* Naranja como en el boceto */
}

.cys-faq-wave-svg {
    width: 150px;
    height: auto;
}

.cys-faq-container .accordion-item {
    background-color: #E0F2F1;
    /* Fondo verde agua clarito como en el boceto */
    border-radius: 0;
    margin-bottom: 12px !important;
}

.cys-faq-button {
    background-color: #E0F2F1 !important;
    color: #333 !important;
    font-family: var(--cys-font-primary);
    font-weight: 600;
    font-size: 20px;
    padding: 20px 25px;
    box-shadow: none !important;
}

.cys-faq-button:not(.collapsed) {
    color: #007D85 !important;
}

.cys-faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.cys-faq-answer {
    background-color: #E0F2F1;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 25px 25px 25px;
}

.cys-faq-btn-more {
    display: inline-block;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 10px 40px;
    font-family: var(--cys-font-primary);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cys-faq-btn-more:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .cys-faq-title {
        font-size: 30px;
    }

    .cys-faq-button {
        font-size: 18px;
    }
}

/* ==========================================================================
   Bloque: Video Destacado
   ========================================================================== */

.cys-video-destacado-section {
    background-color: transparent;
}

.cys-video-header {
    margin-bottom: 2rem;
}

.cys-video-title {
    color: #EA7105;
    /* Naranja CyS */
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 40px;
}

.cys-video-wave-svg {
    max-width: 150px;
    height: auto;
}

.cys-video-container {
    background-color: #000;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.cys-video-container iframe,
.cys-video-container video {
    border-radius: 1.5rem;
}

@media (max-width: 768px) {
    .cys-video-title {
        font-size: 30px;
    }
}

/* ==========================================================================
   Bloque: Banner Mercado
   ========================================================================== */

.cys-banner-mercado-section {
    position: relative;
    overflow: hidden;
}

.cys-banner-mercado-header {
    margin-bottom: 2rem;
}

.cys-banner-mercado-title {
    color: #EA7105;
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 40px;
}

.cys-banner-mercado-wave-svg {
    max-width: 150px;
    height: auto;
}

.cys-banner-mercado-image-wrap {
    margin-bottom: -50px;
    /* Sobrepone la imagen a la caja naranja */
}

.cys-banner-mercado-image-wrap img {
    border-radius: 60px 0 0 0 !important;
    /* Estilo de borde personalizado en el boceto */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cys-banner-mercado-content-box {
    background-color: transparent;
    padding-top: 80px !important;
    /* Espacio extra por la imagen sobrepuesta */
}

.cys-banner-mercado-text {
    font-family: 'Panton', sans-serif;
    font-size: 24px;
    line-height: 1.4;
    color: #000;
}

.cys-banner-mercado-text p {
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (max-width: 991px) {
    .cys-banner-mercado-content-box {
        border-radius: 0 0 40px 0;
        padding-top: 60px !important;
    }

    .cys-banner-mercado-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cys-banner-mercado-title {
        font-size: 30px;
    }

    .cys-banner-mercado-image-wrap {
        margin-bottom: -30px;
    }
}

/* ==========================================================================
   Agenda v2 Design
   ========================================================================== */

.cys-agenda-v2-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cys-agenda-v2-search-section {
    margin-bottom: 40px;
}

.cys-agenda-v2-search-form {
    background-color: #F0EEE9;
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cys-agenda-v2-search-form .cys-agenda-input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 18px;
    color: #333;
    flex-grow: 1;
}

.cys-agenda-v2-search-form .cys-agenda-input:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.cys-agenda-v2-submit-btn {
    background-color: #EA7105;
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    padding: 12px 40px;
    transition: background-color 0.3s ease;
}

.cys-agenda-v2-submit-btn:hover {
    background-color: #d16504;
}

.cys-agenda-v2-tabs {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.cys-agenda-v2-tabs::-webkit-scrollbar {
    height: 4px;
}

.cys-agenda-v2-tabs::-webkit-scrollbar-thumb {
    background: #D5E1E9;
    border-radius: 10px;
}

.cys-agenda-v2-tab {
    background-color: #D5E1E9;
    color: #333;
    padding: 12px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cys-agenda-v2-tab span {
    font-weight: 700;
}

.cys-agenda-v2-tab:hover {
    background-color: #c4d4df;
    color: #000;
}

.cys-agenda-v2-tab.active {
    background-color: #1A5276;
    color: white;
}

.cys-agenda-v2-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cys-agenda-v2-item {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
}

.cys-agenda-v2-item-left {
    width: 340px;
    min-width: 340px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.cys-agenda-v2-item.is-odd .cys-agenda-v2-item-left {
    background-color: rgba(237, 109, 5, 0.2);
    /* #ED6D05 al 20% */
}

.cys-agenda-v2-item.is-even .cys-agenda-v2-item-left {
    background-color: rgba(50, 176, 177, 0.2);
    /* #32B0B1 al 20% */
}

.cys-agenda-v2-logistic-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.cys-agenda-v2-logistic-item .cys-agenda-pill {
    background-color: #ffffff60;
    padding: 5px 10px;
    border-radius: 30px;
}

.cys-agenda-v2-logistic-item img {
    width: 20px;
    height: 20px;
}

.cys-agenda-v2-item-middle {
    flex-grow: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cys-agenda-v2-item-title {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cys-agenda-v2-speakers {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

.cys-agenda-v2-speakers img {
    width: 20px;
    margin-top: 3px;
}

.cys-agenda-v2-speakers div strong {
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.cys-agenda-v2-item-right {
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.cys-btn-v2-info {
    border: 1px solid #D5E1E9;
    color: #1A5276;
    background: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cys-btn-v2-info:hover {
    background: #1A5276;
    color: white;
    border-color: #1A5276;
}

@media (max-width: 991px) {
    .cys-agenda-v2-item {
        flex-direction: column;
        border-radius: 30px;
    }

    .cys-agenda-v2-item-left {
        width: 100%;
        min-width: 100%;
    }

    .cys-agenda-v2-item-middle {
        padding: 25px;
    }

    .cys-agenda-v2-item-right {
        justify-content: flex-end;
        padding: 0 25px 25px;
    }
}

/* Recipes Archive & Shortcode */
.cys-recipes-filters {
    background: transparent;
    padding: 20px 0;
}

.cys-recipes-intro {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.btn-search-icon {
    background: #fff;
    border: 1px solid #ced4da;
    border-left: none;
}

.btn-orange {
    background-color: #ED6D05;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #d15d04;
    color: #fff;
}

/* Recipe Card */
.cys-recipe-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.cys-recipe-card:hover {
    /*transform: translateY(-5px); */
}

.cys-recipe-card-image {
    aspect-ratio: 16/9;
    max-height: 175px;
    border-radius: 0 40px 0 40px;
    overflow: hidden;
}

.cys-recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cys-recipe-card:hover img {
    transition: transform 0.3s ease;
    transform: scale(1.1);
}

.cys-recipe-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cys-recipe-card-title {
    color: #ED6D05;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cys-recipe-card-footer {
    background: rgba(237, 109, 5, 0.15);
    /* Pastel Peach */
    margin: 0 -20px -20px -20px;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: auto;
    border-radius: 40px 0 40px 0;
    flex-direction: column;
    gap: 12px;
    min-height: 100px;
}

.cys-recipe-card-footer .btn-pill-outline {
    margin-top: auto;
    align-self: flex-start;
}

.cys-recipe-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.cys-recipe-icon {
    width: 20px;
    height: 20px;
}

.btn-pill-outline {
    background: #fff;
    border: 1px solid #ccc;
    color: #32B0B1;
    border-radius: 30px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pill-outline:hover {
    background: #32B0B1;
    color: #fff;
    border-color: #32B0B1;
}

/* Pagination */
.cys-recipes-archive .cys-pagination ul {
    display: flex !important;
    margin: auto;
}

/* ==========================================================================
   Bloque: Promoción de Productos
   ========================================================================== */

.cys-product-promo .cys-pp-section-title {
    font-family: 'Panton', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ED6D05;
}

.cys-pp-wave-img {
    max-width: 150px;
    height: auto;
}

.cys-pp-section-text {
    font-family: 'Panton', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 1000px;
}

.cys-pp-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cys-pp-card:hover .cys-pp-card-image {
    transform: scale(1.05);
}

.cys-pp-card-image-wrap {
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cys-pp-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cys-pp-card-title {
    font-family: 'Panton', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ED6D05;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.cys-pp-card-body {
    border-radius: 40px 0 40px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cys-pp-card-tag .badge {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
    font-family: 'Panton', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    text-transform: none;
}

.cys-pp-card-subheading {
    font-family: 'Panton', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.cys-pp-card-text {
    font-family: 'Panton', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.cys-pp-card-text p {
    margin-bottom: 0;
}

.cys-pp-card-text strong {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 12px;
}

.cys-pp-card-text h5 {
    font-family: 'Panton', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 12px;
}

.cys-pp-card-text h5:after {
    background-image: none !important;
}

.cys-pp-card-text a,
.cys-pp-card-text a strong {
    color: #333;
    text-decoration: underline;
    font-size: 16px !important;
}

.cys-pp-card-text p strong {
    color: #333;
    font-size: 16px !important;
}

.cys-pp-card-text a:hover,
.cys-pp-card-text a:hover strong {
    color: #ED6D05 !important;
}

.cys-pp-card-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 991px) {
    .cys-product-promo .cys-pp-section-title {
        font-size: 32px;
    }

    .cys-pp-card-title {
        font-size: 20px;
    }
}

/* ==========================================================================
   Agenda Modal Custom Design (Mockup 2026)
   ========================================================================== */

.cys-modal-agenda-wrapper {
    border-radius: 40px !important;
    /* Bordes muy redondeados como en el boceto */
    border: none !important;
    overflow: hidden;
    position: relative;
}

.cys-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    background-color: transparent;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
    width: 25px;
    height: 25px;
}

.cys-modal-agenda-top {
    background-color: rgba(237, 109, 5, 0.2);
    /* Color piel / peach del boceto */
    padding: 60px 40px 40px 40px;
    text-align: center;
}

.cys-modal-auditorium {
    font-family: 'Panton', sans-serif;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cys-modal-title {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.cys-modal-speakers {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
}

.cys-modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.cys-modal-agenda-bottom {
    background-color: #FFFFFF;
    padding: 50px 40px 60px 40px;
    border-radius: 40px 0 0 0;
    /* Curva hacia arriba para separar del top */
    margin-top: -30px;
    /* Traslape ligero para suavizar la transición */
    position: relative;
    z-index: 2;
    text-align: center;
}

.cys-modal-sponsors-title {
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1a1a1a;
}

.cys-modal-sponsor-cat {
    font-family: 'Panton', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cys-modal-sponsor-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .cys-modal-agenda-top {
        padding: 50px 20px 30px 20px;
    }

    .cys-modal-title {
        font-size: 24px;
    }

    .cys-modal-agenda-bottom {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   Recipe Single Page
   ========================================================================== */
.cys-recipe-single .cys-recipe-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 44px);
    color: #ED6D05;
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.cys-recipe-single-meta .cys-recipe-meta {
    font-size: 25px;
    font-weight: 700;
    font-family: 'Panton';
}

.cys-recipe-single-meta .cys-recipe-icon {
    width: 24px;
    height: 24px;
}

.cys-recipe-single .cys-wavy-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.cys-recipe-featured-image {
    border-radius: 40px 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cys-recipe-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.cys-ingredients-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 24px;
    color: #ED6D05;
}

.cys-ingredients-box {
    position: relative;
    background-color: #ED6D05;
    border-radius: 40px 0;
    color: #000;
    overflow: hidden;
    z-index: 1;
}

.cys-ingredients-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg-naranja.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}



.cys-ingredients-list {
    list-style: none;
    padding: 0;
    border-left: 4px solid #FCD40F;
    padding-left: 25px;
}

.cys-ingredients-list li {
    padding: 10px 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.cys-ingredients-list li:last-child {
    border-bottom: none;
}

.cys-ingredients-list li::before {
    content: "•";
    margin-right: 12px;
    color: #000;
}

/* .cys-preparation-step-box {
    background-color: rgba(50, 176, 177, 0.25);
    background-image: url('../images/bg-cys.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 40px 0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}*/


.cys-step-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 28px;
    color: #0C7C7D;
}

.cys-step-content {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

.cys-related-recipes .cys-related-title {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 32px;
    color: #ED6D05;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.cys-related-recipes .cys-wavy-underline.mini {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
}

@media (max-width: 768px) {
    .cys-recipe-single .cys-recipe-title {
        font-size: 32px;
    }

    .cys-preparation-step-box {
        padding: 30px 20px !important;
    }
}

/* ==========================================================================
   Recipe Search Bar Restyling
   ========================================================================== */
.cys-recipe-search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.cys-recipe-search-field .form-control {
    background-color: #F2EFEB;
    border: none;
    border-radius: 50px;
    padding: 15px 55px 15px 25px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    height: auto;
}

.cys-recipe-search-field .form-control::placeholder {
    color: #333;
}

.cys-recipe-search-field .btn-search-icon {
    position: absolute;
    right: 25px;
    background: none;
    border: none;
    padding: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cys-recipes-filters .form-select {
    background-color: #F2EFEB;
    border: none;
    border-radius: 20px;
    padding: 15px 45px 15px 25px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    height: auto;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.cys-recipes-filters .btn-orange {
    border-radius: 20px;
    padding: 18px 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
    background-color: #ED6D05;
    border: none;
    color: #fff;
    line-height: 1;
}

.cys-recipes-filters .btn-orange:hover {
    background-color: #d15d04;
}

.cys-recipes-intro {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    font-family: var(--cys-font-primary);
}

@media (max-width: 768px) {

    .cys-recipes-filters .col-md-4,
    .cys-recipes-filters .col-md-2,
    .cys-recipes-filters .col-md-3 {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   Bloque: Formulario Doble
   ========================================================================== */
.cys-fd-intro {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

.cys-fd-main-container {
    position: relative;
    background-color: #ED6D05;
    border-radius: 60px 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.cys-fd-main-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg-naranja.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.cys-fd-column {
    position: relative;
    z-index: 5;
    background-color: transparent;
    overflow: hidden;
}

.cys-fd-header {
    background-color: #007D85;
    padding: 18px 25px;
    text-align: center;
}

.cys-fd-header h3 {
    color: #fff;
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.cys-fd-iframe-wrapper {
    background-color: transparent;
    overflow: hidden;
}

.cys-fd-iframe-wrapper iframe {
    display: block;
    background: transparent;
}

@media (max-width: 991px) {
    .cys-fd-main-container {
        border-radius: 40px 0;
    }

    .cys-fd-header h3 {
        font-size: 18px;
    }

    .cys-fd-intro {
        font-size: 16px;
    }
}





/* Contenedor principal para aislar estilos y evitar colisiones */
.cys-modern-content {
    font-family: var(--cys-font-primary);
    color: #222;
    line-height: 1.5;
    padding: 40px 0;
}

/* Títulos con adorno lateral (ajustado para no pisar globales) */
.cys-modern-content .cys-section-title {
    color: var(--cys-orange) !important;
    font-weight: 700 !important;
    font-size: 40px !important;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    background: none;
}

.cys-modern-content .cys-wavy-adornment {
    width: auto;
    max-width: 150px;
}

/* Caja Naranja con Patrón */
.cys-modern-content .cys-info-box {
    background-color: #ED6D05;
    border-radius: 60px 0;
    padding: 45px;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-bottom: 60px;
}

.cys-modern-content .cys-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/themes/caminos-2026/assets/images/bg-naranja.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.cys-modern-content .cys-info-box h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    color: #fff !important;
}

.cys-modern-content .cys-info-item {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.cys-modern-content .cys-info-item strong {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.cys-modern-content .cys-info-item span {
    font-size: 22px;
    font-weight: 700;
}

/* Sección Ubicación */
.cys-modern-content .cys-location-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

.cys-modern-content .cys-card-access {
    background-color: rgba(50, 176, 177, 0.25);
    background-image: url(../images/bg-cys.png);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 40px 0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cys-modern-content .cys-card-access>div {
    padding: 40px;
}


.cys-modern-content .cys-card-access h4 {
    color: #0C7C7D !important;
    font-weight: 700 !important;
    font-size: 28px;
    margin-bottom: 25px;
}

.cys-modern-content .cys-card-access ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cys-modern-content .cys-card-access ul li {
    margin-bottom: 12px;
    padding-left: 0 !important;
    color: #333;
    font-size: 17px;
    border: none;
    background: none;
}

.cys-modern-content .cys-card-access ul li strong {
    color: #32B0B1;
    font-weight: 700;
}

/* Mapa y Botón Pill Outline */
.cys-modern-content .cys-map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

/* Botón estilo Recetas (btn-pill-outline) */
.cys-modern-content .btn-pill-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ED6D05 !important;
    color: #ED6D05 !important;
    background: transparent !important;
    border-radius: 50px !important;
    padding: 10px 40px;
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.cys-modern-content .btn-pill-outline:hover {
    background-color: #ED6D05 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 109, 5, 0.3);
}

/* Redes Sociales */
.cys-modern-content .cys-social-grid {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cys-modern-content .cys-social-item {
    width: 55px;
    height: 55px;
    background-color: #FDF5EE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ED6D05;
    font-size: 22px;
    font-weight: 700;
}

.cys-modern-content .cys-social-item:hover {
    background-color: #ED6D05;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .cys-modern-content .cys-section-title {
        font-size: 28px !important;
    }

    .cys-modern-content .cys-info-box {
        padding: 35px;
        border-radius: 40px 0;
    }

    .cys-modern-content .cys-info-item span {
        font-size: 18px;
    }
}

/* ==========================================================================
   Página: Cómo Exponer
   ========================================================================== */

.cys-exponer-section {
    padding: 60px 0;
}

.cys-video-wrapper,
.cys-video-embed {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    background: #000;
}

.cys-btn-hero {
    background-color: var(--cys-orange);
    color: #fff !important;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 10px 20px rgba(234, 113, 5, 0.2);
}

.cys-btn-hero:hover {
    background-color: #c75a02;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(234, 113, 5, 0.3);
}

.cys-btn-secondary {
    background-color: var(--cys-teal);
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.cys-btn-secondary:hover {
    background-color: #278d8e;
    transform: translateY(-2px);
}

/* Info Box / Reglamento */
.cys-box-reglamento {
    background-color: var(--cys-teal);
    padding: 60px;
    border-radius: 80px 0 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.cys-box-reglamento::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/bg-naranja.png);
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.cys-box-reglamento-content {
    position: relative;
    z-index: 2;
}

.cys-box-reglamento-content p {
    font-size: 1.5rem;
}

.cys-box-reglamento .cys-btn-secondary {
    background-color: var(--bs-white);
    color: var(--cys-teal) !important;
    font-size: 1rem;
}

.cys-box-reglamento .cys-btn-secondary:hover {
    background-color: var(--cys-teal);
    color: var(--bs-white) !important;
}

.cys-box-reglamento .cys-btn-hero {
    font-size: 1rem;
    font-weight: 600;
}

/* Advisor Cards */
.cys-advisor-card {
    background: #fff;
    border-radius: 0 45px 0 45px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.cys-advisor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(50, 176, 177, 0.3);
}

.cys-advisor-name {
    font-family: var(--cys-font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--cys-orange);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.cys-advisor-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #444;
}

.cys-advisor-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cys-advisor-info a:hover {
    color: var(--cys-teal);
    text-decoration: underline;
}

.cys-advisor-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .cys-box-reglamento {
        padding: 40px 25px;
        border-radius: 0 40px 0 40px;
    }

    .cys-advisor-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Concurso Experiencias del Sabor 2025
   ========================================================================== */

.cys-celebratory-bg {
    position: relative;
    overflow: hidden;
}

.cys-confetti {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

.cys-confetti-1 {
    top: -20px;
    right: -20px;
    width: 250px;
    transform: rotate(15deg);
}

.cys-confetti-2 {
    bottom: -50px;
    left: -20px;
    width: 200px;
    transform: rotate(-15deg);
}

/* Categories Fix */
.cys-category-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.cys-category-icon {
    width: 48px;
    height: 48px;
    background-color: #fff4ec;
    color: #ED6D05;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 12px rgba(237, 109, 5, 0.12);
}

.cys-category-icon svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
}

.cys-category-text {
    font-size: 17px;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.cys-category-item:hover {
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(237, 109, 5, 0.2);
}

.cys-category-item:hover .cys-category-icon {
    background-color: #ED6D05;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Winner Cards Fix */
.cys-winner-row {
    background: linear-gradient(180deg, #FDF8F3 0%, #FFFFFF 100%) !important;
    border-radius: 100px 0 100px 0 !important;
    padding: 100px 30px !important;
    margin-top: 60px !important;
    position: relative;
    overflow: hidden;
}

.cys-winner-row::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background-image: radial-gradient(#ED6D05 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    transform: translate(-50%, -50%) rotate(-5deg);
    pointer-events: none;
}

.cys-celebratory-bg .cys-winner-card {
    background-color: #ffffff !important;
    border-radius: 40px 0 40px 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 40px 30px !important;
    height: 100% !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: left !important;
    perspective: 1000px;
}

.cys-winner-medal {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.cys-winner-card h6 {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 8px !important;
    color: #32B0B1 !important;
    text-transform: uppercase !important;
    opacity: 0.8 !important;
    padding-right: 0 !important;
}

.cys-winner-card h4 {
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    letter-spacing: -0.5px !important;
}

.cys-celebratory-bg .cys-winner-card:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(4deg) translateY(-12px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(237, 109, 5, 0.3) !important;
}

.cys-celebratory-bg .cys-winner-card:hover .cys-winner-medal {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
}

.cys-pattaya-font {
    font-family: 'Pattaya', sans-serif !important;
}

.cys-big-button {
    font-size: 22px !important;
    padding: 20px 50px !important;
    border-width: 4px !important;
    box-shadow: 0 15px 35px rgba(237, 109, 5, 0.4) !important;
}

.cys-decorative-dots {
    background-image: url('../images/adorno-puntos.png');
    background-repeat: repeat;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: -1;
    opacity: 0.3;
}

/* Contact Banner Redesign */
.cys-contact-banner {
    background-color: #32B0B1 !important;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 20%) !important;
    border-radius: 120px 0 120px 0 !important;
    padding: 70px 80px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(50, 176, 177, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cys-contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50L50 0L100 50L50 100Z" fill="white" fill-opacity="0.03"/></svg>');
    background-size: 150px 150px;
    pointer-events: none;
}

.cys-btn-orange-pill {
    background-color: #f1680b !important;
    color: white !important;
    border-radius: 60px !important;
    padding: 18px 35px !important;
    font-weight: 700 !important;
    font-family: 'Panton', sans-serif !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: none !important;
    font-size: 17px !important;
    text-align: center;
    box-shadow: 0 10px 20px rgba(241, 104, 11, 0.3) !important;
}

.cys-btn-orange-pill:hover {
    background-color: #d85c09 !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(241, 104, 11, 0.5) !important;
}

.cys-btn-white-pill {
    background-color: white !important;
    color: #32B0B1 !important;
    border-radius: 60px !important;
    padding: 18px 35px !important;
    font-weight: 700 !important;
    font-family: 'Panton', sans-serif !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: none !important;
    font-size: 17px !important;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.cys-btn-white-pill:hover {
    background-color: #ffffff !important;
    color: #ED6D05 !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Staggered Grid for Gallery */
@media (min-width: 992px) {
    .cys-staggered-grid .col:nth-child(even) {
        margin-top: 60px;
    }
}

.cys-winner-card h6.custom {
    font-family: 'Panton', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #32B0B1 !important;
    margin-bottom: 5px !important;
}

.cys-winner-card h4.custom {
    font-family: 'Panton', sans-serif !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
}

.cys-winner-medal-gold {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    filter: drop-shadow(0 5px 10px rgba(184, 134, 11, 0.4));
    border: 2px solid white;
}

@media (max-width: 991px) {
    .cys-contact-banner {
        border-radius: 60px 0 60px 0 !important;
        padding: 50px 30px !important;
        text-align: center !important;
    }

    .cys-contact-banner .text-start {
        text-align: center !important;
    }
}

/* ==========================================================================
   Sección: Concursos
   ========================================================================== */

.cys-concursos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.cys-concurso-card {
    position: relative;
    height: 100%;
    padding: 2.25rem;
    border-radius: 36px 0;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 167, 97, 0.14) 100%); */
    border: 2px solid rgba(12, 124, 125, 0.16);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cys-concurso-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(12, 124, 125, 0.1);
    color: #0c7c7d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cys-concurso-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #2b2b2b;
}

.cys-concurso-section-title {
    margin-bottom: 0.9rem;
    color: #0C7C7D;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cys-concurso-list {
    margin: 0;
    padding-left: 1.15rem;
}

.cys-concurso-list li+li {
    margin-top: 0.55rem;
}

.cys-concurso-status {
    display: grid;
    gap: 0.85rem;
}

.cys-concurso-status-item {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(12, 124, 125, 0.08);
    border: 1px solid rgba(12, 124, 125, 0.14);
}

.cys-concurso-status-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #0c7c7d;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cys-concurso-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(12, 124, 125, 0.14);
    font-size: 15px;
}

.cys-concurso-footer a {
    word-break: break-word;
    color: #005381;
    font-weight: 700;
}

.cys-concurso-footer a:hover {
    color: #ED6D05;
}

@media (max-width: 991.98px) {
    .site-header {
        position: relative;
    }

    .site-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background-color: var(--cys-bg, #ffffff);
        border-radius: 20px 0 20px 20px;
        padding: 1.5rem;
        margin-top: 10px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(234, 113, 5, 0.1);
        z-index: 1050;
    }

    .site-header .navbar-collapse .navbar-nav>.nav-item {
        display: block;
        height: auto;
        margin-bottom: 0.25rem;
        border-bottom: 1px solid rgba(12, 124, 125, 0.08);
    }

    .site-header .navbar-collapse .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .site-header .navbar-collapse .navbar-nav .nav-link {
        color: #005381 !important;
        font-family: var(--cys-font-primary);
        font-weight: 700;
        font-size: 1.1rem;
        padding: 0.85rem 1rem !important;
        border-radius: 12px 0 12px 12px;
        transition: all 0.3s ease;
        display: block;
    }

    .site-header .navbar-collapse .navbar-nav .nav-link:hover,
    .site-header .navbar-collapse .navbar-nav .nav-link:focus,
    .site-header .navbar-collapse .navbar-nav .nav-link[aria-expanded="true"] {
        background-color: rgba(234, 113, 5, 0.06);
        color: var(--cys-orange) !important;
        transform: translateX(5px);
    }

    /* Dropdown Menus en Móvil */
    .site-header .navbar-collapse .dropdown-menu {
        position: static !important;
        transform: none !important;
        float: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        margin-top: 0;
        margin-bottom: 0;
        display: none;
    }

    .site-header .navbar-collapse .dropdown-menu.show {
        display: block;
    }

    .site-header .navbar-collapse .dropdown-item {
        color: #005381 !important;
        font-family: var(--cys-font-primary);
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
        border-radius: 8px 0;
        transition: all 0.3s ease;
    }

    .site-header .navbar-collapse .dropdown-item:hover,
    .site-header .navbar-collapse .dropdown-item:focus {
        background-color: rgba(234, 113, 5, 0.04);
        color: var(--cys-orange) !important;
        transform: translateX(5px);
    }

    /* Toggler (Hamburger animado) */
    .cys-toggler {
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 12px 0;
        padding: 0.6rem;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cys-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
    }

    .cys-toggler[aria-expanded="true"] {
        background-color: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.8) !important;
    }

    .animated-hamburger {
        width: 24px;
        height: 18px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    .animated-hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .animated-hamburger span:nth-child(1) {
        top: 0px;
    }

    .animated-hamburger span:nth-child(2) {
        top: 8px;
    }

    .animated-hamburger span:nth-child(3) {
        top: 16px;
    }

    /* Transición a X */
    .cys-toggler[aria-expanded="true"] .animated-hamburger span:nth-child(1) {
        top: 8px;
        transform: rotate(135deg);
    }

    .cys-toggler[aria-expanded="true"] .animated-hamburger span:nth-child(2) {
        opacity: 0;
        left: -10px;
    }

    .cys-toggler[aria-expanded="true"] .animated-hamburger span:nth-child(3) {
        top: 8px;
        transform: rotate(-135deg);
    }

    .cys-concursos-grid {
        grid-template-columns: 1fr;
    }

    .cys-concurso-card {
        padding: 1.75rem;
    }
}


.cys-footer-banner {
    margin-top: 25px;
    border-radius: 80px 0;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .cys-footer-banner {
        border-radius: 40px 0;
    }
}

/* ==========================================================================
   WhatsApp Bot Button
   ========================================================================== */
@keyframes botPulse {

    0%,
    10%,
    100% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.1);
    }
}

.cys-floating-bot-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 85px;
    height: 85px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    padding: 15px;
    animation: botPulse 6s infinite;
}

.cys-bot-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 12px 18px;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    margin-right: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.cys-bot-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: #fff;
}

.cys-floating-bot-btn:hover .cys-bot-tooltip {
    opacity: 1;
    visibility: visible;
    margin-right: 20px;
}

.cys-floating-bot-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

.cys-floating-bot-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Menu Bot Banner */
.cys-menu-bot-banner {
    background-color: #F1EFEA;
    border-radius: 20px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cys-menu-bot-banner:active {
    transform: scale(0.98);
    background-color: #e8e6e0;
}

.cys-menu-bot-banner .bot-icon-wrap {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cys-menu-bot-banner .bot-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cys-menu-bot-banner .bot-text-wrap {
    flex-grow: 1;
}

.cys-menu-bot-banner .bot-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .cys-floating-bot-btn {
        display: none !important;
    }
}

/* ==========================================================================
   Tickets and Coupons (General Info)
   ========================================================================== */

.cys-ticket-v2 {
    background: #fff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
}

.cys-ticket-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cys-ticket-stub {
    border-left: 2px dashed #e9ecef;
    background-color: #fcfcfc;
    min-width: 130px;
}

.cys-coupon-v2 {
    background-color: #ffffff;
    border: 2px dashed #e2ecec;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cys-coupon-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.cys-scissors-icon {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #fff;
    padding: 0 8px;
}

/* ==========================================================================
   Logo Cards
   ========================================================================== */
.cys-logo-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.cys-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}


.cys-pulse-ring {
    animation: cysPulse 2.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes cysPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    80% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}