.topbar-modern {
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.topbar-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.topbar-promo:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.promo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 3s linear infinite;
}

.promo-icon i {
    font-size: 16px;
    color: #166534;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-highlight {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.promo-text {
    font-size: 12px;
    opacity: 0.9;
}

.topbar-contact-group {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-item-modern:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item-modern:hover .contact-icon-wrapper {
    background-color: #4ade80;
}

.contact-icon-wrapper i {
    font-size: 16px;
}

.contact-item-modern.whatsapp:hover .contact-icon-wrapper {
    background-color: #25d366;
}

.contact-item-modern.email:hover .contact-icon-wrapper {
    background-color: #4ade80;
}

.contact-text {
    font-size: 14px;
    font-weight: 500;
}

.topbar-social-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.social-icons-group {
    display: flex;
    gap: 8px;
}

.social-modern {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.social-modern:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-modern.facebook:hover {
    background-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-modern.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}

.social-modern.email-social:hover {
    background-color: #4ade80;
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

/* RESPONSIVE - OCULTAR EN MÓVILES */
@media (max-width: 768px) {
    .topbar-modern {
        display: none;
    }
}
