/* Barra Superior de Contacto y Redes Sociales */
.topbar {
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1000;
}

.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Información de contacto */
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar-contact-item i {
    color: #1a4b8c;
    font-size: 14px;
}

.topbar-contact-item:hover {
    color: #1a4b8c;
}

.topbar-contact-item span {
    font-weight: 500;
}

/* Redes sociales */
.topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.topbar-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Colores específicos por red social */
.topbar-social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.topbar-social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.topbar-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #bc1888;
}

.topbar-social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.topbar-social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

/* Responsive */
@media (max-width: 992px) {
    .topbar-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .topbar-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .topbar {
        font-size: 12px;
    }
    
    .topbar-contact {
        gap: 10px;
    }
    
    .topbar-contact-item span {
        display: none;
    }
    
    .topbar-contact-item i {
        font-size: 16px;
    }
    
    .topbar-social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 6px 0;
    }
    
    .topbar-contact {
        gap: 8px;
    }
    
    .topbar-social {
        gap: 8px;
    }
}

 
