:root {
    --brand-blue: #1a1a3a;
    --brand-blue-light: #211e43;
    --brand-celeste: #bac5e6;
    --white: #ffffff;
    --gray-light: #f4f4f9;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #ffffff;
}

/* Conoce Más - Desktop Only Layout */

.conoce-mas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
    font-family: 'Nunito', sans-serif;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}



/* Left Column - Main Info */
.conoce-main-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 1.5rem;
    display: block;
}

.main-image-container {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #211e43;
    margin: 0;
}

.event-desc-main {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Info Cards from evento.php */
.evento-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.conoce-info-item {
    background: #211e43;
    border-radius: 1.5rem;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 20px rgba(33, 30, 67, 0.15);
    transition: transform 0.3s ease;
}

.conoce-info-item:hover {
    transform: translateY(-5px);
}

.conoce-info-item .material-symbols-outlined {
    font-size: 2rem;
}

.conoce-info-item span:not(.material-symbols-outlined) {
    font-weight: 700;
    font-size: 1rem;
}

/* Right Column - Side Events */
.conoce-side-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #211e43;
    margin-bottom: 0.5rem;
    border-bottom: 3px solid #211e43;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.side-event-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.side-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.side-event-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.side-event-body {
    padding: 1.2rem;
}

.side-event-date {
    font-size: 0.85rem;
    color: #0f766e;
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: block;
}

.side-event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #211e43;
    margin: 0;
    line-height: 1.3;
}

/* Desktop Only Warning */
.desktop-only-warning {
    display: none;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: #211e43;
    color: white;
}

@media (max-width: 1023px) {
    .conoce-mas-container {
        display: none;
    }
    .desktop-only-warning {
        display: flex;
    }
}

/* Additional specific sections */
.conoce-countdown-box {
    background: #f8f9ff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e1e4f5;
}

.conoce-map-box {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.conoce-action-box {
    text-align: center;
    padding: 1rem 0;
}

.btn-conoce-tickets {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #211e43;
    color: white;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-conoce-tickets:hover {
    background: #353261;
}

/* Footer Styles */
.landing-footer {
    background-color: var(--brand-blue);
    padding: 60px 100px 30px;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 80px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--brand-celeste);
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Header for Landing - Adaptado */
.landing-header {
    background-color: var(--brand-blue);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-volver-landing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.btn-volver-landing:hover {
    color: var(--brand-celeste);
    transform: translateX(-5px);
}

.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-center img {
    height: 50px;
}

.search-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-container input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 15px 8px 35px;
    color: var(--white);
    width: 250px;
    outline: none;
    transition: var(--transition-smooth);
}

.search-container input:focus {
    background: rgba(255, 255, 255, 0.25);
    width: 300px;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.filter-icon {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-icon:hover {
    background: var(--brand-celeste);
    color: var(--brand-blue);
}

/* Category Badge Main */
.category-badge-main {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

.badge-icon {
    width: 24px;
    height: 24px;
}

.badge-text {
    font-weight: 800;
    color: #211e43;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Sidebar Event Meta */
.side-event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.side-event-category {
    font-size: 0.75rem;
    font-weight: 800;
    color: #211e43;
    text-transform: uppercase;
    background: #f0f2ff;
    padding: 2px 8px;
    border-radius: 4px;
}

.side-event-date {
    font-size: 0.85rem;
    color: #0f766e;
    font-weight: 700;
}


