
/* --- Exhibitors Section --- */

.arn-exhibitors {
    position: relative;
    /* Altura suficiente para mostrar la imagen y contenido */
    min-height: 500px; 
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff; /* Respaldo blanco */
}

/* Wrapper para posicionar la imagen absoluta al fondo */
.arn-exhibitors__bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.arn-exhibitors__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Opcional: alinear la imagen más a la derecha si el sujeto importante está ahí */
    object-position: center right; 
    filter: blur(2px);
}

/* EL EFECTO MÁGICO: Gradiente de Blanco a Transparente */
.arn-exhibitors__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        #ffffff 0%,      /* Blanco sólido al inicio */
        #ffffff 45%,     /* Blanco sólido hasta el 45% del ancho (cubre el texto) */
        rgba(255, 255, 255, 0) 100% /* Totalmente transparente al final */
    );
    z-index: 1;
}

/* Contenedor del Texto */
.arn-exhibitors__container {
    position: relative;
    z-index: 2; /* Encima del overlay */
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 18px;
    width: 100%;
}

.arn-exhibitors__content {
    max-width: 550px; /* Limitamos el ancho para que no se monte sobre la parte visible de la foto */
}

.arn-exhibitors__title {
    font-size: 36px;
    color: #111827; /* Color oscuro (o el azul primario #0b4d8a si prefieres) */
    font-weight: 500; /* Peso medio según la imagen */
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.arn-exhibitors__desc {
    font-size: 15px;
    line-height: 1.8; /* Buen espaciado de línea para lectura */
    color: var(--arn-color-text-strong); /* Gris oscuro */
    margin-bottom: 32px;
}

.arn-exhibitors__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #003366; /* Azul oscuro profundo según la imagen */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.arn-exhibitors__btn:hover {
    background-color: var(--arn-color-primary); /* Un azul un poco más claro al hover */
}

/* Responsividad */

@media (max-width: 900px) {
    .arn-exhibitors__overlay {
        /* En tablets, reducimos el área blanca sólida */
        background: linear-gradient(90deg, 
            #ffffff 0%, 
            #ffffff 30%, 
            rgba(255, 255, 255, 0.8) 60%,
            rgba(255, 255, 255, 0.2) 100%
        );
    }
}

@media (max-width: 720px) {
    .arn-exhibitors {
        min-height: auto;
        flex-direction: column; /* Apilar en móvil */
    }

    /* En móvil, la imagen va arriba o abajo, no de fondo con fade lateral */
    .arn-exhibitors__bg-wrapper {
        position: relative;
        height: 250px; /* Altura fija para la imagen */
        order: 1; /* Opcional: Poner imagen primero o segundo */
    }
    
    .arn-exhibitors__overlay {
        display: none; /* Quitamos el gradiente lateral complejo en móvil */
    }

    .arn-exhibitors__container {
        padding: 40px 18px;
        order: 2;
    }

    .arn-exhibitors__content {
        max-width: 100%;
    }

    .arn-exhibitors__title {
        font-size: 30px;
    }
}

/* --- Speaker / Team Grid Section --- */

.arn-speakers-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.arn-speakers-grid {
    display: grid;
    /* 4 columnas exactas en escritorio */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

/* --- Speaker Card Component --- */

.arn-speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 30px; 
}

.arn-section-title{
    font-size: 36px;
    color: #111827; /* Color oscuro (o el azul primario #0b4d8a si prefieres) */
    font-weight: 500; /* Peso medio según la imagen */
    margin: 0 0 24px 0;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Imagen Circular */
.arn-speaker__img-wrapper {
    width: 180px; /* Tamaño del círculo */
    height: 180px;
    border-radius: 50%; /* Hace la imagen redonda */
    overflow: hidden;
    margin-bottom: 24px;
    /* Opcional: Sombra suave */
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arn-speaker__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Efecto Blanco y Negro como en la imagen de referencia */
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.5s ease;
}

/* Efecto Hover: Color y Zoom */
.arn-speaker:hover .arn-speaker__img-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.arn-speaker:hover .arn-speaker__img {
    filter: grayscale(0%); /* Vuelve a color */
    transform: scale(1.05);
}

/* Textos */
.arn-speaker__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.arn-speaker__name {
    margin: 0;
    font-size: 18px;
    font-weight: 700; /* Negrita fuerte */
    text-transform: uppercase;
    color: #333333; /* Gris muy oscuro */
    letter-spacing: 0.5px;
}

/* La Línea Roja */
.arn-speaker__separator {
    width: 40px; /* Ancho de la línea */
    height: 3px; /* Grosor */
    background-color: #e11d48; /* Rojo intenso (o usa var(--arn-color-accent)) */
    margin: 12px 0; /* Espacio arriba y abajo */
}

.arn-speaker__role {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #666666; /* Gris medio */
    letter-spacing: 0.5px;
}

/* --- Responsividad --- */

@media (max-width: 1024px) {
    .arn-speakers-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 por fila en tablets */
        gap: 40px;
        justify-items: center; /* Centrar si sobran espacios */
    }
}

@media (max-width: 600px) {
    .arn-speakers-grid {
        grid-template-columns: 1fr; /* 1 por fila en móvil */
        gap: 50px;
    }
    
    .arn-speaker__img-wrapper {
        width: 150px; /* Un poco más pequeño en móvil */
        height: 150px;
    }
}