/* ========================================
   INDEX - DISEÑO PROFESIONAL Y ATRACTIVO
======================================== */

main {
    min-height: 60vh;
}

/* ========================================
   HERO SECTION - REDISEÑADO
======================================== */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92), rgba(15, 23, 42, 0.88)), 
        url('/assets/images/event/evento14.jpg') center/cover fixed;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(249, 250, 251, 1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.2;
}

.hero h1 .highlight-text {
    color: var(--accent);
    display: block;
    font-size: 4rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.hero-lema {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0 1.5rem;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 400;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.6s both;
}

.hero-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
}

.hero-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.hero-info-card i {
    font-size: 2rem;
    color: var(--accent);
}

.hero-info-card div {
    text-align: left;
}

.hero-info-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.hero-info-card span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease 0.8s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
}

.btn-hero.primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-hero.primary:hover {
    background: #ea580c;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.btn-hero.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   STATS BANNER
======================================== */
.stats-banner {
    background: white;
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-content strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.2;
}

.stat-content span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ========================================
   EVENTO SECTION - MEJORADO
======================================== */
.evento-section {
    background: white;
    padding: 5rem 0;
}

.venue-showcase {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.venue-main {
    position: relative;
}

.venue-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    height: 500px;
    margin-bottom: 1.5rem;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.venue-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Features debajo de la imagen */
.venue-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f9fafb;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Card derecho simplificado */
.venue-info-card {
    background: white;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.venue-info-header {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    padding: 2rem;
    flex-shrink: 0;
}

.venue-info-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-info-header p {
    margin: 0.75rem 0;
    line-height: 1.6;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-map:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.venue-map {
    padding: 1.5rem;
    background: white;
    flex-grow: 1;
}

.venue-map iframe {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* Ocultar elementos no usados en esta versión */
.venue-features-sidebar {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .venue-showcase {
        grid-template-columns: 1fr;
    }
    
    .venue-info-card {
        position: static;
    }
    
    .venue-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .venue-image-container {
        height: 300px;
    }
    
    .venue-features {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   PROGRAMA SECTION
======================================== */
.programa-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 5rem 0;
}

.programa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.programa-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.programa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.programa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--primary);
}

.programa-day {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.programa-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.programa-card h3 i {
    color: var(--accent);
}

.programa-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.programa-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark);
    font-size: 0.9rem;
}

.programa-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.horarios-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.horarios-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.horario-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 16px;
}

.horario-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.horario-item span {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========================================
   EXPOSITOR SECTION
======================================== */
.expositor-section {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.expositor-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.expositor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.expositor-image {
    position: relative;
}

.expositor-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.expositor-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}

.expositor-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-name {
    color: var(--accent);
    display: block;
    margin-top: 0.5rem;
}

.expositor-role {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.expositor-description {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.expositor-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.expositor-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.expositor-features .feature i {
    color: var(--accent);
}

/* ========================================
   ORGANIZADOR SECTION
======================================== */
.organizador-section {
    background: white;
    padding: 5rem 0;
}

.organizador-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.organizador-main {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 24px;
}

.organizador-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.organizador-logo-main {
    width: 180px;
    height: 180px;
    object-fit: contain;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.organizador-intro {
    flex: 1;
}

.organizador-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
}

.organizador-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.org-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.org-stat i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.org-stat strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.org-stat span {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
    display: block;
}

.organizador-links h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.org-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.org-link-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.org-link-card > i:first-child {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.org-link-card > div {
    flex: 1;
}

.org-link-card strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.org-link-card span {
    color: var(--gray);
    font-size: 0.9rem;
}

.org-link-card > i:last-child {
    color: var(--primary);
    font-size: 1.2rem;
}

.social-links-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.social-links-section h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
    background: #ea580c;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.cta-features i {
    font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venue-showcase {
        grid-template-columns: 1fr;
    }
    
    .venue-info-card {
        position: static;
    }
    
    .programa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .organizador-content {
        grid-template-columns: 1fr;
    }
    
    .organizador-header {
        flex-direction: column;
        text-align: center;
    }
    
    .organizador-logo-main {
        margin: 0 auto;
    }
    
    .organizador-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-links-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .expositor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expositor-image img {
        margin: 0 auto;
    }
    
    .expositor-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h1 .highlight-text {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-info {
        flex-direction: column;
    }
    
    .hero-info-card {
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .programa-grid {
        grid-template-columns: 1fr;
    }
    
    .horarios-grid {
        grid-template-columns: 1fr;
    }
    
    .organizador-stats {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
