.card-max-width {
  max-width: 340px;
}

.img-max-height {
  max-height: 340px;
}

:root {
    --color-tarifa: #3B7DDD;
    --color-ocupacion: #1CBB8C;
    --color-reserva: #FCB92C;
    --color-otro: #3788d8;
    --color-texto: #FFFFFF;
    --color-pendiente: rgb(108, 117, 125); /* Color para eventos pendientes */
}

.fc-event.tipo-tarifa {
    background-color: var(--color-tarifa) !important;
    border-color: var(--color-tarifa) !important;
    color: var(--color-texto) !important;
}

.fc-event.tipo-Ocupado {
    background-color: var(--color-ocupacion) !important;
    border-color: var(--color-ocupacion) !important;
    color: var(--color-texto) !important;
}
.fc-event.tipo-Reservado {
    background-color: var(--color-reserva) !important;
    border-color: var(--color-reserva) !important;
    color: var(--color-texto) !important;
}
.fc-event.estado-pendiente {
    background-color: var(--color-pendiente) !important;
    border-color: var(--color-pendiente) !important;
    color: var(--color-texto) !important;
}

.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    color: white;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.sticky button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sticky button:hover {
    background-color: #0056b3;
}

    .input-wrapper {
        display: flex; /* Flexbox para alinear elementos en una fila */
        align-items: center; /* Centrar verticalmente el botón y el input */
        position: relative; /* Posicionamiento relativo para ajustar el botón */
    }

    /* Ajuste del botón */
    .clear-btn {
        position: absolute; /* Botón posicionado absolutamente */
        right: 0px; /* Siempre a la derecha del input */
        top: 50%; /* Centrar verticalmente */
        transform: translateY(-50%); /* Ajustar la posición vertical */
        padding: 5px 10px; /* Tamaño cómodo del botón */
        z-index: 1; /* Asegurar que esté encima del input */
    }

    /* Evitar que el input se superponga al botón */
    .input-wrapper input {
        padding-right: 40px; /* Espacio para el botón de borrar */
    }


#carrousel-lista-ocupaciones-pendientes {
    padding: 20px 0px;
    perspective: 1200px;
}

#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .carousel-item,
#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .carousel-item-next,
#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .carousel-item-prev,
#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .carousel-item.active,
#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .active.carousel-item-start,
#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .active.carousel-item-end,
#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .carousel-item-next.carousel-item-start,
#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .carousel-item-prev.carousel-item-end {
    transition: none !important;
    transform: none !important;
}

#carrousel-lista-ocupaciones-pendientes.carousel-gsap-enabled .carousel-inner {
    position: relative;
    overflow: hidden;
}

#carrousel-lista-ocupaciones-pendientes .carousel-control-prev,
#carrousel-lista-ocupaciones-pendientes .carousel-control-next {
    width: 40px;
    background: linear-gradient(135deg, rgba(33, 52, 75, 0.82) 0%, rgba(57, 180, 232, 0.52) 100%);
    border-radius: 50%;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 26px rgba(33, 52, 75, 0.18);
    backdrop-filter: blur(8px);
    will-change: transform, opacity;
}

#carrousel-lista-ocupaciones-pendientes .card {
    margin: 10px;
    transition: transform 0.3s ease;
}

#carrousel-lista-ocupaciones-pendientes .card:hover {
    transform: translateY(-5px);
}

:root {
    --primary-color: #21344b;   /* Azul oscuro */
    --secondary-color: #39b4e8; /* Azul claro */
    --tertiary-color: #e74c3c;  /* Rojo */
    --quaternary-color: #f1c40f;/* Amarillo */
}



.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) hue-rotate(160deg) saturate(1.5) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    align-self: flex-start;
    margin-top: 5vh;
}

.hero-section .hero-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.description-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.description-text {
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-section .row {
    row-gap: 10px;
}

.feature-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 30%, var(--primary-color) 100%);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    color: #333;
}

.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--quaternary-color) 100%);
    border-radius: 2px;
}

.getting-started-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.getting-started-section .row {
    row-gap: 10px;
}


.getting-started-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.getting-started-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.getting-started-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.getting-started-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.getting-started-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #333;
}

.getting-started-card .text-muted {
    flex-grow: 1;
}

.getting-started-btn {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--quaternary-color) 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    align-self: center;
}

.getting-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--quaternary-color);
    text-decoration: none;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.tutorial-focus {
    position: relative;
    z-index: 1051; /* Por encima de otros elementos */
    box-shadow: 0 0 0 4px rgba(59, 125, 221, 0.5); /* Color primario de ejemplo */
    animation: pulse-blue 2s infinite;
    border-radius: 0.25rem;
}

@keyframes pulse-blue {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 125, 221, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(59, 125, 221, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 125, 221, 0);
    }
}

.release-notes-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: zoom-in;
}
.info-icon {
    cursor: help;
    color: #0d6efd;
}

/* ===== DASHBOARD HERO v2 ===== */
.dashboard-hero {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.dashboard-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.4);
    will-change: transform;
}

.dashboard-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(33, 52, 75, 0.55) 0%,
        rgba(57, 180, 232, 0.15) 100%
    );
}

.dashboard-hero__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 260px;
    width: 60%;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
    will-change: transform, filter, opacity;
}

/* ===== QUICK ACTION CARDS ===== */
.quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid transparent;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-decoration: none;
    color: #333;
    width: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 220ms ease,
        box-shadow 260ms ease,
        border-color 220ms ease,
        background-color 220ms ease;
}

.quick-card:hover {
    text-decoration: none;
    color: #333;
}

.quick-card::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -45%;
    width: 52%;
    height: 160%;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.22) 45%,
        rgba(255,255,255,0.42) 50%,
        rgba(255,255,255,0.22) 55%,
        rgba(255,255,255,0) 100%
    );
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
    pointer-events: none;
    z-index: 0;
}

.quick-card:hover,
.quick-card:focus-visible {
    transform: translateY(-3px);
    box-shadow:
        0 10px 24px rgba(19, 42, 64, 0.14),
        0 0 0 1px rgba(57, 180, 232, 0.14);
    border-color: rgba(57, 180, 232, 0.28);
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
}

.quick-card:hover::before,
.quick-card:focus-visible::before {
    opacity: 1;
    animation: quickCardShine 900ms ease-out;
}

.quick-card:focus-visible {
    outline: 2px solid rgba(57, 180, 232, 0.5);
    outline-offset: 2px;
}

.quick-card__icon,
.quick-card__title,
.quick-card__subtitle,
.quick-card__arrow,
.quick-card__body {
    position: relative;
    z-index: 1;
}

.quick-card__icon,
.quick-card__arrow {
    transition: transform 220ms ease, filter 260ms ease;
}

.quick-card:hover .quick-card__icon,
.quick-card:focus-visible .quick-card__icon {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.14));
}

.quick-card:hover .quick-card__arrow,
.quick-card:focus-visible .quick-card__arrow {
    transform: translateX(2px);
}

@keyframes quickCardShine {
    0% {
        transform: translateX(-8%) skewX(-18deg);
        opacity: 0;
    }
    20% {
        opacity: 0.85;
    }
    100% {
        transform: translateX(280%) skewX(-18deg);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quick-card,
    .quick-card__icon,
    .quick-card__arrow {
        transition: none;
    }

    .quick-card:hover,
    .quick-card:focus-visible {
        transform: none;
    }

    .quick-card:hover::before,
    .quick-card:focus-visible::before {
        animation: none;
        opacity: 0;
    }
}

.quick-card--agency      { border-left-color: #6c757d; }
.quick-card--artist      { border-left-color: #FCB92C; }
.quick-card--occupations { border-left-color: #1CBB8C; }
.quick-card--budgets     { border-left-color: #3B7DDD; }
.quick-card--settings    { border-left-color: #6f42c1; }
.quick-card--profile     { border-left-color: #fd7e14; }

.quick-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.quick-card--agency .quick-card__icon      { background: #6c757d; }
.quick-card--artist .quick-card__icon      { background: #FCB92C; }
.quick-card--occupations .quick-card__icon { background: #1CBB8C; }
.quick-card--budgets .quick-card__icon     { background: #3B7DDD; }
.quick-card--settings .quick-card__icon    { background: #6f42c1; }
.quick-card--profile .quick-card__icon     { background: #fd7e14; }

.quick-card__body {
    flex: 1;
    min-width: 0;
}

.quick-card__title {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: #2b3a4b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-card__subtitle {
    display: block;
    font-size: 0.75rem;
    color: #8a93a2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-card__arrow {
    color: #ccc;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===== ONBOARDING BANNER ===== */
.onboarding-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    border: 1px solid #bee3f8;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .onboarding-banner {
        flex-wrap: wrap;
    }
    .onboarding-banner__action {
        width: 100%;
    }
}

.onboarding-banner__icon {
    width: 48px;
    height: 48px;
    background: #39b4e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.onboarding-banner__body {
    flex: 1;
}

.onboarding-banner__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #21344b;
    margin: 0 0 4px;
}

.onboarding-banner__text {
    font-size: 0.85rem;
    color: #5a6a7a;
    margin: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #21344b;
    margin: 0;
}

.section-header__badge {
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    line-height: 1.5;
}

.section-header__sub {
    margin-left: 2px;
}

/* ===== EVENTOS HERO ===== */
.eventos-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 2rem 1.5rem;
}

.eventos-hero__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 6px;
    line-height: 1.3;
}

.eventos-hero__sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== EVENTOS CTA ===== */
.eventos-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    border-radius: 10px;
    color: white;
}

.eventos-cta__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(57, 180, 232, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #39b4e8;
    flex-shrink: 0;
}

.eventos-cta__body {
    flex: 1;
    min-width: 0;
}

.eventos-cta__title {
    font-weight: 600;
    font-size: 0.88rem;
    margin: 0 0 2px;
}

.eventos-cta__sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.eventos-cta__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .eventos-cta {
        flex-wrap: wrap;
    }
    .eventos-cta__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ===== EVENT CARD (listing) ===== */
.event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 1;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.11);
}

.event-card__img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f0f3f7;
    overflow: hidden;
}

.event-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.event-card__date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(26, 26, 46, 0.85);
    color: white;
    border-radius: 8px;
    padding: 6px 9px;
    text-align: center;
    line-height: 1.1;
    backdrop-filter: blur(4px);
}

.event-card__date-day {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.event-card__date-month {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.75;
    margin-top: 3px;
}

.event-card__badges {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.event-card__body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card__artist {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
}

.event-card__meta {
    font-size: 0.78rem;
    color: #6c757d;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.event-card__meta i {
    width: 12px;
    flex-shrink: 0;
    color: #adb5bd;
    margin-top: 2px;
}

.event-card__cta {
    display: block;
    padding: 9px 14px;
    background: #f8f9fa;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3B7DDD;
    text-decoration: none;
    border-top: 1px solid #eee;
    transition: background 0.15s;
}

.event-card__cta:hover {
    background: #e8f0fd;
    color: #2a5fc8;
    text-decoration: none;
}

/* ===== EVENT DETAIL ===== */
.event-detail-img-wrap {
    aspect-ratio: 16 / 9;
    max-height: 340px;
    background: #f0f3f7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-detail-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 28px;
}

.event-dt {
    display: flex;
    gap: 12px;
}

.event-dt__block {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 16px;
    flex: 1;
}

.event-dt__icon {
    font-size: 1rem;
    color: #3B7DDD;
    flex-shrink: 0;
}

.event-dt__label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #adb5bd;
    line-height: 1;
    margin-bottom: 3px;
}

.event-dt__value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.event-location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-location-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #444;
}

.event-location-list li:last-child {
    border-bottom: none;
}

.event-location-list i {
    width: 18px;
    text-align: center;
    color: #3B7DDD;
    flex-shrink: 0;
}

.event-related-list .list-group-item:first-child {
    border-top: none;
}

/* ===== ARTISTAS HERO ===== */
.artistas-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.artistas-hero__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.artistas-hero__cta {
    margin-left: auto;
    flex-shrink: 0;
}

.artistas-hero__cta .btn {
    background: rgba(57, 180, 232, 0.12);
    border: 1px solid rgba(57, 180, 232, 0.40);
    color: #39b4e8;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.artistas-hero__cta .btn:hover {
    background: rgba(57, 180, 232, 0.25);
    border-color: rgba(57, 180, 232, 0.65);
    color: #fff;
}

.artistas-hero__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(57, 180, 232, 0.15);
    border: 1px solid rgba(57, 180, 232, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #39b4e8;
    flex-shrink: 0;
}

.artistas-hero__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 3px;
}

.artistas-hero__sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ===== ARTISTA CARD ===== */
.artista-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    background: #f7f9fb;
    border: 1px solid #e4e9f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* Obturador: mitad superior e inferior */
.artista-card::before,
.artista-card::after {
    content: '';
    width: 100%;
    height: 50%;
    background: rgba(33, 52, 75, 0.72);
    position: absolute;
    left: 0;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.32s ease;
}

.artista-card::before {
    top: 0;
    transform-origin: 100% 0;
    transform: rotateZ(90deg);
}

.artista-card::after {
    bottom: 0;
    transform-origin: 0 100%;
    transform: rotateZ(90deg);
}

.artista-card:hover::before,
.artista-card:hover::after {
    transform: rotateZ(0deg);
}

/* Enlace principal que cubre toda la imagen */
.artista-card__main-link {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

/* Imagen */
.artista-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.38s ease;
}

.artista-card:hover .artista-card__img {
    transform: scale(1.1);
}

/* Nombre (aparece al hover en la parte inferior) */
.artista-card__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 10px;
    left: 12px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transform: scale(0);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.artista-card:hover .artista-card__name {
    opacity: 1;
    transform: scale(1);
}

/* Panel de acciones (desliza desde arriba-derecha) */
.artista-card__actions {
    list-style: none;
    padding: 7px 6px;
    margin: 0;
    background: #21344b;
    border-radius: 0 0 0 10px;
    position: absolute;
    top: -100%;
    right: 0;
    z-index: 3;
    text-align: center;
    transition: top 0.3s ease 0.1s;
}

.artista-card:hover .artista-card__actions {
    top: 0;
}

.artista-card__actions li {
    display: block;
    margin: 7px 0;
}

.artista-card__actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.artista-card__actions a:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

/* ===== SOCIAL BUTTONS (detail pages) ===== */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
    flex-shrink: 0;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.88;
    color: white;
    text-decoration: none;
}

.social-btn--profile    { background: #21344b; }
.social-btn--web        { background: #6c757d; }
.social-btn--instagram  { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn--facebook   { background: #1877f2; }
.social-btn--youtube    { background: #ff0000; }
.social-btn--tiktok     { background: #010101; }
.social-btn--musica     { background: #1DB954; }
.social-btn--google     { background: #4285f4; }

@media (max-width: 575px) {
    .artista-card::before,
    .artista-card::after {
        display: none;
    }

    .artista-card__img {
        transform: none !important;
        padding-bottom: 48px;
    }

    .artista-card__name {
        opacity: 1;
        transform: scale(1);
        transition: none;
        background: linear-gradient(to top, rgba(33, 52, 75, 0.88) 0%, transparent 100%);
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px 10px 8px;
        font-size: 0.78rem;
    }
}

/* ===== OCUPACION PENDIENTE CARD ===== */
.ocp-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    border-top: 3px solid var(--color-reserva);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* Cabecera */
.ocp-card__header {
    padding: 14px 16px 10px;
    background: linear-gradient(135deg, #fffdf5 0%, #fff9e6 100%);
    border-bottom: 1px solid #f0e9d2;
    will-change: transform, opacity;
}

.ocp-card__header-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ocp-card__artist-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--color-reserva);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ocp-card__artist-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ocp-card__artist-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #21344b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.ocp-card__estado {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--color-reserva) !important;
    color: #fff !important;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

/* Variante pendiente: cabecera, icono y badge en gris */
.ocp-card--pendiente {
    border-top-color: var(--color-pendiente);
}

.ocp-card--pendiente .ocp-card__header {
    background: linear-gradient(135deg, #f2f4f6 0%, #e9edf1 100%);
    border-bottom-color: #d6dde3;
}

.ocp-card--pendiente .ocp-card__artist-icon,
.ocp-card--pendiente .ocp-card__estado {
    background: var(--color-pendiente) !important;
}

/* Cuerpo */
.ocp-card__body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    will-change: transform, opacity;
}

/* Bloque de fecha */
.ocp-card__date-block {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f8ff;
    border-radius: 8px;
    padding: 10px 12px;
}

.ocp-card__date-icon {
    font-size: 1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.ocp-card__date-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #21344b;
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Bloque de importe */
.ocp-card__importe-block {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0faf6;
    border-radius: 8px;
    padding: 8px 12px;
}

.ocp-card__importe-icon {
    font-size: 0.85rem;
    color: var(--color-ocupacion);
    flex-shrink: 0;
}

.ocp-card__importe-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-ocupacion);
    line-height: 1;
}

/* Separador */
.ocp-card__divider {
    margin: 4px 0;
    border-color: #f0f0f0;
    opacity: 1;
}

/* Lista de metadatos */
.ocp-card__meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ocp-card__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #5a6a7a;
    line-height: 1.4;
}

.ocp-card__meta-item--badges {
    align-items: center;
}

.ocp-card__meta-icon {
    width: 14px;
    text-align: center;
    color: #adb5bd;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.75rem;
}

.ocp-card__meta-item--badges .ocp-card__meta-icon {
    margin-top: 0;
}

/* Pie: CTA */
.ocp-card__footer {
    padding: 0;
    border-top: 1px solid #f0f0f0;
    will-change: transform, opacity;
}

.ocp-card__cta {
    display: block;
    padding: 10px 16px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3B7DDD;
    text-decoration: none;
    background: #f8f9fa;
    transition: background 0.15s, color 0.15s;
}

.ocp-card__cta:hover {
    background: #e8f0fd;
    color: #2a5fc8;
    text-decoration: none;
}

/* Ajuste del wrapper de carrusel para tarjetas sin altura fija */
#carrousel-lista-ocupaciones-pendientes .card-max-width {
    max-width: none;
}

#carrousel-lista-ocupaciones-pendientes .card {
    height: 100%;
}

.main-pending-occupations-block {
    padding-top: 20px !important;
}

/* ===== ERROR PAGES ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: radial-gradient(circle at top right, rgba(57, 180, 232, 0.18), transparent 42%),
                radial-gradient(circle at bottom left, rgba(33, 52, 75, 0.2), transparent 45%),
                linear-gradient(135deg, #f4f8fc 0%, #e9f1f9 100%);
}

.error-page__card {
    width: 100%;
    max-width: 760px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 52, 96, 0.16);
    overflow: hidden;
}

.error-page__hero {
    background: linear-gradient(135deg, #21344b 0%, #0f3460 100%);
    color: #fff;
    padding: 1.8rem 2rem;
}

.error-page__status {
    display: inline-block;
    margin-bottom: .5rem;
    padding: .3rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 700;
    letter-spacing: .06em;
}

.error-page__title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.error-page__body {
    padding: 1.5rem 2rem 2rem;
}

.error-page__lead {
    color: #415368;
    margin-bottom: 1.25rem;
}

.error-page__meta {
    font-size: .85rem;
    color: #71839a;
    background: #f4f8fc;
    border-radius: 10px;
    padding: .85rem 1rem;
}

.error-page__actions {
    margin-top: 1.5rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .error-page__hero,
    .error-page__body {
        padding: 1.25rem;
    }

    .error-page__title {
        font-size: 1.45rem;
    }
}

/* ===== EVENTOS HERO v2 - GSAP Enhanced ===== */
.eventos-hero-v2 {
    position: relative;
    height: 30vh;
    min-height: 200px;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eventos-hero-v2__img {
    position: absolute;
    inset: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    object-fit: cover;
    filter: brightness(0.5) saturate(1.3);
    will-change: transform;
}

.eventos-hero-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.75) 0%,
        rgba(15, 52, 96, 0.55) 50%,
        rgba(26, 26, 46, 0.65) 100%
    );
    z-index: 1;
}

.eventos-hero-v2__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 1rem 3rem;
    gap: 2rem;
}

.hero-left {
    flex: 0 0 33.333%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 1;
}

.hero-center {
    flex: 0 0 33.333%;
    text-align: center;
    opacity: 1;
}

.hero-right {
    flex: 0 0 33.333%;
    opacity: 1;
}

.hero-logo {
    width: auto;
    height: 180px;
    max-width: 480px;
    object-fit: contain;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.gsap-title-line1,
.gsap-title-line2 {
    display: block;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Filter Section - always visible */
.filter-section {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 100;
}

/* Ensure filter selects stack properly */
.filter-section .form-select,
.filter-section .choices {
    position: relative;
}

/* Each select in the filter row needs proper z-index - descending order */
.filter-section .row > div:nth-child(1) .choices,
.filter-section .row > div:nth-child(1) .form-select {
    z-index: 103;
}

.filter-section .row > div:nth-child(2) .choices,
.filter-section .row > div:nth-child(2) .form-select {
    z-index: 102;
}

.filter-section .row > div:nth-child(3) .choices,
.filter-section .row > div:nth-child(3) .form-select {
    z-index: 101;
}

/* Dropdowns must be above everything when open */
.filter-section .choices__list--dropdown,
.filter-section .choices__list--dropdown.is-active {
    z-index: 9999 !important;
}

.filter-section .choices.is-open {
    z-index: 9998;
}

/* Mobile specific - ensure dropdowns work */
@media (max-width: 768px) {
    .filter-section .choices__list--dropdown {
        position: absolute !important;
        z-index: 9999 !important;
    }
}

/* Eventos Grid for Stagger */
.eventos-grid {
    /* Container for staggered animations */
    position: relative;
    z-index: 1;
}

/* Enhanced Event Card for GSAP */
.eventos-grid .event-card {
    will-change: transform, opacity;
}

/* Event cards visible by default */
.eventos-grid .gsap-event-card {
    opacity: 1;
    transform: translateY(0);
}

/* Only hide for animation if GSAP loaded successfully */
.gsap-loaded .eventos-grid .gsap-event-card {
    opacity: 0;
    transform: translateY(30px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .eventos-hero-v2 {
        height: 25vh;
        min-height: 180px;
    }

    .eventos-hero-v2__content {
        flex-direction: column;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        gap: 0.75rem;
    }

    .hero-left,
    .hero-center,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-left {
        justify-content: center;
    }

    .hero-logo {
        height: 80px;
        max-width: 220px;
        margin-bottom: 0.25rem;
    }

    .gsap-title-line1,
    .gsap-title-line2 {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }
}

/* Reduced Motion Support - only for scroll animations */
@media (prefers-reduced-motion: reduce) {
    .eventos-hero-v2__img {
        transform: none !important;
    }

    .eventos-grid .gsap-event-card,
    .gsap-loaded .eventos-grid .gsap-event-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
    .eventos-hero-v2__img {
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none !important;
        transition: none !important;
    }
}

/* ===== LANDING /info REDESIGN ===== */
.seo-h1 { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.info-landing { --info-ink: #13233c; --info-muted: #56627a; --info-brand: #14a9e2; background: linear-gradient(180deg, #08101f 0%, #0f1f39 28%, #eef4fb 28%, #f6f9fd 100%); color: var(--info-ink); }
.info-hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.info-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); filter: saturate(1.15) contrast(1.05) brightness(0.42); transition: transform 350ms ease-out; }
.info-hero__veil { position: absolute; inset: 0; background: radial-gradient(circle at 75% 10%, rgba(20, 169, 226, 0.35), transparent 43%), linear-gradient(160deg, rgba(5, 8, 20, 0.75) 0%, rgba(8, 21, 44, 0.92) 70%); }
.info-hero__content { position: relative; z-index: 1; padding-top: 7.2rem; padding-bottom: 5rem; }
.info-hero__logo { display: block; max-width: 330px; width: 86%; margin-bottom: 2rem; filter: drop-shadow(0 14px 36px rgba(0,0,0,.45)); }
.info-kicker { color: #c6e9f6; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .8rem; margin-bottom: 1.15rem; }
.info-hero__title { color: #f8fbff; font-size: clamp(2rem, 5vw, 3.65rem); font-weight: 800; line-height: 1.08; max-width: 12ch; margin-bottom: 1rem; }
.info-hero__lead { color: #dce8f6; font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 62ch; }
.info-opportunities { padding: 5rem 0 5.5rem; background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%); }
.info-opportunity-card { border: 1px solid rgba(15, 53, 99, .08); border-radius: 1.25rem; overflow: hidden; height: 100%; background: rgba(255,255,255,.96); box-shadow: 0 18px 42px rgba(14, 33, 64, .08); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease; }
.info-opportunity-card:hover { transform: translateY(-8px); box-shadow: 0 22px 54px rgba(11, 40, 78, .14); border-color: rgba(20, 169, 226, .28); }
.info-opportunity-card__icon { height: 92px; display: grid; place-items: center; font-size: 1.9rem; color: #fff; background: linear-gradient(125deg, #0f3965 10%, #1695d6 60%, #4ed4ff 100%); }
.info-opportunity-card .card-body { padding: 1.25rem 1.2rem 1.4rem; }
.info-opportunity-card__title { color: #11294d; font-size: 1.25rem; font-weight: 800; margin-bottom: .7rem; }
.info-opportunity-card__text { color: #4a5d77; line-height: 1.7; }
.info-section { padding: 4.4rem 0; background: #ffffff; }
.info-section--alt { background: linear-gradient(180deg, transparent 0%, rgba(9, 37, 75, .05) 100%); }
.info-landing .section-title { color: #11294d; margin-bottom: 2.6rem; font-weight: 800; }
.info-card { border: 1px solid rgba(15, 53, 99, .08); border-radius: 1rem; overflow: hidden; height: 100%; background: #fff; box-shadow: 0 14px 34px rgba(14, 33, 64, 0.08); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease; }
.info-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(11, 40, 78, .16); border-color: rgba(20, 169, 226, .32); }
.info-card__icon { height: 96px; display: grid; place-items: center; font-size: 2rem; background: linear-gradient(125deg, #0f3965 10%, #1695d6 60%, #4ed4ff 100%); color: #fff; }
.info-card .card-body { padding: 1.2rem 1rem 1.35rem; }
.info-card .text-muted { color: var(--info-muted) !important; }
.info-card--highlight .info-card__icon { background: linear-gradient(125deg, #163e66 0%, #2f8bc6 55%, #f7b733 135%); }
.info-card--highlight .card-body .btn { display: inline-flex; align-items: center; justify-content: center; margin: .8rem auto 0; }
.info-step .info-cta { margin-top: auto; align-self: center; border-radius: 999px; background: linear-gradient(130deg, #ff8e2f 0%, #f7b733 100%); color: #1c2230; padding: .55rem 1rem; font-weight: 700; text-decoration: none; }
.info-step .info-cta:hover { transform: translateY(-2px); color: #111; }
.info-card .btn { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; margin-right: auto; }
.info-pricing { background: #fff; }
.info-pricing__subtitle { text-align: center; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #122f56; }
.info-price-card { border: 1px solid rgba(10, 44, 84, .1); border-radius: 1rem; box-shadow: 0 14px 34px rgba(14, 33, 64, .08); }
.info-price-card--featured { border: 2px solid rgba(20,169,226,.45); transform: translateY(-5px); }
.info-price { font-size: 2.4rem; font-weight: 800; color: #10345d; margin: 0; }
.info-price span { font-size: 1rem; color: #56708f; font-weight: 500; }
.info-list li { position: relative; padding-left: 1.2rem; margin-bottom: .52rem; color: #394c67; }
.info-list li::before { content: ""; width: .46rem; height: .46rem; border-radius: 50%; background: var(--info-brand); position: absolute; left: .06rem; top: .55rem; }
.info-faq-card { border-radius: .85rem; border: 1px solid rgba(14,45,84,.1); }
.info-faq-card .card-body { padding: 1.2rem; }
.info-contact { background: linear-gradient(125deg, #0d2546 0%, #133f6f 100%); color: #fff; }
.info-contact .section-title { color: #fff; }
.info-contact-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 1rem; padding: 1.4rem; backdrop-filter: blur(8px); }
.info-contact-card { text-align: center; }
.info-contact-card p { margin: 0; display: flex; gap: .6rem; align-items: center; }
.info-contact-card p { justify-content: center; }
.info-about { background: #f6f9fd; }
.info-about__content { max-width: 860px; margin: 0 auto; color: #304968; font-size: 1.07rem; line-height: 1.78; }
.info-footer { background: #0d1d35; color: #d5dfec; padding: 2.2rem 0; }
.info-footer .text-muted { color: #b4c1d1 !important; }
.info-ccaa { background: linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%); }
.info-ccaa__intro { max-width: 780px; margin: -1rem auto 1.8rem; color: #49617f; }
.info-ccaa__map-card { background: #fff; border: 1px solid rgba(10,44,84,.12); border-radius: 1rem; box-shadow: 0 16px 34px rgba(10,34,64,.11); overflow: hidden; }
.info-ccaa__map { min-height: 480px; width: 100%; }
.info-ccaa__panel { background: linear-gradient(155deg, #0d2a4d 0%, #134c79 100%); color: #e9f3fb; border-radius: 1rem; padding: 1.4rem 1.2rem; height: 100%; box-shadow: 0 16px 34px rgba(10,34,64,.2); }
.info-ccaa__panel-kicker { margin: 0; text-transform: uppercase; font-size: .75rem; letter-spacing: .09em; color: #a8d3ea; }
.info-ccaa__panel-title { margin: .45rem 0 .55rem; font-size: 1.45rem; font-weight: 800; color: #fff; }
.info-ccaa__panel-help { margin: 0 0 1rem; color: #d1e6f5; }
.info-ccaa__metrics { margin: 0; display: grid; gap: .85rem; }
.info-ccaa__metrics div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: .7rem; padding: .75rem .8rem; }
.info-ccaa__metrics dt { font-size: .86rem; color: #b6d8ec; margin: 0; }
.info-ccaa__metrics dd { margin: .2rem 0 0; font-size: 1.55rem; font-weight: 800; color: #fff; }
.info-activity { background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%); }
.info-activity__intro { max-width: 820px; margin: -0.8rem auto 1.8rem; color: #4f6483; }
.info-activity-card { height: 100%; background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%); border: 1px solid rgba(16, 58, 105, .12); border-radius: 1rem; padding: 1.2rem 1.1rem; box-shadow: 0 14px 34px rgba(14, 33, 64, 0.08); transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.info-activity-card:hover { transform: translateY(-6px); border-color: rgba(20, 169, 226, .32); box-shadow: 0 18px 42px rgba(10, 34, 64, .14); }
.info-activity-card h3 { margin: 0 0 .7rem; color: #1c3f68; font-size: 1.02rem; font-weight: 700; text-align: center; }
.info-activity-card__value { margin: 0; color: #0f2f56; font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; line-height: 1.05; text-align: center; }
[data-reveal] { opacity: 0; transform: translate3d(0, 30px, 0) scale(.985); filter: blur(6px); transition: opacity .68s cubic-bezier(.22,.61,.36,1), transform .68s cubic-bezier(.22,.61,.36,1), filter .68s ease; transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-revealed { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal], [data-reveal].is-revealed { transition: none !important; transform: none !important; filter: none !important; opacity: 1 !important; } }
@media (max-width: 992px) { .info-hero { min-height: 78vh; } .info-hero__content { padding-top: 7.6rem; } .info-price-card--featured { transform: none; } .info-ccaa__map { min-height: 420px; } }
@media (max-width: 576px) { .info-section { padding: 3.2rem 0; } .info-hero__content { padding-top: 6.2rem; } .info-hero__logo { margin-left: auto; margin-right: auto; max-width: 290px; width: 92%; margin-bottom: 1.5rem; } .info-hero__title { max-width: 100%; } .info-intro__panel { margin-top: -1.2rem; } .info-opportunities { padding: 4rem 0 4.6rem; } .info-ccaa__map { min-height: 340px; } }
