/* Premium Look for Participants */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--laef-gold);
    border-radius: 2px;
}

.participante-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.participante-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(239, 203, 108, 0.15);
    border-color: rgba(239, 203, 108, 0.4);
}

.club-logo-container {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.club-logo {
    max-height: 120px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.participante-card:hover .club-logo {
    transform: scale(1.08);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.club-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    line-height: 1.2;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.info-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-icon {
    color: var(--laef-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    padding-top: 2px;
}

.info-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-text strong {
    color: #333;
    font-weight: 600;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.btn-maps {
    background: rgba(239, 203, 108, 0.1);
    color: #1a1a1a;
    font-weight: 600;
    border: 1px solid rgba(239, 203, 108, 0.3);
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: auto;
}

.btn-maps:hover {
    background: var(--laef-gold);
    color: #000;
    border-color: var(--laef-gold);
    box-shadow: 0 5px 15px rgba(239, 203, 108, 0.2);
}
