:root {
    --arduino-teal: #00979D;
    --arduino-orange: #E47128;
    --ur-blue: #001A5F;
    --text-dark: #333;
    --border-light: #eeeeee;
}

/* --- Estilos para controlar el FONDO --- */
body {
    /* Mantenemos tu blanco roto como base */
    background-color: #fdfdfd;

    /* Posicionamiento para el pseudo-elemento */
    position: relative;
    min-height: 100vh;
    /* Asegura que el fondo cubra siempre el alto de la pantalla */

    /* --- Tus otros estilos que ya tenías para el cuerpo --- */
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

/* --- Pseudo-elemento para el fondo translúcido y más pequeño --- */
body::before {
    content: "";
    /* Obligatorio para que funcione */
    position: fixed;
    /* Fijo para que no se mueva con el scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Lo coloca por detrás de todo el contenido */

    /* Carga tu imagen de fondo */
    background-image: url('img/Fondo.png');

    /* Mantenemos el patrón repetido */
    background-repeat: repeat;

    /* --- AJUSTE DE TAMAÑO --- */
    /* Aquí controlas el tamaño. Ejemplo: 150px de ancho y alto proporcional. */
    /* Puedes probar con 100px, 200px, o porcentajes como "10%". */
    background-size: 350px;

    /* --- AJUSTE DE TRANSLUCIDEZ (Más translúcida que 0.8) --- */
    /* 0 es totalmente invisible, 1 es totalmente opaco. 0.3 es muy sutil. */
    opacity: 0.3;
}

/* 1. ILUSTRACIÓN PRINCIPAL */
.illustration-container {
    width: 100%;
    padding: 40px 0 10px 0;
    text-align: center;
}

.main-illustration {
    width: 60%;
    max-width: 650px;
    height: auto;
}

/* 2. ENCABEZADO */
.header-container {
    text-align: center;
    padding: 10px 20px 30px;
    max-width: 800px;
}

.header-container h1 {
    color: var(--arduino-teal);
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
}

.tagline {
    color: var(--arduino-orange);
    font-size: 1.1rem;
    margin-top: 5px;
    font-weight: bold;
}

/* 3. TABLA AZUL CONTENIDA */
.info-row {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 1000px;
    background-color: var(--ur-blue);
    margin: 20px 0;
    padding: 25px;
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 26, 95, 0.15);
}

.info-content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
}

.info-column {
    flex: 1;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);

    /* ESTO ES LO QUE CENTRA TODO */
    display: flex;
    flex-direction: column;
    /* Alinea los elementos uno debajo de otro */
    justify-content: center;
    /* Centrado vertical */
    align-items: center;
    /* Centrado horizontal */
    text-align: center;
    /* Asegura que el texto largo se centre */
}

/* Ajuste para el último cuadro (Lugar) */
.info-column:last-child {
    border-right: none;
    flex: 1.4;
}

.info-column h3 {
    font-size: 1rem;
    margin: 0 0 8px 0;
    font-weight: normal;
    font-style: italic;
}

.big-text {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.sub-text {
    font-size: 1.1rem;
    margin-top: 5px;
    color: var(--arduino-teal);
    font-weight: bold;
}

/* 4. SECCIONES DE TEXTO (Estilo Académico) */
.content-section {
    width: 90%;
    max-width: 1000px;
    margin-top: 30px;
    padding: 0 20px;
}

.intro-text {
    font-size: 1.1rem;
    border-left: 4px solid var(--arduino-orange);
    padding-left: 20px;
    margin-bottom: 40px;
}

h2 {
    color: var(--ur-blue);
    border-bottom: 2px solid var(--arduino-teal);
    padding-bottom: 10px;
    margin-top: 40px;
}

.deadline-box {
    background-color: #fff4ed;
    color: var(--arduino-orange);
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin: 20px 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 12px;
}

li::marker {
    color: var(--arduino-teal);
    font-size: 1.2rem;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0 60px;
}

.track-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.track-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--arduino-teal);
}

/* Contenedor del icono neón */
.track-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 12px rgba(0, 151, 157, 0.4));
    /* Efecto glow neón */
}

.track-item b {
    font-size: 1.2rem;
    color: var(--ur-blue);
    margin-bottom: 8px;
    display: block;
}

.track-item span {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 850px) {
    .info-content-wrapper {
        flex-direction: column;
    }

    .info-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .main-illustration {
        width: 70%;
    }
}

/* Contenedor de la Grilla */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 10px;
}

/* Estilo de la Tarjeta */
.benefit-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Efecto al pasar el mouse */
.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--arduino-orange);
    box-shadow: 0 12px 20px rgba(228, 113, 40, 0.15);
}

/* Iconos */
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: #f8f9fa;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--arduino-teal);
    transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: var(--arduino-teal);
    color: white;
    transform: rotateY(360deg);
}

/* Títulos y Párrafos dentro de la card */
.benefit-card h3 {
    color: var(--ur-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.benefit-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- MENU HAMBURGUESA - ARDUINO DAYS 2026 --- */
:root {
    --arduino-teal: #00979D;
    --arduino-blue-dark: #001A5F;
    --arduino-orange: #E47128;
    --glass-bg: #ffffff;
    /* Fondo blanco para resaltar sobre el patrón de puntos */
}

/* 1. Botón Hamburguesa Flotante */
.hamburger-btn {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1000;
    cursor: pointer;
    background: var(--arduino-blue-dark);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 151, 157, 0.3);
}

.hamburger-btn:hover {
    transform: scale(1.1);
    background: var(--arduino-teal);
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 10px;
}

/* 2. Panel Lateral de Navegación (SIDE-NAV) */
.side-nav {
    height: 100vh;
    width: 0;
    /* Controlado por JavaScript */
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    background-color: var(--glass-bg);
    /* Patrón de rejilla técnica */
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 151, 157, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
    backdrop-filter: blur(12px);
    overflow-x: hidden;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding-top: 80px;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
    border-right: 3px solid var(--arduino-teal);
}

/* 3. Encabezado del Menú (Título Centrado) */
.menu-header {
    text-align: center;
    padding: 20px;
    color: var(--arduino-teal);
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(0, 151, 157, 0.2);
    margin-bottom: 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* 4. Enlaces del Menú (Texto Negro por defecto) */
.menu-links {
    display: flex;
    flex-direction: column;
}

.menu-links a {
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000 !important;
    /* Forzamos color negro */
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s all ease;
    white-space: nowrap;
    position: relative;
    border-left: 5px solid transparent;
}

/* Decoración de "Punto de Soldadura" */
.menu-links a::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--arduino-teal);
    border-radius: 50%;
    opacity: 0.4;
    transition: 0.3s;
}

/* 5. Efecto Hover (Cambio a Naranja) */
.menu-links a:hover {
    background: rgba(0, 151, 157, 0.05);
    color: var(--arduino-orange) !important;
    /* Forzamos color naranja */
    padding-left: 60px;
    border-left: 5px solid var(--arduino-orange);
}

.menu-links a:hover::before {
    opacity: 1;
    background: var(--arduino-orange);
    box-shadow: 0 0 10px var(--arduino-orange);
    transform: scale(1.2);
}

/* 6. Botón de Cerrar (X) */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: #333;
    /* Color oscuro para que se vea en el fondo blanco */
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--arduino-orange);
    transform: rotate(90deg);
}




/* Diseño de Organizadores Innovador */
/* Contenedor General */
.main-wrapper {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}

/* Pestañas Modernas */
.tabs-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
    margin: 40px 0;
}

.tab-link {
    background: #f0f0f0;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    transition: all 0.3s ease;
}

.tab-link.active {
    background: var(--ur-blue);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 26, 95, 0.3);
}

/* Grilla de Contenido */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* PESTAÑA SPEAKERS: Tarjetas Innovadoras */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.speaker-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.card-teal::before {
    background: var(--arduino-teal);
}

.card-orange::before {
    background: var(--arduino-orange);
}

.speaker-avatar {
    width: 100px;
    height: 100px;
    background: #f9f9f9;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid #eee;
}

/* PESTAÑA HACKATHON: Estilo Reto */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.challenge-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 10px solid var(--arduino-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Actividades*/
.org-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 40px 0;
}

.org-box {
    background: var(--ur-blue);
    color: white;
    padding: 40px;
    border-radius: 30px;
    width: 320px;
    text-align: center;
    z-index: 2;
}

.org-box h4 {
    margin: 10px 0;
    font-size: 1.4rem;
    color: var(--arduino-teal);
}

.bridge {
    width: 80px;
    height: 4px;
    background: var(--arduino-teal);
    box-shadow: 0 0 10px var(--arduino-teal);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- SECCIÓN INVITADOS - ARDUINO DAYS 2026 --- */
:root {
    --arduino-teal: #00979D;
    --arduino-orange: #E47128;
    --ur-blue: #001A5F;
    --bg-light: #f4f7f6;
}

/* Estilos de Texto de Sección */
.section-title {
    text-align: center;
    color: var(--ur-blue);
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 5px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Contenedor Flex para las Tarjetas */
.speakers-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* La Tarjeta de Perfil */
.speaker-profile-card {
    background: white;
    width: 380px;
    /* Un poco más ancha para textos largos */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.speaker-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Acentos de color en la parte superior */
.card-accent {
    height: 8px;
    width: 100%;
}

.card-accent.teal {
    background: var(--arduino-teal);
}

.card-accent.orange {
    background: var(--arduino-orange);
}

/* Cabecera: Foto y Nombre */
.profile-header {
    display: flex;
    padding: 25px;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to bottom, #fcfcfc, #ffffff);
}

/* --- CORRECCIÓN CRÍTICA PARA LA IMAGEN --- */
.avatar-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    /* Esto recorta la imagen en círculo */
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    /* Evita que el círculo se aplaste */
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mantiene la proporción de la cara sin estirarla */
    object-position: center;
}

.header-text h4 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--ur-blue);
    line-height: 1.2;
}

.specialty-tag {
    font-size: 0.8rem;
    color: var(--arduino-teal);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* Cuerpo de la Tarjeta */
.profile-body {
    padding: 0 25px 25px 25px;
    flex-grow: 1;
}

.bio {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Etiquetas de Especialidad (Chips) */
.expertise-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-chips span {
    background: #eef9f9;
    color: var(--arduino-teal);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(0, 151, 157, 0.15);
    transition: 0.2s;
}

.expertise-chips span:hover {
    background: var(--arduino-teal);
    color: white;
}



/* --- ESTILOS DEL WORKSHOP --- */
.workshop-section {
    padding: 60px 20px;
    width: 100%;
    max-width: 1100px;
}

.workshop-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(0, 151, 157, 0.2);
    box-shadow: 0 20px 50px rgba(0, 26, 95, 0.1);
    overflow: hidden;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 151, 157, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.nicla-badge {
    background: var(--arduino-teal);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.workshop-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.workshop-info {
    flex: 1;
    min-width: 300px;
}

.workshop-title {
    font-size: 2.8rem;
    color: var(--arduino-blue-dark);
    margin: 0;
    line-height: 1.1;
}

.workshop-subtitle {
    color: var(--arduino-teal);
    font-size: 1.4rem;
    margin-top: 10px;
    font-weight: 500;
}

.workshop-description {
    color: #444;
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.workshop-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.workshop-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: #2c3e50;
}

/* Botón llamativo */
.workshop-btn {
    background: var(--arduino-orange);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(228, 113, 40, 0.3);
}

.workshop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(228, 113, 40, 0.5);
    background: #ff7e33;
}

/* --- ANIMACIÓN NICLA SENSE --- */
.sensor-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 300px;
}

.nicla-board {
    width: 150px;
    height: 150px;
    background: #222;
    border-radius: 15px;
    position: relative;
    border: 4px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 0.6rem;
    font-weight: bold;
}

.led-indicator {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 15px #00ff00;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.data-stream {
    position: absolute;
    display: flex;
    gap: 5px;
    bottom: -20px;
}

.bar {
    width: 8px;
    background: var(--arduino-teal);
    border-radius: 4px;
}

.pulse {
    animation: flow 1.5s infinite ease-in-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes flow {

    0%,
    100% {
        height: 20px;
        opacity: 0.5;
    }

    50% {
        height: 60px;
        opacity: 1;
    }
}


/*MATERIALES*/
/* Contenedor Principal */
.materials-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.materials-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Cuadrícula de Materiales */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Tarjetas Estilo "Tech" */
.material-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 151, 157, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Iconos circulares */
.material-icon-box {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px dashed var(--arduino-teal);
    transition: 0.3s;
}

.material-card:hover .material-icon-box {
    border-style: solid;
    background: white;
    transform: rotate(10deg);
}

.material-emoji {
    font-size: 2rem;
}

.material-card h3 {
    color: var(--arduino-blue-dark, #001A5F);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lista de materiales */
.material-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.material-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
}

.material-list li::before {
    content: "↪";
    margin-right: 12px;
    color: var(--arduino-teal, #00979D);
    font-weight: bold;
}

.material-list li:last-child {
    border-bottom: none;
}

/* Líneas de acento inferior */
.card-footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
}

.card-footer-line.teal {
    background: #00979D;
}

.card-footer-line.orange {
    background: #E47128;
}

.card-footer-line.blue {
    background: #001A5F;
}

/* Botón de descarga */
.download-guide {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px dashed #ccc;
}

.btn-download {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--arduino-blue-dark, #001A5F);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-download:hover {
    background: var(--arduino-teal, #00979D);
    transform: scale(1.05);
}


/* ORGANIZADORES*/
.organizers-section {
    padding: 80px 20px;
    background-color: transparent;
    /* Permite ver tu fondo de circuitos */
}

.organizers-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Cuadrícula de Organizadores */
.organizers-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Tarjeta de Organizador */
.organizer-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.organizer-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 26, 95, 0.08);
}

/* Contenedor de Logos */
.org-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.org-logo {
    max-height: 80px;
    max-width: 200px;
    filter: grayscale(100%);
    /* Efecto serio por defecto */
    opacity: 0.7;
    transition: 0.4s ease;
}

.organizer-card:hover .org-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Placeholder para GIVIA si no tienes el logo a mano */
.placeholder-logo {
    font-weight: 900;
    font-size: 2rem;
    color: var(--arduino-teal, #00979D);
    letter-spacing: 2px;
}

.organizer-card h3 {
    font-size: 1.2rem;
    color: var(--arduino-blue-dark, #001A5F);
    margin-bottom: 10px;
}

.organizer-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Etiqueta de Rol */
.org-role {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f4f4;
    color: var(--arduino-teal, #00979D);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
}

.organizers-footer {
    margin-top: 50px;
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* --- ESTILOS LÍDERES ORGANIZADORES --- */
.organizers-leads {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: rgba(0, 151, 157, 0.05);
    padding: 20px;
    border-radius: 50px;
    /* Estilo píldora */
    display: inline-flex;
    /* Para que se ajuste al contenido */
}

.lead-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lead-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--arduino-teal);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lead-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-info {
    text-align: left;
}

.lead-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--arduino-blue-dark);
}

.lead-info span {
    font-size: 0.8rem;
    color: var(--arduino-orange);
    font-weight: bold;
}

.lead-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Ajuste móvil */
@media (max-width: 600px) {
    .organizers-leads {
        flex-direction: column;
        border-radius: 20px;
        gap: 20px;
    }

    .lead-divider {
        width: 80%;
        height: 1px;
    }
}