:root {
    /*--bg-color: #080a09;*/
    --bg-color: #ffffff;
    --surface-color: #121614;
    --surface-light: #1b221f;
    --primary-color: #e63946;
    /* Strong red */
    --accent-color: #c0a062;
    /* Gold/Brass */
    --military-green: #3a4f41;
    --text-main: #ffffff;
    --text-muted: #595c61;

    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Black Ops One', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


main {
    padding: 120px 60px 0px 60px;
}

.main-login {}

.main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    justify-content: left;
    gap: 30px;
}

.contenido {
    flex: 1 1 80%;
}

.submenu {
    width: 20%;
    background-color: #f1f1f1;
    padding: 10px 20px 10px 20px;
    clip-path: polygon(15px 0,
            calc(100% - 15px) 0,
            100% 15px,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            15px 100%,
            0 calc(100% - 15px),
            0 15px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.submenu .nav-link {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0;
}

.submenu .nav-link:hover {
    text-decoration: none;
    color: var(--accent-color);
}


/* CRT / Videogame effects */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.4;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    z-index: 9998;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 10, 9, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--military-green);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-gpm {
    color: var(--primary-color);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.logo-year {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

/* Hero Section */
.hero-page {
    height: 8vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 10% 5%;
    z-index: 50;
    background-color: #06c7b7;
    background-color: var(--primary-color);

}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Gradient overlay + placeholder background */
    /*background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(126, 126, 126, 0.4) 10%, rgba(8,10,9,0.8) 100%), url('https://images.unsplash.com/photo-1542382046-6819eb7b372e?auto=format&fit=crop&q=80&w=2000') no-repeat center center;*/
    background-size: cover;
    z-index: -1;

}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;

}

.hero-content {
    flex: 1;
    max-width: 900px;
    position: relative;
    z-index: 2;

}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
}

.hero-person-img {
    max-height: 95vh;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.3));
    mix-blend-mode: screen;
    /* Elimina el fondo negro si la imagen está en formato JPG con fondo negro */
}

.badge {
    display: inline-block;
    padding: 0.2rem 1rem;
    background: var(--accent-color);
    color: var(--main-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 1px solid var(--accent-color);
    margin-bottom: 1.5rem;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    margin-top: 20px;
}

.glitch {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.glitch-page {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #0ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

.sponsors img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes glitch-anim {
    0% {
        clip: rect(21px, 9999px, 86px, 0);
    }

    20% {
        clip: rect(4px, 9999px, 83px, 0);
    }

    40% {
        clip: rect(65px, 9999px, 54px, 0);
    }

    60% {
        clip: rect(11px, 9999px, 14px, 0);
    }

    80% {
        clip: rect(98px, 9999px, 72px, 0);
    }

    100% {
        clip: rect(43px, 9999px, 16px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(77px, 9999px, 12px, 0);
    }

    20% {
        clip: rect(23px, 9999px, 98px, 0);
    }

    40% {
        clip: rect(56px, 9999px, 42px, 0);
    }

    60% {
        clip: rect(32px, 9999px, 78px, 0);
    }

    80% {
        clip: rect(89px, 9999px, 21px, 0);
    }

    100% {
        clip: rect(15px, 9999px, 66px, 0);
    }
}

.hero-subtitle {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.hero-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.main {
    padding-top: 30px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.main-login {
    padding-top: 30px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.main a {
    color: #e63946;
    text-decoration: none;
    font-weight: 400;
}

.main a:hover {
    text-decoration: underline;
}

.main-login .login {
    background-color: #f1f1f1;
    padding: 10px 20px 10px 20px;
    clip-path: polygon(15px 0,
            calc(100% - 15px) 0,
            100% 15px,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            15px 100%,
            0 calc(100% - 15px),
            0 15px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}


.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.detail-item span {
    color: var(--military-green);

}

.detail-item svg {
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-primary:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.btn-enviar {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-enviar:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}


.btn-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    margin-top: 1rem;
}

.center .divider {
    margin: 1rem auto 0;
}

/* About Section */
.about-section {
    background-color: var(--surface-color);
    background-image:
        radial-gradient(var(--surface-light) 1px, transparent 1px);
    background-size: 30px 30px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(27, 34, 31, 0.6);
    border: 1px solid var(--military-green);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-color);
    background: rgba(27, 34, 31, 0.9);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-main);
    font-size: 0.95rem;
}

/* Program Section */
.program-section {
    background-color: var(--surface-color);
    background-image:
        radial-gradient(var(--surface-light) 1px, transparent 1px);
    background-size: 30px 30px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.program-highlight {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-color) 100%);
    border: 1px solid var(--military-green);
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.program-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.highlight-label {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.highlight-speaker {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.workshops-container {
    background: var(--surface-color);
    padding: 3rem;
    border: 1px solid #222;
    margin-bottom: 4rem;
}

.workshop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.workshop-header h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.workshop-header p {
    color: var(--text-main);
    font-size: 1.1rem;
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.block-card {
    background: var(--surface-light);
    padding: 2rem;
    position: relative;
    border-top: 3px solid var(--military-green);
    transition: all 0.3s ease;
}

.block-card:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.block-number {
    position: absolute;
    top: -1.5rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.block-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.block-card p {
    color: var(--text-main);
    font-size: 0.95rem;
}

/* Book Signing Section */
.booksigning-section {
    background-color: var(--bg-color);
}

.authors-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.author-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-color) 100%);
    border: 1px solid var(--military-green);
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.author-name {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.author-bio {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
}

.author-bio em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
}

.author-books {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-end;
    align-items: flex-start;
}

.book-cover {
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
}

.book-cover img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid var(--military-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.book-cover:hover img {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.book-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Inscription Section */
.inscription-section {
    background-color: var(--surface-color);
    background-image:
        radial-gradient(var(--surface-light) 1px, transparent 1px);
    background-size: 30px 30px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.inscription-card {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-color) 100%);
    border: 1px solid var(--military-green);
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.inscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.inscription-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 2rem;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: 2px;
    text-align: center;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inscription-services {
    flex: 1;
}

.services-title {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--military-green);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-left-color: var(--primary-color);
    background: rgba(27, 34, 31, 0.5);
    transform: translateX(5px);
}

.service-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-text strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-text span {
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.85;
}

.inscription-cta {
    text-align: center;
    margin-top: 3rem;
}

.form-label {
    color: rgb(102, 102, 102);
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0;
    border-top: 1px solid var(--primary-color);
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
}

.dot {
    color: var(--primary-color);
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .blocks-grid {
        grid-template-columns: 1fr !important;
    }

    .inscription-card {
        flex-direction: column;
        align-items: center;
    }

    .inscription-price {
        min-width: unset;
        width: 100%;
    }

    .author-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .author-books {
        justify-content: center;
    }

    .glitch {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-details {
        flex-direction: column;
        gap: 1rem;
    }

}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(8, 10, 9, 0.98);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 2rem;
    }

    .glitch {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero .btn-primary {
        display: none;
    }

    .hero .badge {
        margin-top: 120px;
    }

    .hero-tagline {
        font-size: 1rem;

    }


}

/* Schedule Styles */
.schedule-container {
    margin-bottom: 4rem;
}

.schedule-day {
    background: var(--surface-light);
    border: 1px solid var(--military-green);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.day-title {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
}

.day-title small {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0.25rem;
}

.block-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
    padding-bottom: 0.5rem;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--military-green);
}

.schedule-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    background: var(--surface-color);
    transition: background 0.3s ease;
}

.schedule-row:hover {
    background: var(--surface-light);
}

.schedule-row>div {
    padding: 1.2rem;
}

.schedule-row .time {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    border-right: 1px solid var(--military-green);
    display: flex;
    align-items: center;
}

.schedule-row .event {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.5;
}

.schedule-row.highlight {
    background: rgba(230, 57, 70, 0.1);
    border-right: 4px solid var(--primary-color);
}

.schedule-row.highlight .time {
    color: var(--primary-color);
}

.schedule-table.mini .schedule-row {
    grid-template-columns: 200px 150px 1fr;
}

.schedule-table.workshop-table .schedule-row {
    grid-template-columns: 80px 220px 1fr 1.5fr;
}

.schedule-header {
    display: grid;
    grid-template-columns: 200px 150px 1fr;
    background: var(--military-green);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-table.workshop-table .schedule-header {
    grid-template-columns: 80px 220px 1fr 1.5fr;
}

.schedule-table.awards-table .schedule-row {
    grid-template-columns: 200px 80px 1fr;
}

.schedule-table.awards-table .schedule-header {
    grid-template-columns: 200px 80px 1fr;
}

.schedule-header div {
    padding: 1rem 1.2rem;
}

@media (max-width: 992px) {
    .schedule-row {
        grid-template-columns: 1fr !important;
    }

    .schedule-row .time {
        border-right: none;
        border-bottom: 1px solid var(--military-green);
        padding-bottom: 0.5rem;
    }

    .schedule-header {
        display: none !important;
    }

    .schedule-table.mini .schedule-row,
    .schedule-table.workshop-table .schedule-row {
        grid-template-columns: 1fr !important;
    }
}

/* Committee Section */
.committee-section {
    background-color: var(--bg-color);
}

.committee-block {
    margin-bottom: 5rem;
}

.block-subtitle {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.committee-table .schedule-row {
    grid-template-columns: 200px 250px 1fr;
}

.committee-table .schedule-header {
    grid-template-columns: 200px 250px 1fr;
}

.committee-intro {
    font-size: 1.2rem;
    color: var(--military-green);
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    max-width: 800px;
}

.experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.expert-card {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-color) 100%);
    border: 1px solid var(--military-green);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.expert-card::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.expert-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.expert-name {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.expert-desc {
    color: var(--text-main);
    line-height: 1.6;
}

.expert-desc strong {
    color: var(--primary-color);
}

@media (max-width: 992px) {

    .committee-table .schedule-row,
    .experts-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Sponsors & Collaborators Section */
.sponsors-section {
    background-color: var(--bg-color); /* Fondo blanco */
    padding: 6rem 0;
}

.sponsors-group {
    margin-bottom: 4rem;
}

.sponsors-group:last-child {
    margin-bottom: 0;
}

.sponsors-subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.logos-grid-break {
    flex-basis: 100%;
    width: 100%;
    height: 0;
}

.logo-item {
    background: #ffffff; /* Base blanca */
    padding: 1.5rem;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 110px;
    transition: all 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .logos-grid {
        gap: 1.5rem;
    }
    .logo-item {
        width: 140px;
        height: 90px;
        padding: 1rem;
    }
    .sponsors img {
        max-height: 60px;
        width: auto;
    }

    .profile-page table, thead, tbody, th, td, tr {
        display: block;
    }

    .profile-page thead {
        display: none;
    }

    .profile-page tr {
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        padding: 1rem;
    }

    .profile-page td {
        display: flex;

        padding: 0.5rem 0;
        border: none;
    }

    .profile-page td::before {
        content: attr(data-label);
        font-weight: bold;
    }

}