/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f5f7fa; /* Volviendo a la normalidad, fondo blanco/grisáceo */
}

a {
    text-decoration: none;
}

/* Header profesional */
header {
    background-color: #0b1c3d;
    color: #fff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav {
  max-width: 1600px; /* Ampliado para dar mÃ¡s espacio a los lados */
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px; /* MÃ¡s espacio a los lados */
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo {
    height: 150px;
    width: auto;
}

.logo-title h1, .logo-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap; /* Fuerza a que estÃ© en una sola lÃ­nea siempre */
}

.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav ul li a {
    color: white;
    font-weight: 700;
    padding: 8px 12px;
    transition: 0.3s;
  white-space: nowrap;
}

.nav ul li a:hover {
    background-color: #2563eb;
    border-radius: 6px;
}

.nav .btn-socio {
    background-color: #2563eb;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.nav .btn-socio:hover {
    background-color: #1e4db7;
}

/* Sección de Aficionados */
#aficionados {
    padding: 60px 40px;
    max-width: 1600px;
    margin: 120px auto 80px auto; /* Aumentado el margen superior */
    text-align: center;
}

.header-section {
    margin-bottom: 50px;
}

#aficionados h3 {
    font-size: 3rem; /* Ligeramente más grande */
    color: #0b1c3d;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.header-section .subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 850px;
    margin: 30px auto 0;
    font-weight: 300;
    line-height: 1.8;
}

.aficionados-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    justify-content: center;
    max-width: 1550px;
    margin: 0 auto;
}

.aficionado-item {
    background-color: #ffffff;
    border-radius: 16px; /* Más redondeado */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Sombra más suave por defecto */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03); /* Borde sutil */
}

.aficionado-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(11, 28, 61, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.img-container {
    width: 100%;
    overflow: hidden;
    background-color: #0b1c3d;
}

.img-container img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-bottom: 5px solid #2563eb;
    transition: transform 0.4s ease;
}

.aficionado-item:hover .img-container img {
    transform: scale(1.05);
}

.aficionado-content {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.aficionado-content h4 {
    color: #0b1c3d;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.aficionado-content .role {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: rgba(37, 99, 235, 0.05);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: center;
}

.aficionado-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Footer */
footer {
    background-color: #0b1c3d;
    color: #cbd5f5;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
}

footer a {
    color: #2563eb;
}

footer a:hover {
    color: #ffffff;
}

.social-links {
    margin-top: 20px;
}

.social-links a { color: #ffffff;
    margin: 0 15px;
    font-size: 30px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffffff;
}

/* Tablet Responsive */
@media(max-width: 1200px) {
    .aficionados-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width: 1024px) {
    #aficionados h3 {
        font-size: 2.4rem;
    }
    .aficionados-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive General */
@media(max-width: 1024px) {
    .nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .aficionados-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo {
        height: 100px;
    }

    .nav ul {
        gap: 10px;
        font-size: 0.9rem;
    }

    #aficionados {
        padding: 40px 20px;
        margin: 40px 15px;
    }
    
    #aficionados h3 {
        font-size: 2rem;
    }

    .header-section .subtitle {
        font-size: 1rem;
    }
}

@media(max-width: 480px) {
    .aficionados-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile landscape */
@media (max-height: 600px) and (orientation: landscape) {
    .logo {
        height: 80px;
    }
}


