/* ==========================================================================
   FEPRO 2026 - ¡Dónde la Tecnología da Vida a las Ideas!
   ==========================================================================
   Autor: Team Registro
   Fecha: Marzo 2026
   Descripción: Hoja de estilos personalizada para la edición 2026 de Fepro.
   ===========================================================================
*/

/*
 * --------------------------------------------------------------------------
 * header.php
 * --------------------------------------------------------------------------
*/

/* mostrar "Iniciar Sesion" solo en el menu movil clonado por JS */
.main-menu .navigation > li.mobile-login-item {
    display: none;
}

.mobile-menu .navigation > li.mobile-login-item {
    display: block;
}



/*
 * --------------------------------------------------------------------------
 * faqs.php
 * --------------------------------------------------------------------------
*/

/* ===== HERO ===== */
.fepro-page-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.fepro-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: brightness(0.7);
}

.fepro-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 5, 30, 0.3) 0%,
        rgba(10, 5, 30, 0.55) 40%,
        rgba(10, 5, 30, 0.82) 100%
    );
}

.fepro-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

.fepro-hero-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.fepro-hero-label a {
    color: #08D9F7;
    text-decoration: none;
}

.fepro-hero-label a:hover {
    color: #fff;
}

.fepro-hero-label span {
    color: rgba(255,255,255,0.55);
}

.fepro-hero-title {
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
    text-transform: uppercase;

    /* Opción 1: Solo blanco */
    /* color: #ffffff; */
    /* -webkit-text-fill-color: #ffffff; */

    /* Opción 2: Degradado blanco → cyan (activo) */
    background: linear-gradient(to right, #ffffff 30%, #7ee8f5 70%, #08D9F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}




@media (max-width: 767px) {
    .fepro-hero-content { padding: 0 24px; }
    .fepro-hero-title { -webkit-text-stroke: 1.5px rgba(255,255,255,0.9); }
    .fepro-page-hero { height: 300px; padding-bottom: 32px; }
}


/* ===== TITULO FAQ EN GFRANDOTE ===== */
.fepro-title-accent {
    color: #535AE2;
    -webkit-text-fill-color: #535AE2;
    background: none;
}

/* FAQ Section: reducir padding y fondo sutil */
.faq-section {
    padding: 70px 0 50px !important;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 50%, #fff0f8 100%);
}

/* FAQ Form Section: reducir padding */
.faq-form-section {
    padding: 60px 0 70px !important;
}

/* Acordeones estilo imagen 4: redondeados */
.fepro-accordion .block {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(83, 90, 226, 0.08);
    margin-bottom: 16px;
    border: 1.5px solid #ede8ff;
}

.fepro-accordion .block .acc-btn {
    background: #f3f0ff;
    color: #1e1f36;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    padding: 18px 50px 18px 22px;
}

.fepro-accordion .block .acc-btn .icon-outer {
    color: #535AE2;
}

.fepro-accordion .block .acc-btn:hover {
    background: #ebe5ff;
}

.fepro-accordion .block .acc-btn.active {
    background: linear-gradient(135deg, #535AE2, #851CB7);
    color: #ffffff;
    border-radius: 14px 14px 0 0;
}

.fepro-accordion .block .acc-btn.active .icon-outer {
    color: #ffffff;
}

.fepro-accordion .block .acc-content {
    border: none;
    border-top: 1.5px solid #ede8ff;
    border-radius: 0 0 14px 14px;
}

.fepro-accordion .block .content .text {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}
/*
 * --------------------------------------------------------------------------
 * Acerca-de.php
 * --------------------------------------------------------------------------
*/

/* ===== ABOUT SECTION ===== */
.fepro-about-section {
    padding: 80px 0 70px;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 50%, #fff0f8 100%);
}

.fepro-about-content {
    padding-right: 40px;
}

.fepro-about-text p {
    color: #555555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.fepro-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.fepro-tag {
    background: #f3f0ff;
    border: 1.5px solid #ede8ff;
    color: #535AE2;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
}

.fepro-tag i {
    margin-right: 6px;
    color: #851CB7;
}

/* ===== COLLAGE ===== */
.fepro-collage {
    padding-left: 20px;
}

.fepro-collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
    gap: 12px;
}

.fepro-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fepro-collage-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(83, 90, 226, 0.18);
}

.fepro-collage-item.tall {
    grid-row: span 2;
}

.fepro-collage-item.wide {
    grid-column: span 2;
}
.fepro-about-text p {
    text-align: justify;
}
@media (max-width: 767px) {
    .fepro-about-text p {
        text-align: left;
    }
}


@media (max-width: 991px) {
    .fepro-about-content { padding-right: 0; margin-bottom: 40px; }
    .fepro-collage { padding-left: 0; }
    .fepro-collage-grid {
        grid-template-rows: 180px 150px;
    }
}

/* ===== FEATURES SECTION ===== */
.fepro-features-section {
    padding: 80px 0 70px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.fepro-features-bg-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(83,90,226,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.fepro-features-row {
    margin-top: 48px;
}

.fepro-feature-card {
    background: #ffffff;
    border: 1.5px solid #ede8ff;
    border-radius: 20px;
    padding: 36px 28px 28px;
    margin-bottom: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.fepro-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(83, 90, 226, 0.13);
    border-color: #535AE2;
}

.fepro-feature-card--highlight {
    background: linear-gradient(135deg, #535AE2 0%, #851CB7 100%);
    border-color: transparent;
}

.fepro-feature-card--highlight h4,
.fepro-feature-card--highlight p {
    color: #ffffff !important;
}

.fepro-feature-card--highlight .fepro-feature-icon span {
    color: rgba(255,255,255,0.9) !important;
}

.fepro-feature-card--highlight .fepro-feature-line {
    background: rgba(255,255,255,0.3) !important;
}

.fepro-feature-icon {
    margin-bottom: 20px;
}

.fepro-feature-icon span {
    font-size: 40px;
    color: #535AE2;
}

.fepro-feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e1f36;
    margin-bottom: 12px;
}

.fepro-feature-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.fepro-feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #535AE2, #851CB7);
    border-radius: 0 0 20px 20px;
    transition: width 0.4s ease;
}

.fepro-feature-card:hover .fepro-feature-line {
    width: 100%;
}

/* ===== EVENT INFO + MAPA ===== */
.fepro-eventinfo-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 100%);
}

.fepro-eventinfo-content {
    padding-right: 40px;
    height: 100%;
}

.fepro-tab-btns {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 28px 0 24px;
    flex-wrap: wrap;
}

.fepro-tab-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: #f3f0ff;
    color: #535AE2;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #ede8ff;
    transition: all 0.3s ease;
}

.fepro-tab-btn i {
    margin-right: 6px;
}

.fepro-tab-btn:hover,
.fepro-tab-btn.active-btn {
    background: linear-gradient(135deg, #535AE2, #851CB7);
    color: #ffffff;
    border-color: transparent;
}

.fepro-tab {
    display: none;
}

.fepro-tab.active-tab {
    display: block;
}

.fepro-tab h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e1f36;
    margin-bottom: 12px;
}

.fepro-tab h4 i {
    color: #535AE2;
    margin-right: 8px;
}

.fepro-tab-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.fepro-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fepro-info-list li {
    color: #555555;
    font-size: 14px;
    margin-bottom: 10px;
}

.fepro-info-list li i {
    color: #535AE2;
    margin-right: 8px;
}

.fepro-info-list a {
    color: #535AE2;
    text-decoration: none;
}

.fepro-info-list a:hover {
    color: #851CB7;
}

.fepro-map-outer {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(83, 90, 226, 0.12);
    height: 100%;
    min-height: 420px;
}

.fepro-map-outer iframe {
    border-radius: 20px;
}

@media (max-width: 991px) {
    .fepro-eventinfo-content { padding-right: 0; margin-bottom: 40px; }
}
/* ===== TÍTULOS ACERCA DE ===== */
.fepro-about-section .sec-title h2,
.fepro-features-section .sec-title h2,
.fepro-eventinfo-section .sec-title h2 {
    color: #1e1f36;
    -webkit-text-fill-color: #1e1f36;
}

.fepro-about-section .sec-title .title,
.fepro-features-section .sec-title .title,
.fepro-eventinfo-section .sec-title .title {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.fepro-about-section .sec-title .title::after,
.fepro-features-section .sec-title .title::after,
.fepro-eventinfo-section .sec-title .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #535AE2, #851CB7);
    border-radius: 2px;
}
.fepro-features-section .sec-title {
    display: block !important;
}

.fepro-features-section .sec-title .title {
    display: block !important;
    margin-bottom: 10px;
}
.fepro-feature-card--highlight {
    background: #f3f0ff !important;
    border-color: #535AE2 !important;
    border-width: 2px !important;
}

.fepro-feature-card--highlight h4,
.fepro-feature-card--highlight p {
    color: inherit !important;
}

.fepro-feature-card--highlight .fepro-feature-icon span {
    color: #535AE2 !important;
}

.fepro-feature-card--highlight .fepro-feature-line {
    background: linear-gradient(90deg, #535AE2, #851CB7) !important;
}

/*
 * --------------------------------------------------------------------------
 * Convocatoria.php
 * --------------------------------------------------------------------------
*/

/* ===== INTRO OSCURA ===== */
.conv-intro-section {
    background: linear-gradient(135deg, #0d0e2a 0%, #1a1040 50%, #0d0e2a 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.conv-intro-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
}

.conv-intro-glow--left {
    background: radial-gradient(circle, rgba(83,90,226,0.2) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.conv-intro-glow--right {
    background: radial-gradient(circle, rgba(133,28,183,0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.conv-intro-label {
    display: inline-block;
    background: rgba(83,90,226,0.2);
    border: 1px solid rgba(83,90,226,0.4);
    color: #08D9F7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.conv-intro-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.conv-intro-slogan {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-bottom: 24px;
}

.conv-intro-text {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    margin-bottom: 36px;
}

.conv-intro-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.conv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.conv-btn-outline:hover {
    border-color: #535AE2;
    color: #ffffff;
    background: rgba(83,90,226,0.15);
}

.conv-btn-outline i {
    color: #535AE2;
}

/* Stats box */
.conv-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.conv-stat-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.conv-stat-item:hover {
    border-color: rgba(83,90,226,0.5);
}

.conv-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #535AE2, #08D9F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.conv-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .conv-intro-stats { margin-top: 40px; }
}

/* ===== CATEGORÍAS ===== */
.conv-cats-section {
    padding: 80px 0 70px;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 60%, #fff0f8 100%);
}

.conv-cats-row {
    margin-top: 48px;
    gap: 0;
}

.conv-cat-card {
    border-radius: 24px;
    padding: 44px 36px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 28px;
}

.conv-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(83,90,226,0.15);
}

.conv-cat-card--a {
    background: linear-gradient(135deg, #0d0e2a 0%, #1e1060 100%);
    border: 1.5px solid rgba(83,90,226,0.3);
}

.conv-cat-card--b {
    background: linear-gradient(135deg, #1a0530 0%, #2d0d50 100%);
    border: 1.5px solid rgba(133,28,183,0.3);
}

.conv-cat-badge {
    display: inline-block;
    background: rgba(83,90,226,0.25);
    border: 1px solid rgba(83,90,226,0.5);
    color: #08D9F7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.conv-cat-badge--b {
    background: rgba(133,28,183,0.25);
    border-color: rgba(133,28,183,0.5);
    color: #d78bff;
}

.conv-cat-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.conv-cat-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 28px;
}

.conv-cat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.conv-cat-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 10px;
}

.conv-cat-list li i {
    color: #535AE2;
    width: 16px;
    flex-shrink: 0;
}

.conv-cat-card--b .conv-cat-list li i {
    color: #d78bff;
}

.conv-cat-footer {
    padding-top: 20px;
}

/* Asegura espacio entre el footer y el botón dentro de las tarjetas de categoría */
.conv-cat-card .conv-btn-outline {
    margin-top: 18px;
}

.conv-cat-date {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.conv-cat-date i {
    margin-right: 6px;
    color: #535AE2;
}

/* ===== FASES / STEPPER ===== */
.conv-fases-section {
    padding: 80px 0 70px;
    background: #ffffff;
}

.conv-fase-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.conv-fase-tab-btn {
    padding: 12px 32px;
    border-radius: 50px;
    background: #f3f0ff;
    color: #535AE2;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid #ede8ff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.conv-fase-tab-btn:hover,
.conv-fase-tab-btn.active-btn {
    background: linear-gradient(135deg, #535AE2, #851CB7);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(83,90,226,0.3);
}

.conv-fases-content {
    display: none;
}

.conv-fases-content.active-tab {
    display: block;
}

/* Stepper vertical */
.conv-stepper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.conv-step {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
    position: relative;
}

.conv-step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #535AE2, #851CB7);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(83,90,226,0.3);
    margin-top: 4px;
}

.conv-step-number--event {
    background: linear-gradient(135deg, #08D9F7, #535AE2);
    font-size: 11px;
    box-shadow: 0 4px 20px rgba(8,217,247,0.4);
}

.conv-step-line {
    position: absolute;
    left: 25px;
    top: 56px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(to bottom, rgba(83,90,226,0.3), rgba(133,28,183,0.1));
    z-index: 1;
}

.conv-step:last-child .conv-step-line {
    display: none;
}

.conv-step-card {
    background: #ffffff;
    border: 1.5px solid #ede8ff;
    border-radius: 16px;
    padding: 24px 28px;
    flex: 1;
    margin-bottom: 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.conv-step-card:hover {
    border-color: #535AE2;
    box-shadow: 0 8px 28px rgba(83,90,226,0.1);
}

.conv-step-card--event {
    background: linear-gradient(135deg, #0d0e2a, #1a1040);
    border-color: rgba(83,90,226,0.4);
}

.conv-step-card--event h4,
.conv-step-card--event p {
    color: #ffffff !important;
}

.conv-step-card--event p strong {
    color: #08D9F7;
}

.conv-step-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #535AE2;
    background: #f3f0ff;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.conv-step-card--event .conv-step-date {
    background: rgba(83,90,226,0.2);
    color: #08D9F7;
}

.conv-step-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e1f36;
    margin-bottom: 8px;
}

.conv-step-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 575px) {
    .conv-step { gap: 16px; }
    .conv-step-card { padding: 18px 20px; }
}

/* ===== KIT Y CUOTA ===== */
.conv-kit-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.conv-kit-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(83,90,226,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.conv-kit-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 8px;
}

.conv-kit-text a {
    color: #535AE2;
    text-decoration: none;
    font-weight: 600;
}

.conv-kit-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.conv-kit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1.5px solid #ede8ff;
    border-radius: 16px;
    padding: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.conv-kit-item:hover {
    border-color: #535AE2;
    box-shadow: 0 6px 20px rgba(83,90,226,0.1);
}

.conv-kit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #535AE2, #851CB7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conv-kit-icon i {
    color: #ffffff;
    font-size: 18px;
}

.conv-kit-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1e1f36;
    margin-bottom: 4px;
}

.conv-kit-info p {
    font-size: 13px;
    color: #888888;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 575px) {
    .conv-kit-items { grid-template-columns: 1fr; }
}

/* ===== PDF SECTION ===== */
.conv-pdf-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #0d0e2a 0%, #1a1040 100%);
}

.conv-pdf-box {
    max-width: 560px;
    margin: 0 auto;
}

.conv-pdf-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(83,90,226,0.2);
    border: 2px solid rgba(83,90,226,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.conv-pdf-icon i {
    font-size: 36px;
    color: #535AE2;
}

.conv-pdf-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.conv-pdf-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 28px;
}

.conv-pdf-box .theme-btn i {
    margin-right: 8px;
}
.conv-step-card--event h4 i {
    color: #08D9F7;
    margin-right: 8px;
}
.conv-fases-section {
    padding-bottom: 40px;
}
.conv-cats-row {
    gap: 24px 0;
}

/* ============================================
   REGISTROS - PÁGINA DE SELECCIÓN
   ============================================ */

.registros-section {
    position: relative;
    background: #0d0d1a;
    padding: 80px 0 100px;
    overflow: hidden;
}

/* Orbes animados */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 {
    width: 400px; height: 400px;
    background: #a020f0;
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.orb-2 {
    width: 350px; height: 350px;
    background: #e8317a;
    bottom: -80px; right: -80px;
    animation-delay: 2s;
}
.orb-3 {
    width: 250px; height: 250px;
    background: #3b82f6;
    top: 50%; left: 50%;
    margin-left: -125px;
    margin-top: -125px;
    animation-delay: 4s;
}
@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-30px) scale(1.08); }
}

/* Título de sección */
.registros-section .title {
    color: #ffffff !important;
}

/* Wrapper de animación */
.reg-card-wrap {
    opacity: 0;
    transform: translateY(40px);
    animation: cardIn 0.6s ease forwards;
}
.col-lg-4:nth-child(1) .reg-card-wrap { animation-delay: 0.1s; }
.col-lg-4:nth-child(2) .reg-card-wrap { animation-delay: 0.25s; }
.col-lg-4:nth-child(3) .reg-card-wrap { animation-delay: 0.4s; }

@keyframes cardIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Card base */
.reg-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 40px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.reg-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}
.cat-a::before     { background: linear-gradient(90deg, #a020f0, #7b2ff7); }
.cat-b::before     { background: linear-gradient(90deg, #e8317a, #ff6b9d); }
.cat-locked::before { background: rgba(255,255,255,0.1); }

.reg-card:hover {
    transform: translateY(-10px);
}
.cat-a:hover {
    border-color: #a020f0;
    box-shadow: 0 20px 60px rgba(160,32,240,0.25);
}
.cat-b:hover {
    border-color: #e8317a;
    box-shadow: 0 20px 60px rgba(232,49,122,0.25);
}
.cat-locked {
    opacity: 0.5;
    border-color: rgba(255,255,255,0.06);
}
.cat-locked:hover {
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

/* Ícono */
.reg-card .card-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}
.cat-a .card-icon     { background: rgba(160,32,240,0.2);  color: #a020f0; }
.cat-b .card-icon     { background: rgba(232,49,122,0.2);  color: #e8317a; }
.cat-locked .card-icon { background: rgba(255,255,255,0.08); color: #adb5bd; }

/* Textos */
.reg-card .card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cat-a .card-tag     { color: #a020f0; }
.cat-b .card-tag     { color: #e8317a; }
.cat-locked .card-tag { color: #adb5bd; }

.reg-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.cat-locked h3 { color: #888; }

.reg-card .card-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.reg-card hr {
    border-color: rgba(255,255,255,0.08);
    margin: 18px 0;
}
.reg-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 16px;
}
.reg-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}
.reg-card ul li {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding: 5px 0 5px 20px;
    position: relative;
}
.reg-card ul li::before {
    content: '✓';
    position: absolute; left: 0;
    font-weight: 700;
}
.cat-a ul li::before     { color: #a020f0; }
.cat-b ul li::before     { color: #e8317a; }
.cat-locked ul li::before { color: #555; }

/* Botones */
.reg-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
}
.btn-cat-a { background: linear-gradient(135deg, #a020f0, #7b2ff7); color: #fff; }
.btn-cat-a:hover { background: linear-gradient(135deg, #b44af5, #9050f9); color: #fff; text-decoration: none; }
.btn-cat-b { background: linear-gradient(135deg, #e8317a, #ff6b9d); color: #fff; }
.btn-cat-b:hover { background: linear-gradient(135deg, #f0508e, #ff85b0); color: #fff; text-decoration: none; }
.btn-locked { background: rgba(255,255,255,0.07); color: #666; cursor: not-allowed; }
/* Fix títulos sobre fondo oscuro */
.registros-section .sub-title.orange {
    color: #e8317a !important;
}
.registros-section .title {
    color: #ffffff !important;
}
/* Fix contraste títulos sobre fondo oscuro en registros */
.registros-section .sec-title h2 {
    color: #ffffff !important;
}
.registros-section .sec-title .text {
    color: rgba(255, 255, 255, 0.6) !important;
}
/* ============================================
   PATROCINADORES - PÁGINA COMPLETA
   ============================================ */

/* ── SECCIÓN 1: CTA ── */
.spons-cta-section {
    background: #f0f0f8;
    padding: 40px 0 80px;;
}
.spons-cta-card {
    background: #ffffff;
    border: 1px solid rgba(160,32,240,0.12);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(160,32,240,0.08);
}
.spons-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a020f0, #e8317a);
}
.spons-cta-badge {
    display: inline-block;
    background: rgba(232,49,122,0.08);
    border: 1px solid rgba(232,49,122,0.2);
    color: #e8317a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.spons-cta-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}
.spons-cta-title span {
    background: linear-gradient(135deg, #a020f0, #e8317a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.spons-cta-text {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.spons-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.spons-cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(160,32,240,0.1);
}
.spons-stat { text-align: center; }
.spons-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a020f0, #e8317a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.spons-stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── SECCIÓN 2: PLATINO ── */
.spons-platino-section {
    background: #ffffff;
    padding: 80px 0;
}
.spons-platino-grid { margin-top: 40px; }

.spons-platino-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f5f4fc;
    border: 1px solid rgba(160,32,240,0.12);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}
.spons-platino-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a020f0, #e8317a);
}
.spons-platino-card:hover {
    box-shadow: 0 20px 60px rgba(160,32,240,0.12);
    transform: translateY(-4px);
}
.spons-platino-logo {
    flex-shrink: 0;
    width: 220px; height: 160px;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed rgba(160,32,240,0.2);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.spons-platino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.spons-placeholder-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(160,32,240,0.25);
}
.spons-placeholder-logo i { font-size: 36px; }
.spons-placeholder-logo span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.spons-platino-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.spons-platino-desc p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}
.spons-platino-redes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.spons-red-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(160,32,240,0.08);
    border: 1px solid rgba(160,32,240,0.15);
    color: #a020f0;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.spons-red-btn:hover {
    background: #a020f0;
    color: #fff;
    text-decoration: none;
}
.spons-platino-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a020f0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.spons-platino-link:hover { color: #e8317a; text-decoration: none; }

/* ── SECCIÓN 3: CAROUSEL 3D ── */
.spons-carousel-section {
    background: #f5f4fc;
    padding: 80px 0;
    overflow: hidden;
}
.spons-3d-scene {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    margin-top: 40px;
}
.spons-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spons-3d-card {
    position: absolute;
    width: 200px;
    background: #ffffff;
    border: 1px solid rgba(160,32,240,0.12);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(160,32,240,0.06);
}
.spons-3d-card--center {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 5;
    border-color: rgba(160,32,240,0.3);
    box-shadow: 0 16px 50px rgba(160,32,240,0.15);
}
.spons-3d-card--left1 {
    transform: translateX(-240px) translateZ(-80px) rotateY(15deg) scale(0.9);
    opacity: 0.7;
    z-index: 4;
}
.spons-3d-card--left2 {
    transform: translateX(-430px) translateZ(-160px) rotateY(25deg) scale(0.75);
    opacity: 0.4;
    z-index: 3;
}
.spons-3d-card--right1 {
    transform: translateX(240px) translateZ(-80px) rotateY(-15deg) scale(0.9);
    opacity: 0.7;
    z-index: 4;
}
.spons-3d-card--right2 {
    transform: translateX(430px) translateZ(-160px) rotateY(-25deg) scale(0.75);
    opacity: 0.4;
    z-index: 3;
}
.spons-3d-logo {
    width: 80px; height: 80px;
    background: #f0f0f8;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: rgba(160,32,240,0.3);
    margin: 0 auto 16px;
    overflow: hidden;
}
.spons-3d-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 10px;
}
.spons-3d-name {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-weight: 600;
}
.spons-3d-prev,
.spons-3d-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid rgba(160,32,240,0.2);
    color: #a020f0;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(160,32,240,0.1);
}
.spons-3d-prev:hover,
.spons-3d-next:hover {
    background: #a020f0;
    color: #fff;
    border-color: #a020f0;
}
.spons-3d-prev { left: 20px; }
.spons-3d-next { right: 20px; }

/* ── SECCIÓN 4: COMUNIDAD ── */
.spons-comunidad-section {
    background: #ffffff;
    padding: 80px 0;
}
.spons-comunidad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.spons-comunidad-item { transition: transform 0.3s ease; }
.spons-comunidad-item:hover { transform: translateY(-5px); }

.spons-comunidad-logo {
    background: #f5f4fc;
    border: 1px solid rgba(160,32,240,0.1);
    border-radius: 16px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(160,32,240,0.3);
    font-size: 22px;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 16px;
}
.spons-comunidad-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.spons-comunidad-logo span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bbb;
}
.spons-comunidad-item:hover .spons-comunidad-logo {
    border-color: rgba(160,32,240,0.3);
    background: rgba(160,32,240,0.04);
    box-shadow: 0 8px 25px rgba(160,32,240,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .spons-cta-card { padding: 36px 24px; }
    .spons-cta-title { font-size: 1.8rem; }
    .spons-cta-stats { gap: 24px; }
    .spons-platino-card { flex-direction: column; padding: 32px 24px; }
    .spons-platino-logo { width: 100%; }
    .spons-comunidad-grid { grid-template-columns: repeat(2, 1fr); }
    .spons-3d-card--left2,
    .spons-3d-card--right2 { opacity: 0; pointer-events: none; }
}

/* =========================================
   Registros
   =========================================
*/

.fepro-registration-section {
    padding: 70px 0 50px !important;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 50%, #fff0f8 100%);
}

/* Fondo Categoría A */
.fepro-hero-bg-registro-a {
    background-image: url('../images/fepro-2026/background/bg-page-2.png'); 
}

/* Fondo Categoría B */
.fepro-hero-bg-registro-b {
    background-image: url('/fepro2023/images/fepro-2026/background/bg-inicio-1.png');
}

/* Info Box */
.fepro-info-box-registro {
    background: linear-gradient(135deg, #f3f0ff 0%, #f9f7ff 100%);
    border-left: 4px solid #535AE2;
    padding: 24px;
    border-radius: 8px;
}

.fepro-info-title {
    color: #535AE2;
    margin-bottom: 12px;
}

.fepro-info-list {
    list-style: none;
    padding-left: 0;
    color: #555;
}

.fepro-info-list li {
    margin-bottom: 10px;
}

.fepro-info-list li:last-child {
    margin-bottom: 0; /* Remueve el margen del último elemento */
}

.fepro-info-list i {
    color: #535AE2;
    margin-right: 8px;
}

/* Títulos y Secciones */
.fepro-section-title {
    color: #1e1f36;
    border-bottom: 2px solid #535AE2;
    padding-bottom: 12px;
}

.fepro-subsection-title {
    color: #1e1f36;
}

.fepro-divider {
    border-top: 2px solid #ede8ff;
    margin: 32px 0;
}

/* Formulario */
.fepro-form-label {
    color: #1e1f36;
    font-weight: 600;
    margin-bottom: 8px;
}

.fepro-required {
    color: #E91E63;
}

.fepro-input-custom {
    border: 1.5px solid #ede8ff !important;
    background: #f9f7ff !important;
    padding: 12px !important;
}

.fepro-lowercase {
    text-transform: lowercase;
}

/* Textos de Ayuda y Estado */
.fepro-form-hint {
    color: #08D9F7;
    display: block;
    margin-top: 6px;
}

#result-username {
    margin-top: 8px;
}

.fepro-loader {
    margin-top: 8px;
}

.fepro-help-text {
    color: #666;
    font-size: 14px;
}

.fepro-help-text a {
    color: #535AE2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fepro-help-text a:hover {
    text-decoration: underline;
}

/* Password Toggle Styling */
.fepro-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 64px;
}

.fepro-password-wrapper .form-control {
    padding-right: 45px !important;
    height: 100%;
}

.fepro-password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #535AE2;
    font-size: 18px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fepro-password-toggle:hover {
    color: #08D9F7;
    transform: scale(1.1);
}

.fepro-password-toggle:focus {
    outline: none;
}
/*
 * --------------------------------------------------------------------------
 * Programa.php
 * --------------------------------------------------------------------------
*/
.prog-section {
    padding: 70px 0 90px;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 50%, #fff0f8 100%);
}

/* ── Event meta ── */
.prog-event-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
.prog-event-date {
    font-size: 36px;
    font-weight: 700;
    color: #0F76BC;
}
.prog-event-date i { margin-right: 6px; }
.prog-event-slogan {
    font-size: 32px;
    font-weight: 600;
    color: #444;
    font-style: italic;
}
.prog-event-sep {
    color: #ccc;
    font-size: 24px;
}

/* ── Countdown ── */
.prog-countdown-wrap {
    text-align: center;
    margin-bottom: 60px;
}
.prog-countdown-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
}
.prog-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.prog-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 2px solid #ede8ff;
    border-radius: 16px;
    padding: 20px 28px;
    min-width: 100px;
    box-shadow: 0 4px 20px rgba(83,90,226,0.08);
}
.prog-count-num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #535AE2, #851CB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.prog-count-unit {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}
.prog-count-sep {
    font-size: 36px;
    font-weight: 900;
    color: #ede8ff;
    margin-bottom: 20px;
}

/* ── Próximamente animado ── */
.prog-coming-anim {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    margin-bottom: 20px;
}
.prog-coming-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.prog-star {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0F76BC;
    animation: starPulse 2s ease-in-out infinite;
}
.prog-star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; opacity: 0.4; }
.prog-star:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.4s; opacity: 0.6; width: 4px; height: 4px; }
.prog-star:nth-child(3) { top: 30%; left: 80%; animation-delay: 0.8s; opacity: 0.5; width: 8px; height: 8px; }
.prog-star:nth-child(4) { top: 70%; left: 75%; animation-delay: 1.2s; opacity: 0.3; }
.prog-star:nth-child(5) { top: 15%; left: 50%; animation-delay: 0.6s; opacity: 0.5; width: 4px; height: 4px; }
.prog-star:nth-child(6) { top: 80%; left: 45%; animation-delay: 1s; opacity: 0.4; width: 7px; height: 7px; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.8); opacity: 0.8; }
}
.prog-coming-cal {
    font-size: 48px;
    color: #0F76BC;
    margin-bottom: 16px;
    display: block;
    animation: calPulse 2s ease-in-out infinite;
}
@keyframes calPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.prog-coming-soon-text {
    font-size: 22px;
    font-weight: 800;
    color: #0F76BC;
    margin-bottom: 20px;
    line-height: 1.3;
}
.prog-coming-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0F76BC;
    text-decoration: none;
    border-bottom: 2px solid #0F76BC;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}
.prog-coming-link:hover {
    opacity: 0.7;
    color: #0F76BC;
    text-decoration: none;
}

/* ── Tickets preview ── */
.prog-tickets-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto 50px;
}
.prog-tickets-hint {
    text-align: center;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
}

/* ── Ticket card ── */
.prog-ticket {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(83,90,226,0.08);
    border: 1.5px solid #ede8ff;
    transition: transform 0.25s, box-shadow 0.25s;
}
.prog-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(83,90,226,0.15);
}
.prog-ticket-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: #f3f0ff;
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.prog-ticket-hour {
    font-size: 36px;
    font-weight: 900;
    color: #535AE2;
    line-height: 1;
}
.prog-ticket-min {
    font-size: 18px;
    font-weight: 700;
    color: #851CB7;
    line-height: 1;
}
.prog-ticket-ampm {
    font-size: 10px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
    margin-top: 2px;
    text-transform: uppercase;
}
.prog-ticket-perf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 20px;
    flex-shrink: 0;
    background: #fff;
    position: relative;
}
.prog-ticket-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f3f0ff;
    border: 1.5px solid #ede8ff;
    flex-shrink: 0;
    position: absolute;
}
.prog-ticket-circle.top    { top: -8px; }
.prog-ticket-circle.bottom { bottom: -8px; }
.prog-ticket-dots {
    width: 2px;
    height: 100%;
    background-image: repeating-linear-gradient(
        to bottom,
        #ede8ff 0px, #ede8ff 6px,
        transparent 6px, transparent 12px
    );
    margin: 0 auto;
}
.prog-ticket-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.prog-ticket-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
}
.prog-ticket-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}
.prog-ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.prog-ticket-meta-item {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}
.prog-ticket-meta-item i {
    color: #535AE2;
    font-size: 12px;
}
.prog-ticket-accent {
    width: 6px;
    flex-shrink: 0;
    border-radius: 0 14px 14px 0;
}

/* Responsive */
@media (max-width: 767px) {
    .prog-count-item  { min-width: 70px; padding: 14px 16px; }
    .prog-count-num   { font-size: 32px; }
    .prog-ticket-time { min-width: 70px; padding: 16px 14px; }
    .prog-ticket-hour { font-size: 28px; }
    .prog-ticket-body { padding: 16px; }
    .prog-ticket-title { font-size: 15px; }
}
/*
 * --------------------------------------------------------------------------
 * inicio.php — CSS limpio v3
 * --------------------------------------------------------------------------
*/

/* ══ CANVAS ══ */
#fepro-particles {
    position: fixed; top:0; left:0;
    width:100%; height:100%;
    pointer-events:none; z-index:0; opacity:0.22;
}

/* ══ HERO ══ */
.ini-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover; background-position: center;
    display: flex; align-items: center;
    overflow: hidden;
}
.ini-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(130deg, rgba(10,8,30,0.97) 0%, rgba(20,12,50,0.82) 55%, rgba(10,8,30,0.95) 100%);
    z-index: 1;
}
.ini-hero .container { padding-top: 100px; padding-bottom: 60px; }

.ini-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(83,90,226,0.12);
    border: 1px solid rgba(83,90,226,0.35);
    color: #969BFF;
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 24px;
}

.ini-title {
    font-size: clamp(5rem, 13vw, 11rem);
    font-weight: 900; line-height: 0.88;
    margin-bottom: 24px; letter-spacing: -3px;
}
.ini-title-line1 { display: block; color: #fff; -webkit-text-fill-color: #fff; }
.ini-title-line2 {
    display: block;
    color: transparent; -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px rgba(150,155,255,0.7);
}

.ini-slogan { font-size: 1.15rem; color: rgba(255,255,255,0.55); margin-bottom: 28px; line-height: 1.7; }
.ini-slogan strong { color: #fff; }

.ini-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.ini-meta-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 0.92rem; }
.ini-meta-item i { color: #969BFF; font-size: 0.85rem; }

.ini-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ini-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #535AE2, #851CB7);
    color: #fff; padding: 14px 30px; border-radius: 50px;
    font-weight: 700; font-size: 0.92rem; text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 28px rgba(83,90,226,0.4);
}
.ini-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(83,90,226,0.55); color: #fff; text-decoration: none; }

.ini-btn-outline {
    display: inline-flex; align-items: center;
    color: #fff; padding: 14px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.92rem; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2); transition: all 0.3s;
}
.ini-btn-outline:hover { border-color: #969BFF; background: rgba(83,90,226,0.15); color: #fff; text-decoration: none; }

/* Chips */
.ini-chip {
    position: absolute;
    background: rgba(83,90,226,0.16);
    border: 1px solid rgba(83,90,226,0.35);
    color: rgba(255,255,255,0.8);
    padding: 9px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    display: flex; align-items: center; gap: 8px;
    z-index: 2;
    animation: chipFloat 7s ease-in-out infinite;
}
.ini-chip i { color: #969BFF; font-size: 0.82rem; }
.ini-chip-1 { bottom: 30%; right: 8%;  animation-delay: 0s; }
.ini-chip-2 { top:    22%; right: 5%;  animation-delay: 1.2s; animation-duration: 6s; }
.ini-chip-3 { bottom: 18%; right: 22%; animation-delay: 2.4s; animation-duration: 8s; }
.ini-chip-4 { top:    40%; right: 3%;  animation-delay: 0.8s; animation-duration: 7.5s; }
.ini-chip-5 { bottom: 45%; right: 14%; animation-delay: 1.8s; animation-duration: 6.5s; }
@keyframes chipFloat {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-14px) rotate(1deg); }
}

/* Hero imagen derecha */
.ini-hero-img-wrap {
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    z-index: 1; pointer-events: none;
}
.ini-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0.45; }
.ini-hero-img-fade {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,8,30,1) 0%, rgba(10,8,30,0.7) 30%, rgba(10,8,30,0.1) 70%, rgba(10,8,30,0) 100%);
}

/* Tarjetas glassmorphism hero */
.ini-hero-card {
    position: absolute; z-index: 3;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 16px 22px;
    display: flex; align-items: center; gap: 14px;
}
.ini-hero-card-1 { bottom: 22%; right: 5%; }
.ini-hero-card-2 { bottom: 12%; right: 8%; }
.ini-hcard-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #535AE2, #851CB7);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.ini-hcard-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 8px #4ade80;
    animation: dotPulse 1.5s ease-in-out infinite; flex-shrink: 0;
}
.ini-hcard-dot-close {
    width: 10px; height: 10px; border-radius: 50%;
    background: #dc2626; box-shadow: 0 0 8px #4ade80;
    animation: dotPulse 1.5s ease-in-out infinite; flex-shrink: 0;
}
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:0.7;} }
.ini-hcard-info { display: flex; flex-direction: column; }
.ini-hcard-num  { font-size: 1.3rem; font-weight: 900; color: #fff; line-height: 1.1; }
.ini-hcard-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* Scroll */
.ini-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.35); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.ini-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, #535AE2, transparent); animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(0.4);opacity:0.3;} }

/* ══ COUNTDOWN ══ */
.ini-countdown { background: linear-gradient(135deg, #0d0e2a, #1a1040); padding: 48px 0; position: relative; z-index: 1; }
.ini-cd-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 36px; }
.ini-cd-label { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.5); font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.ini-cd-label i { color: #969BFF; }
.ini-cd-timer { display: flex; align-items: center; gap: 8px; }
.ini-cd-block { display: flex; flex-direction: column; align-items: center; }
.ini-cd-num { font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 900; color: #fff; line-height: 1; background: rgba(83,90,226,0.12); border: 1px solid rgba(83,90,226,0.25); border-radius: 14px; padding: 14px 22px; min-width: 90px; text-align: center; font-variant-numeric: tabular-nums; }
.ini-cd-text { color: rgba(255,255,255,0.4); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 8px; }
.ini-cd-sep { color: rgba(83,90,226,0.6); font-size: 2.4rem; font-weight: 900; margin-bottom: 22px; }

/* ══ ABOUT ══ */
.ini-about { background: linear-gradient(160deg, #f8f7ff 0%, #fff 55%, #f5f0ff 100%); padding: 100px 0; position: relative; z-index: 1; }

/* Labels en secciones claras — morado en lugar de cyan */
.ini-about .conv-intro-label,
.ini-gallery-section .conv-intro-label,
.ini-cats-section .conv-intro-label {
    background: rgba(83,90,226,0.1);
    border-color: rgba(83,90,226,0.3);
    color: #535AE2;
}

.ini-sec-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #1e1f36; line-height: 1.2; margin-bottom: 18px; }
.ini-sec-title.white { color: #fff; -webkit-text-fill-color: #fff; }
.ini-sec-grad { background: linear-gradient(135deg, #535AE2, #851CB7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Textos about más grandes */
.ini-sec-text { color: #444; line-height: 1.9; margin-bottom: 16px; font-size: 1.05rem; }

.ini-about-img-wrap { position: relative; }
.ini-about-img { width: 100%; border-radius: 20px; box-shadow: 0 24px 70px rgba(83,90,226,0.15); display: block; background: #ede8ff; min-height: 300px; }
.ini-about-badge { position: absolute; bottom: -16px; right: 20px; background: linear-gradient(135deg, #535AE2, #851CB7); padding: 16px 22px; border-radius: 16px; text-align: center; box-shadow: 0 8px 28px rgba(83,90,226,0.45); }
.ini-badge-num { display: block; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.ini-badge-label { font-size: 0.68rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }

/* ══ OBJETIVOS — Acordeón horizontal ══ */
.ini-obj-section {
    background: #1e2147;
    padding: 80px 0 0;
    position: relative; z-index: 1;
}
.ini-obj-section .conv-intro-label {
    background: rgba(150,155,255,0.12);
    border-color: rgba(150,155,255,0.3);
    color: #969BFF;
}
.ini-obj-section .ini-sec-title {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.ini-obj-accordion { display: flex; width: 100%; height: 480px; overflow: hidden; }

.ini-obj-panel {
    flex: 1;
    position: relative; overflow: hidden; cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(160deg, #252850, #1a1d40);
    border-right: 1px solid rgba(150,155,255,0.08);
}
.ini-obj-panel:last-child { border-right: none; }
.ini-obj-panel::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--obj-bg);
    background-size: cover; background-position: center;
    opacity: 0.08; transition: opacity 0.5s;
}
.ini-obj-panel.ini-obj-active::before { opacity: 0.2; }
.ini-obj-panel::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: var(--obj-color);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
}
.ini-obj-panel.ini-obj-active::after { transform: scaleX(1); }
.ini-obj-panel.ini-obj-active { flex: 3; background: linear-gradient(160deg, #2d3175, #1e2147); }

.ini-obj-panel-inner {
    position: relative; z-index: 1; height: 100%;
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 40px 32px; gap: 16px;
}

.ini-obj-num {
    position: absolute; top: 20px; right: 24px;
    font-size: 5rem; font-weight: 900;
    color: rgba(255,255,255,0.06); line-height: 1;
    pointer-events: none; transition: color 0.4s, font-size 0.4s;
}
.ini-obj-panel.ini-obj-active .ini-obj-num { color: rgba(255,255,255,0.1); font-size: 7rem; }

.ini-obj-icon-wrap {
    width: 52px; height: 52px;
    background: var(--obj-color);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.ini-obj-panel.ini-obj-active .ini-obj-icon-wrap { transform: scale(1.1); }
.ini-obj-icon-wrap i { color: #fff; font-size: 1.2rem; }

.ini-obj-text h3 {
    font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 8px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ini-obj-panel.ini-obj-active .ini-obj-text h3 { white-space: normal; }
.ini-obj-text p {
    font-size: 0.98rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin: 0;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s;
}
.ini-obj-panel.ini-obj-active .ini-obj-text p { max-height: 140px; opacity: 1; }

/* ══ STATS ══ */
.ini-stats { position: relative; background: linear-gradient(135deg, #0d0e2a, #1a1040); padding: 100px 0; overflow: hidden; }
.ini-stats-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 50%, rgba(83,90,226,0.18) 0%, transparent 65%); pointer-events: none; }
.ini-stats-bg-text { position: absolute; top: 50%; right: -40px; transform: translateY(-50%); font-size: clamp(8rem, 18vw, 18rem); font-weight: 900; color: rgba(255,255,255,0.02); pointer-events: none; line-height: 1; letter-spacing: -4px; user-select: none; }
.ini-stats .container { position: relative; z-index: 1; }
.ini-stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(83,90,226,0.18); border-radius: 16px; padding: 28px 14px; text-align: center; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.ini-stat-item:hover { border-color: rgba(83,90,226,0.5); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(83,90,226,0.18); }
.ini-stat-pre { color: #969BFF; font-size: 1.2rem; font-weight: 900; line-height: 1; }
.ini-stat-num { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.ini-stat-label { color: rgba(255,255,255,0.45); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }

/* ══ VIDEO ══ */
.ini-video-section { position: relative; padding: 100px 0; overflow: hidden; }
.ini-video-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ini-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,8,30,0.95) 0%, rgba(20,12,50,0.88) 100%); }
.ini-video-card { position: relative; }
.ini-video-thumb {
    position: relative; border-radius: 20px; overflow: hidden;
    background: linear-gradient(160deg, #1a1040, #0d0e2a);
    min-height: 280px;
    border: 2px solid rgba(83,90,226,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
}
.ini-video-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0.4; }
.ini-video-play-btn { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.ini-play-ripple { position: absolute; width: 90px; height: 90px; border: 2px solid rgba(83,90,226,0.4); border-radius: 50%; animation: iniRipple 2s ease-out infinite; }
.ini-play-ripple-2 { width: 120px; height: 120px; animation-delay: 0.7s; opacity: 0.4; }
@keyframes iniRipple { 0%{transform:scale(0.7);opacity:1;} 100%{transform:scale(1.5);opacity:0;} }
.ini-play-btn-icon { width: 72px; height: 72px; background: linear-gradient(135deg, #535AE2, #851CB7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; box-shadow: 0 8px 30px rgba(83,90,226,0.5); transition: transform 0.2s; padding-left: 5px; }
.ini-play-btn-icon:hover { transform: scale(1.08); }
.ini-video-label { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; align-items: center; justify-content: space-between; z-index: 2; }
.ini-video-label span { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.ini-video-label span i { color: #969BFF; }
.ini-video-badge { background: rgba(83,90,226,0.25); border: 1px solid rgba(83,90,226,0.4); color: #969BFF; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }

/* ══ CATEGORÍAS — Split asimétrico ══ */
.ini-cats-section {
    position: relative; overflow: hidden;
    background: #f0f0fa; padding: 0;
}
.ini-cats-bg-text {
    position: absolute; bottom: -60px; left: -30px;
    font-size: clamp(10rem, 24vw, 24rem); font-weight: 900;
    color: rgba(83,90,226,0.03); pointer-events: none;
    line-height: 1; letter-spacing: -8px; user-select: none; z-index: 0;
}

.ini-cat-split {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 420px; position: relative; z-index: 1;
}

/* Cat A */
.ini-cat-split-a {
    background: #fff;
    border-bottom: 1px solid rgba(83,90,226,0.08);
    border-right: 1px solid rgba(83,90,226,0.08);
    position: relative; overflow: hidden;
}
.ini-cat-split-a::before {
    content: ''; position: absolute; top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(83,90,226,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.ini-cat-split-a::after {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(236,38,143,0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* Cat B */
.ini-cat-split-b {
    background: #faf8ff;
    position: relative; overflow: hidden;
}
.ini-cat-split-b::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(133,28,183,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.ini-cat-split-b::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(237,115,16,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.ini-cat-split-content {
    padding: 50px 60px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 18px;
    position: relative; z-index: 2;
}

.ini-cat-split-tag {
    display: inline-block; padding: 5px 16px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    background: rgba(83,90,226,0.1); border: 1px solid rgba(83,90,226,0.25); color: #535AE2;
    align-self: flex-start;
}
.ini-cat-split-tag-b { background: rgba(133,28,183,0.1); border-color: rgba(133,28,183,0.25); color: #851CB7; }

.ini-cat-split-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; color: #1e1f36; line-height: 1.15; margin: 0;
}
.ini-cat-split-title span { color: #EC268F; }
.ini-cat-split-b .ini-cat-split-title span { color: #851CB7; }

.ini-cat-split-desc {
    font-size: 1rem; color: #444; line-height: 1.8; margin: 0; max-width: 480px;
}

.ini-cat-split-meta {
    display: flex; flex-direction: column; gap: 10px;
    padding: 18px 0;
    border-top: 1px solid rgba(83,90,226,0.1);
    border-bottom: 1px solid rgba(83,90,226,0.1);
}
.ini-cat-split-b .ini-cat-split-meta { border-color: rgba(133,28,183,0.1); }
.ini-cat-split-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; color: #333; }
.ini-cat-split-meta-item i { color: #535AE2; width: 16px; }
.ini-cat-split-b .ini-cat-split-meta-item i { color: #851CB7; }
.ini-cat-split-meta-item strong { color: #1e1f36; }

.ini-cat-split-btn {
    display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
    padding: 12px 26px; border-radius: 50px;
    background: linear-gradient(135deg, #535AE2, #EC268F);
    color: #fff; font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(83,90,226,0.3);
}
.ini-cat-split-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(83,90,226,0.5); color: #fff; text-decoration: none; }
.ini-cat-split-btn-b { background: linear-gradient(135deg, #851CB7, #ED7310); box-shadow: 0 6px 20px rgba(133,28,183,0.3); }
.ini-cat-split-btn-b:hover { box-shadow: 0 12px 32px rgba(133,28,183,0.5); }

/* Deco lado foto */
.ini-cat-split-deco {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.ini-cat-split-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.22;
    filter: blur(2px) saturate(0.85);
    z-index: 0; transform: scale(1.05);
}
.ini-cat-split-glow-a { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(83,90,226,0.1) 0%, transparent 70%); z-index: 1; }
.ini-cat-split-glow-b { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(133,28,183,0.1) 0%, transparent 70%); z-index: 1; }

/* Badge glassmorphism */
.ini-cat-split-badge {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 24px; padding: 28px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.ini-cat-split-badge-letter {
    font-size: 5.5rem; font-weight: 900; line-height: 1;
    color: #535AE2; display: block;
}
.ini-cat-split-b .ini-cat-split-badge-letter { color: #851CB7; }
.ini-cat-split-badge-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: #535AE2; margin-top: 4px; display: block;
}
.ini-cat-split-b .ini-cat-split-badge-label { color: #851CB7; }

/* ══ GALERÍA 3D ══ */
.ini-gallery-section { background: linear-gradient(160deg, #f8f7ff 0%, #fff 100%); padding: 100px 0 60px; overflow: hidden; }

.ini-gal3d-scene {
    position: relative; height: 440px;
    display: flex; align-items: center; justify-content: center;
    perspective: 1400px; margin-top: 0;
}
.ini-gal3d-card {
    position: absolute;
    width: 290px; height: 390px;
    border-radius: 20px; overflow: hidden; cursor: pointer;
    transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0; pointer-events: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    top: 50%; left: 50%;
    transform-origin: center center;
    margin-top: -195px; margin-left: -145px;
}
.ini-gal3d-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.ini-gal3d-card:hover img { transform: scale(1.06); }
.ini-gal3d-overlay { position: absolute; inset: 0; background: rgba(83,90,226,0.7); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; opacity: 0; transition: opacity 0.3s; }
.ini-gal3d-c .ini-gal3d-overlay:hover { opacity: 1; }

.ini-gal3d-c  { transform: translateX(0)     translateY(0) translateZ(0)    rotateY(0deg)   scale(1);    opacity: 1;   z-index: 5; pointer-events: all; box-shadow: 0 30px 80px rgba(83,90,226,0.2), 0 0 0 2px rgba(83,90,226,0.3); }
.ini-gal3d-l1 { transform: translateX(-340px) translateY(0) translateZ(-130px) rotateY(22deg)  scale(0.84); opacity: 0.65; z-index: 4; pointer-events: all; }
.ini-gal3d-l2 { transform: translateX(-590px) translateY(0) translateZ(-260px) rotateY(34deg)  scale(0.66); opacity: 0.38; z-index: 3; pointer-events: all; }
.ini-gal3d-r1 { transform: translateX(340px)  translateY(0) translateZ(-130px) rotateY(-22deg) scale(0.84); opacity: 0.65; z-index: 4; pointer-events: all; }
.ini-gal3d-r2 { transform: translateX(590px)  translateY(0) translateZ(-260px) rotateY(-34deg) scale(0.66); opacity: 0.38; z-index: 3; pointer-events: all; }
.ini-gal3d-hide { opacity: 0; pointer-events: none; z-index: 1; transform: translateX(0) translateY(0) scale(0.4); }

.ini-gal3d-prev, .ini-gal3d-next { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: #fff; border: none; cursor: pointer; color: #535AE2; font-size: 1rem; box-shadow: 0 4px 20px rgba(83,90,226,0.18); z-index: 10; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.ini-gal3d-prev:hover, .ini-gal3d-next:hover { background: #535AE2; color: #fff; box-shadow: 0 8px 30px rgba(83,90,226,0.4); }
.ini-gal3d-prev { left: 16px; }
.ini-gal3d-next { right: 16px; }

/* Lightbox */
.ini-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.ini-lightbox.active { opacity: 1; pointer-events: all; }
.ini-lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); }
.ini-lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; animation: lbIn 0.3s ease; }
@keyframes lbIn { from{transform:scale(0.85);opacity:0;} to{transform:scale(1);opacity:1;} }
.ini-lightbox-content img { max-width: 100%; max-height: 90vh; border-radius: 14px; display: block; box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.ini-lightbox-close { position: absolute; top: -14px; right: -14px; width: 38px; height: 38px; border-radius: 50%; background: #535AE2; border: none; color: #fff; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; }
.ini-lightbox-close:hover { background: #EC268F; }

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
    .ini-chip { display: none; }
    .ini-hero-img-wrap { width: 100%; opacity: 0.3; }
    .ini-hero-card { display: none; }
    .ini-obj-accordion { height: auto; flex-direction: column; }
    .ini-obj-panel { flex: none !important; min-height: 160px; }
    .ini-obj-panel.ini-obj-active { min-height: 300px; }
    .ini-obj-text p { max-height: 140px !important; opacity: 1 !important; }
    .ini-cat-split { grid-template-columns: 1fr; }
    .ini-cat-split-deco { min-height: 200px; }
    .ini-cat-split-content { padding: 40px 28px; }
    .ini-cat-split-b .ini-cat-split-deco { order: -1; }
    .ini-gal3d-card { width: 230px; height: 300px; }
    .ini-gal3d-l2, .ini-gal3d-r2 { opacity: 0; pointer-events: none; }
}
@media (max-width: 576px) {
    .ini-title { font-size: clamp(3.5rem, 16vw, 5rem); }

    /* Countdown adaptativo */
    .ini-cd-inner { flex-direction: column; gap: 18px; }
    .ini-cd-timer { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .ini-cd-block { min-width: 64px; }
    .ini-cd-num { font-size: 1.6rem; min-width: 56px; padding: 10px 12px; }
    .ini-cd-sep { display: none; }
    .ini-cd-text { font-size: 0.65rem; }

    .ini-about, .ini-stats, .ini-video-section, .ini-cats-section, .ini-gallery-section { padding: 70px 0; }
    .ini-gal3d-scene { height: 320px; }
    .ini-gal3d-card { width: 190px; height: 260px; }
}
/* ── Countdown — más naranja ── */
.ini-countdown {
    background: linear-gradient(135deg, #1a0530, #2d0d50);
    padding: 48px 0; position: relative; z-index: 1;
}
.ini-cd-num {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 900; color: #fff; line-height: 1;
    background: linear-gradient(135deg, #851CB7 0%, #c45a10 60%, #ED7310 100%);
    border: 1px solid rgba(237,115,16,0.5);
    border-radius: 14px; padding: 14px 22px;
    min-width: 90px; text-align: center;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 4px 20px rgba(237,115,16,0.25);
}
.ini-cd-sep {
    background: linear-gradient(135deg, #851CB7, #ED7310);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.4rem; font-weight: 900; margin-bottom: 22px;
}
.ini-cd-label { color: rgba(255,255,255,0.6); }
.ini-cd-label i { color: #ED7310; }
.ini-cd-text { color: rgba(255,255,255,0.45); }

/* ── Video — más naranja ── */
.ini-video-overlay {
    background: linear-gradient(135deg, rgba(26,5,48,0.96) 0%, rgba(45,13,80,0.88) 50%, rgba(80,35,5,0.85) 100%);
}
.ini-video-thumb {
    border: 2px solid rgba(237,115,16,0.4);
    box-shadow: 0 30px 80px rgba(133,28,183,0.2), 0 0 60px rgba(237,115,16,0.1);
}
.ini-play-btn-icon {
    background: linear-gradient(135deg, #851CB7, #ED7310);
    box-shadow: 0 8px 30px rgba(237,115,16,0.4);
}
.ini-play-ripple { border-color: rgba(237,115,16,0.4); }
.ini-video-badge {
    background: rgba(237,115,16,0.2);
    border-color: rgba(237,115,16,0.45);
    color: #f5a623;
}
.ini-video-label span i { color: #f5a623; }
.ini-video-section .conv-intro-label {
    background: rgba(237,115,16,0.12);
    border-color: rgba(237,115,16,0.35);
    color: #ED7310;
}
/* ══════════════════════════════════════
   ODS — Rueda interactiva
══════════════════════════════════════ */
.conv-ods-section {
    position: relative;
    background: linear-gradient(160deg, #f8f7ff 0%, #fff 50%, #f0eeff 100%);
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}
.conv-ods-bg-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(83,90,226,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Layout rueda + panel */
.conv-ods-wheel-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 60px;
}

/* Rueda */
.conv-ods-wheel {
    position: relative;
    width: 480px;
    height: 480px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 60px rgba(83,90,226,0.1), 0 0 0 2px rgba(83,90,226,0.08);
}

/* Centro */
.conv-ods-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    background: linear-gradient(135deg, #535AE2, #851CB7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 28px rgba(83,90,226,0.4);
}
.conv-ods-center-inner {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
}
.conv-ods-center-inner i { color: #fff; font-size: 1.4rem; }
.conv-ods-center-inner span { color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; margin-top: 4px; }
.conv-ods-center-inner small { color: rgba(255,255,255,0.7); font-size: 0.58rem; }

/* Panel info */
.conv-ods-info-panel {
    flex: 1;
    background: #fff;
    border: 1.5px solid rgba(83,90,226,0.12);
    border-radius: 24px;
    padding: 36px;
    min-height: 380px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 40px rgba(83,90,226,0.08);
}
.conv-ods-info-default {
    text-align: center; color: #aaa;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.conv-ods-info-default i { font-size: 2.5rem; color: #c5c9ff; }
.conv-ods-info-default p { font-size: 0.95rem; line-height: 1.7; max-width: 280px; }

.conv-ods-info-content { width: 100%; }
.conv-ods-info-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 16px;
}
.conv-ods-info-num {
    font-size: 3.5rem; font-weight: 900; line-height: 1;
}
#odsInfoTitle {
    font-size: 1.5rem; font-weight: 800;
    margin-bottom: 12px; line-height: 1.2;
}
#odsInfoDesc {
    font-size: 0.95rem; color: #555;
    line-height: 1.75; margin-bottom: 20px;
}
.conv-ods-info-ideas p { font-size: 0.9rem; }
.conv-ods-info-ideas ul {
    list-style: none; padding: 0; margin: 0;
}
.conv-ods-info-ideas ul li {
    font-size: 0.88rem; color: #444;
    padding: 7px 0;
    border-bottom: 1px solid rgba(83,90,226,0.08);
    display: flex; align-items: flex-start; gap: 8px;
    line-height: 1.5;
}
.conv-ods-info-ideas ul li:last-child { border-bottom: none; }
.conv-ods-info-ideas ul li i { color: #535AE2; font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }

/* ── Grid móvil ── */
.conv-ods-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.conv-ods-grid-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid rgba(83,90,226,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.conv-ods-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.conv-ods-grid-header {
    padding: 16px;
    display: flex; align-items: center; gap: 10px;
}
.conv-ods-grid-header i { color: #fff; font-size: 1.3rem; }
.conv-ods-grid-header span { color: #fff; font-weight: 900; font-size: 1.1rem; }
.conv-ods-grid-body { padding: 16px; }
.conv-ods-grid-body h5 { font-size: 0.9rem; font-weight: 800; color: #1e1f36; margin-bottom: 6px; }
.conv-ods-grid-body p { font-size: 0.8rem; color: #666; line-height: 1.6; margin-bottom: 10px; }
.conv-ods-grid-body ul { list-style: none; padding: 0; margin: 0; }
.conv-ods-grid-body ul li {
    font-size: 0.78rem; color: #444;
    padding: 4px 0; display: flex; align-items: flex-start; gap: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.conv-ods-grid-body ul li:last-child { border-bottom: none; }
.conv-ods-grid-body ul li i { color: #535AE2; font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .conv-ods-wheel-wrap { display: none; }
    .conv-ods-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .conv-ods-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .conv-ods-grid-body ul { display: none; }
}
/* ══════════════════════════════════════
   empresas.php
══════════════════════════════════════ */

/* ── HERO ── */
.emp-hero {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 90px 0 80px;
}
.emp-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.emp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,8,30,0.92) 0%, rgba(10,8,30,0.7) 100%);
}

/* Bandas de empresas (se muestran como sección independiente) */
.emp-hero-bands-section {
    position: relative;
    padding: 50px 0 80px;
    background: linear-gradient(135deg, rgba(10,8,30,0.92) 0%, rgba(10,8,30,0.85) 20%, rgba(10,8,30,0.7) 100%);
}
.emp-hero-bands {
    position: relative;
    display: flex;
    gap: 2px;
    max-width: 1280px;
    margin: 0 auto;
    height: 420px;
}
.emp-hero-band {
    flex: 1 1 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, z-index 0.25s ease;
    text-decoration: none;
    min-width: 0;
}
.emp-hero-band:hover {
    transform: scale(1.04);
    z-index: 2;
    text-decoration: none;
}
.emp-hero-band-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, var(--ec1) 0%, var(--ec2) 100%);
    opacity: 0.75;
    transition: opacity 0.3s;
}
.emp-hero-band:hover .emp-hero-band-overlay { opacity: 0.9; }
.emp-hero-band-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; padding: 20px;
}
.emp-hero-band-logo {
    max-width: 120px; max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}
.emp-hero-band:hover .emp-hero-band-logo { transform: scale(1.1); opacity: 1; }
.emp-hero-band-name-fb {
    color: #fff; font-size: 1.1rem; font-weight: 900;
}
.emp-hero-band-label {
    color: rgba(255,255,255,0); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: color 0.3s;
    display: flex; align-items: center; gap: 6px;
}
.emp-hero-band:hover .emp-hero-band-label { color: rgba(255,255,255,0.9); }

/* Texto hero izquierdo */
.emp-hero-text {
    position: relative; z-index: 2;
    padding-left: 60px;
}
.emp-hero-text h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900; color: #fff; line-height: 1;
    margin-bottom: 14px; letter-spacing: -2px;
}
.emp-hero-text h1 span {
    background: linear-gradient(135deg, #535AE2, #EC268F);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.emp-hero-sub {
    color: rgba(255,255,255,0.5); font-size: 0.9rem;
    letter-spacing: 0.06em; margin: 0;
}

/* ── PREVIEW TARJETAS de empresas ── */
.emp-preview {
    padding: 70px 0 90px;
    background: linear-gradient(180deg, rgba(10,10,34,0.9) 0%, rgba(10,10,34,0.75) 40%, rgba(255,255,255,0) 100%);
}
.emp-preview-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 22px; margin-bottom: 38px;
}
.emp-preview-subtitle {
    display: inline-block; text-transform: uppercase;
    letter-spacing: 0.2em; font-size: 0.8rem; color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.emp-preview-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; color: #fff; margin: 0;
}
.emp-preview-action {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px; border-radius: 40px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9); text-decoration: none;
    font-weight: 700; transition: transform 0.2s, background 0.2s;
}
.emp-preview-action:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
}

.emp-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.emp-preview-card {
    position: relative;
    min-height: 320px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
}
.emp-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.emp-preview-card-bg {
    position: absolute; inset: 0;
    background-image: var(--bg, none), linear-gradient(160deg, var(--ec1), var(--ec2));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    filter: brightness(0.82);
    z-index: 1;
}
.emp-preview-card::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 40% 25%, rgba(255,255,255,0.16), transparent 55%);
    opacity: 0.6;
    z-index: 2;
}
.emp-preview-card-content {
    position: relative; z-index: 3;
    height: 100%; display: flex;
    flex-direction: column; justify-content: flex-end;
    padding: 28px;
    color: #fff;
    gap: 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.65) 100%);
}
.emp-preview-card h3 {
    font-size: 1.45rem; margin: 0; font-weight: 800;
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.emp-preview-card-content {
    position: relative; z-index: 3;
    height: 100%; display: flex;
    flex-direction: column; justify-content: flex-end;
    padding: 26px;
    color: #fff;
    gap: 12px;
}
.emp-preview-card-logo {
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 18px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 16px;
    overflow: hidden;
}
.emp-preview-card-logo img {
    max-width: 54px; max-height: 54px;
}
.emp-preview-card-logo-fallback {
    width: 100%; height: 100%; display: none;
    align-items: center; justify-content: center; color: #fff;
}
.emp-preview-card-logo-fallback span {
    font-weight: 800; font-size: 1.25rem;
}
.emp-preview-card h3 {
    font-size: 1.35rem; margin: 0; font-weight: 800;
}
.emp-preview-card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.emp-preview-card:hover .emp-preview-card-cta {
    opacity: 1;
}
.emp-preview-card-cta i { font-size: 0.9rem; }

/* Responsivo */
@media (max-width: 992px) {
    .emp-preview-header { flex-direction: column; align-items: flex-start; }
    .emp-preview-action { width: 100%; justify-content: center; }
    .emp-preview-grid { grid-template-columns: 1fr; }
}

/* ── INTRO BAR ── */
.emp-intro-bar {
    background: linear-gradient(135deg, #0d0e2a, #1a1040);
    padding: 20px 0;
    position: relative; z-index: 1;
}
.emp-intro-bar-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.emp-intro-bar-text {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.7); font-size: 0.9rem;
    flex: 1;
}
.emp-intro-bar-text i { color: #969BFF; font-size: 1.1rem; flex-shrink: 0; }
.emp-intro-bar-text strong { color: #fff; }

/* ── EMPRESA SECTION ── */
.emp-empresa-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.emp-empresa-section--alt {
    background: #f8f7ff;
}
.emp-empresa-accent {
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
}

.emp-empresa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.emp-empresa-section--alt .emp-empresa-grid {
    direction: rtl;
}
.emp-empresa-section--alt .emp-empresa-grid > * {
    direction: ltr;
}

/* Header empresa */
.emp-empresa-header {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 28px;
}
.emp-empresa-logo-wrap {
    width: 100px; height: 70px;
    border: 2px solid;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    padding: 12px; background: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.emp-empresa-logo-wrap img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
}
.emp-logo-ph {
    width: 100%; height: 100%; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.emp-logo-ph span { color: #fff; font-size: 1.3rem; font-weight: 900; }

.emp-empresa-nombre {
    font-size: 2rem; font-weight: 900; color: #1e1f36;
    margin-bottom: 10px; line-height: 1;
}
.emp-empresa-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.emp-tag {
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 1px solid; background: transparent;
}

/* Reto box */
.emp-reto-box {
    border: 1.5px solid;
    border-radius: 20px; padding: 24px;
    margin-bottom: 22px;
    background: #faf9ff;
}
.emp-reto-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
    border: 1px solid; margin-bottom: 12px;
}
.emp-reto-title {
    font-size: 1.35rem; font-weight: 800; color: #1e1f36;
    margin-bottom: 10px; line-height: 1.3;
}
.emp-reto-sinopsis {
    font-size: 0.95rem; color: #555; line-height: 1.8; margin: 0;
}

/* Objetivo */
.emp-objetivo-box {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 28px;
    padding: 18px;
    background: #f0eeff;
    border-radius: 16px;
}
.emp-objetivo-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.emp-objetivo-icon i { color: #fff; font-size: 1rem; }
.emp-objetivo-box h5 { font-size: 0.82rem; font-weight: 800; color: #1e1f36; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.emp-objetivo-box p { font-size: 0.88rem; color: #555; line-height: 1.75; margin: 0; }

/* Acciones */
.emp-acciones { display: flex; gap: 12px; flex-wrap: wrap; }
.emp-btn-pdf {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 50px;
    border: 2px solid rgba(83,90,226,0.3);
    color: #535AE2; font-weight: 700; font-size: 0.88rem;
    text-decoration: none; transition: all 0.3s;
    background: transparent;
}
.emp-btn-pdf:hover { background: rgba(83,90,226,0.08); border-color: #535AE2; color: #535AE2; text-decoration: none; }
.emp-btn-postular {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 50px;
    color: #fff; font-weight: 700; font-size: 0.88rem;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(83,90,226,0.3);
}
.emp-btn-postular:hover { transform: translateY(-2px); color: #fff; text-decoration: none; box-shadow: 0 12px 32px rgba(83,90,226,0.4); }

/* ── VIDEO LANDSCAPE ── */
.emp-video-landscape-wrap {
    position: relative;
    width: 100%; padding-bottom: 56.25%;
    background: linear-gradient(160deg, #0d0e2a, #1a1040);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,0.2);
    border: 2px solid rgba(83,90,226,0.2);
}

/* ── VIDEO SHORT (teléfono) ── */
.emp-video-short-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.emp-video-phone-frame {
    position: relative;
    width: 280px; height: 500px;
    background: linear-gradient(160deg, #1a1040, #0d0e2a);
    border-radius: 40px;
    border: 3px solid rgba(83,90,226,0.4);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 60px rgba(83,90,226,0.15);
    overflow: hidden;
    margin: 0 auto;
}
.emp-video-phone-notch {
    position: absolute; top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 6px;
    background: rgba(83,90,226,0.4);
    border-radius: 10px; z-index: 2;
}
.emp-video-phone-screen {
    position: absolute; inset: 0;
    border-radius: 38px; overflow: hidden;
}
.emp-video-short-glow {
    position: absolute; inset: -40px;
    pointer-events: none; z-index: -1;
}

/* Play overlay genérico */
.emp-video-overlay-play {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; cursor: pointer;
    background: rgba(10,8,30,0.6);
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}
.emp-video-overlay-play:hover { background: rgba(10,8,30,0.4); }

.emp-play-ripple {
    position: absolute;
    width: 90px; height: 90px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    animation: empRipple 2s ease-out infinite;
}
.emp-play-ripple-2 { width: 130px; height: 130px; animation-delay: 0.7s; opacity: 0.5; }
@keyframes empRipple { 0%{transform:scale(0.7);opacity:1;} 100%{transform:scale(1.5);opacity:0;} }

.emp-play-circle {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
    padding-left: 4px; position: relative; z-index: 1;
    transition: transform 0.2s;
}
.emp-play-circle--lg { width: 80px; height: 80px; font-size: 1.4rem; }
.emp-video-overlay-play:hover .emp-play-circle { transform: scale(1.1); }

.emp-video-overlay-play p {
    color: rgba(255,255,255,0.8); font-size: 0.85rem;
    font-weight: 600; margin: 0; position: relative; z-index: 1;
}
.emp-video-label-tag {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8); padding: 6px 14px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.emp-video-label-tag i { color: #ff4444; }

/* Fix: iframe debe llenar el contenedor de aspecto (landscape + phone) */
.emp-video-landscape-wrap iframe,
.emp-video-phone-screen iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Sin video */
.emp-video-coming {
    border: 2px dashed; border-radius: 20px;
    min-height: 300px; display: flex; align-items: center; justify-content: center;
    background: #f9f8ff;
}
.emp-video-coming-inner { text-align: center; padding: 40px; }
.emp-vc-icon { font-size: 3rem; margin-bottom: 16px; }
.emp-video-coming-inner h4 { font-size: 1.1rem; font-weight: 800; color: #1e1f36; margin-bottom: 6px; }
.emp-video-coming-inner p { font-size: 0.95rem; font-weight: 700; color: #666; margin-bottom: 8px; }
.emp-video-coming-inner span { font-size: 0.85rem; color: #888; line-height: 1.6; display: block; }
.emp-vc-dot {
    width: 8px; height: 8px; border-radius: 50%;
    margin: 16px auto 0; animation: dotPulse 1.5s ease-in-out infinite;
}

/* ── CTA FINAL ── */
.emp-cta-section {
    position: relative;
    background: linear-gradient(135deg, #0d0e2a, #1a1040);
    padding: 100px 0; overflow: hidden;
}
.emp-cta-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(83,90,226,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.emp-cta-inner { position: relative; z-index: 1; }
.emp-cta-inner h2 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; margin-bottom: 14px; }
.emp-cta-inner p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 32px; }
.emp-cta-inner strong { color: #fff; }
.emp-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
    .emp-hero { min-height: auto; padding: 70px 0 60px; }
    .emp-hero-text { padding: 40px 20px; }
    .emp-hero-bands-section { padding: 35px 0 50px; }
    .emp-hero-bands { flex-direction: column; height: auto; }
    .emp-hero-band { height: 240px; }

    .emp-empresa-grid { grid-template-columns: 1fr; gap: 40px; }
    .emp-empresa-section--alt .emp-empresa-grid { direction: ltr; }
    .emp-video-phone-frame { width: 220px; height: 390px; }
    .emp-intro-bar-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
    .emp-empresa-section { padding: 60px 0; }
    .emp-acciones { flex-direction: column; }
    .emp-acciones a { text-align: center; justify-content: center; }
    .emp-hero-text h1 { font-size: 2.5rem; }
    .emp-video-phone-frame { width: 180px; height: 320px; }
}
/* Countdown móvil — fix completo */
@media (max-width: 576px) {
    .ini-countdown {
        padding: 36px 16px;
    }
    .ini-cd-inner {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .ini-cd-timer {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: center;
        gap: 4px;
        width: 100%;
        max-width: 340px;
    }
    .ini-cd-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ini-cd-num {
        font-size: 1.55rem;
        min-width: unset;
        width: 100%;
        padding: 10px 6px;
        border-radius: 10px;
    }
    .ini-cd-sep {
        font-size: 1.4rem;
        margin-bottom: 22px;
        display: block; /* sobrescribe el display:none que tenías */
        -webkit-text-fill-color: transparent; /* mantiene el gradiente */
    }
    .ini-cd-text {
        font-size: 0.6rem;
        letter-spacing: 0.06em;
    }
    .ini-cd-label {
        font-size: 0.78rem;
        text-align: center;
    }
}
/* Galería 3D — fix posiciones en móvil */
@media (max-width: 576px) {
    .ini-gal3d-scene {
        height: 300px;
        perspective: 800px;
    }
    .ini-gal3d-card {
        width: 160px;
        height: 220px;
        margin-top: -110px;
        margin-left: -80px;
    }
    /* Reubica las cards laterales con valores proporcionales al viewport */
    .ini-gal3d-l1 {
        transform: translateX(-190px) translateY(0) translateZ(-80px) rotateY(22deg) scale(0.82);
        opacity: 0.55;
    }
    .ini-gal3d-r1 {
        transform: translateX(190px) translateY(0) translateZ(-80px) rotateY(-22deg) scale(0.82);
        opacity: 0.55;
    }
    .ini-gal3d-l2,
    .ini-gal3d-r2 {
        opacity: 0 !important;
        pointer-events: none;
    }
    .ini-gal3d-prev { left: 6px; }
    .ini-gal3d-next { right: 6px; }
}

@media (min-width: 577px) and (max-width: 991px) {
    .ini-gal3d-scene {
        height: 360px;
        perspective: 1000px;
    }
    .ini-gal3d-card {
        width: 200px;
        height: 270px;
        margin-top: -135px;
        margin-left: -100px;
    }
    .ini-gal3d-l1 {
        transform: translateX(-250px) translateY(0) translateZ(-100px) rotateY(22deg) scale(0.84);
    }
    .ini-gal3d-r1 {
        transform: translateX(250px) translateY(0) translateZ(-100px) rotateY(-22deg) scale(0.84);
    }
}
/* Step especial: publicación de resultados */
.conv-step-number--pub {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #08D9F7, #535AE2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(8, 217, 247, 0.35);
    flex-shrink: 0;
    margin-top: 4px;
}
.conv-step-number--pub::after {
    content: '\f0a1'; /* fa-bullhorn */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    font-size: 1rem;
}
.conv-step-card--pub {
    background: linear-gradient(135deg, #f0f9ff, #e8f4fd);
    border-color: rgba(8, 217, 247, 0.3);
}
.conv-step-card--pub h4 {
    color: #0a6fa8;
}
.conv-step-card--pub h4 i {
    color: #08D9F7;
    margin-right: 8px;
}
.conv-step-card--pub .conv-step-date {
    color: #0a6fa8;
    background: rgba(8, 217, 247, 0.1);
}
/* Entregables en cards de categorías */
.conv-cat-entregables {
    margin: 20px 0 4px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(83,90,226,0.25);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.conv-cat-entregables--b {
    border-color: rgba(133,28,183,0.25);
}
.conv-cat-entregables-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 4px;
}
.conv-cat-entregables-title i {
    margin-right: 6px;
    color: #08D9F7;
}
.conv-cat-entregables--b .conv-cat-entregables-title i {
    color: #d78bff;
}
.conv-cat-entregable-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.conv-cat-fase-tag {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(83,90,226,0.3);
    border: 1px solid rgba(83,90,226,0.5);
    color: #08D9F7;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 1px;
}
.conv-cat-fase-tag--b {
    background: rgba(133,28,183,0.3);
    border-color: rgba(133,28,183,0.5);
    color: #d78bff;
}
@media (max-width: 768px) {
    .fepro-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}
@media (max-width: 992px) {
    .fepro-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .fepro-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}
@media (max-width: 768px) {
    .ini-about-img-wrap {
        max-height: 280px;
        overflow: hidden;
        border-radius: 16px;
    }

    .ini-about-img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center;
    }

    .ini-about-badge {
        bottom: 12px;
        right: 12px;
    }
}