/* Barra superior de redes sociales */
.top-social-bar {
    background-color: #000000;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.top-social-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-social-icons {
    display: flex;
    gap: 15px;
}

.top-social-icon {
    color: #ffffff;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 2px;
}

.top-social-icon:hover {
    background-color: var(--color-ochre);
    transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .top-social-container {
        justify-content: center;
    }
    
    .top-social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .header {
        top: 42px; /* Ajustado para la barra social en móviles */
    }
    
    .hero-section {
        margin-top: 122px; /* Ajustado para header + barra social en móviles */
    }
    
    .page-hero {
        margin-top: 122px; /* Ajustado para header + barra social en móviles */
    }
}
