/* ===== DIGISOFT LAUNCH BANNER - digisol.do ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

.digisoft-launch-banner {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #172554 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 150;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glow / Borde brillante en la parte inferior */
.digisoft-launch-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(14, 165, 233, 0.6) 20%, 
        rgba(244, 121, 32, 0.8) 50%, 
        rgba(14, 165, 233, 0.6) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

/* Badge NUEVO con animación de pulso */
.digisoft-launch-banner__badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F47920 0%, #e06a10 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(244, 121, 32, 0.5);
}

@keyframes badge-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(244, 121, 32, 0.5);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(244, 121, 32, 0);
    }
}

.digisoft-launch-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.digisoft-launch-banner__content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

/* Headline */
.digisoft-launch-banner__headline {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

/* Soporte en Bávaro - DESTACADO (segunda prioridad visual) */
.digisoft-launch-banner__highlight {
    color: #0EA5E9;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
    position: relative;
}

.digisoft-launch-banner__subtext {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

.digisoft-launch-banner__subtext strong {
    color: #fbbf24;
}

/* Deadline */
.digisoft-launch-banner__deadline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    white-space: nowrap;
}

/* CTA Button */
.digisoft-launch-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.55rem 1.35rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.digisoft-launch-banner__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.digisoft-launch-banner__cta:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .digisoft-launch-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .digisoft-launch-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .digisoft-launch-banner__cta {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .digisoft-launch-banner {
        padding: 0.85rem 1rem;
    }

    .digisoft-launch-banner__headline {
        font-size: 1rem;
    }

    .digisoft-launch-banner__subtext {
        font-size: 0.85rem;
    }

    .digisoft-launch-banner__deadline {
        font-size: 0.75rem;
    }

    .digisoft-launch-banner__cta {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
