/* Estilos generales para la página de ranking */
.ranking-container {
    margin-top: 70px;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Selector de ranking (General/Masculino/Femenino) */
.ranking-selector {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
    flex-wrap: wrap;
}

.ranking-tab {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #2c3e50;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 15px;
}

.ranking-tab:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.ranking-tab.active {
    background-color: #3498db;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Contenido principal del ranking */
.ranking-content {
    margin-top: 30px;
}

/* Estilos para la página de contacto */
.contacto-main {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.contacto-header {
    text-align: center;
    margin-bottom: 40px;
}

.contacto-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contacto-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contacto-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.contacto-info {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contacto-redes {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    background-color: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-content h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}

.info-content p {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-weight: 500;
}

.info-content small {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.contacto-redes h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contacto-redes > p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.redes-sociales {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.red-social-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.red-social-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.red-social-icon {
    background-color: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.red-social-content h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}

.red-social-content p {
    margin: 0 0 3px 0;
    color: #2c3e50;
    font-weight: 500;
}

.red-social-content small {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.contacto-mapa {
    margin-top: 30px;
}

.contacto-mapa h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.mapa-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mapa-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}

.mapa-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #3498db;
}

.mapa-placeholder p {
    margin: 0 0 5px 0;
    font-weight: 500;
}

.mapa-placeholder small {
    color: #6c757d;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .ranking-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .ranking-container {
        padding: 15px;
        margin-top: 60px;
    }
    
    .contacto-content {
        flex-direction: column;
    }
    
    .contacto-header h1 {
        font-size: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .red-social-item {
        flex-direction: column;
        text-align: center;
    }
    
    .red-social-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .ranking-table td:first-child,
    .ranking-table th:first-child {
        width: 1% !important;
        white-space: nowrap;
    }
    
    .contacto-info,
    .contacto-redes {
        padding: 20px;
    }
    
    .mapa-container {
        padding: 20px;
    }
}