/* ==========================================================================
   CapDev - Próximamente (Coming Soon) Styles
   ========================================================================== */

.coming-soon-body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #070a14;
    background-image: linear-gradient(135deg, rgba(7, 10, 20, 0.82) 0%, rgba(14, 18, 37, 0.92) 100%), url('../images/hero-bg-raw.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f8fafc;
    font-family: 'VinilaTest', system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #0940f2 0%, #0324a6 100%);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #16a34a 0%, #0d6830 100%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #2563eb 0%, #1e40af 100%);
    top: 40%;
    left: 65%;
    animation-delay: -9s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 40px) scale(1.08);
    }
    100% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Main Layout Wrapper */
.coming-soon-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 860px;
    padding: 40px 24px;
    box-sizing: border-box;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.coming-soon-logo {
    margin-bottom: 32px;
}

.coming-soon-logo .brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Main Card */
.coming-soon-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge Status with Pulse Dot */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #4ade80;
}

/* Titles */
.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px 0;
    max-width: 680px;
}

.highlight-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 32px 0;
    max-width: 620px;
}

.coming-soon-desc strong {
    color: #ffffff;
}

/* Jobs CTA Button */
.coming-soon-actions {
    margin-bottom: 36px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-jobs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0940f2 0%, #0324a6 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(9, 64, 242, 0.35);
    transition: all 0.3s ease;
}

.btn-jobs:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(9, 64, 242, 0.5);
    background: linear-gradient(135deg, #1d53f5 0%, #042cb8 100%);
}

.btn-jobs .arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-jobs:hover .arrow {
    transform: translateX(4px);
}

/* Contact Channels Grid */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 36px;
}

.channel-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.channel-item:hover {
    border-color: rgba(22, 163, 74, 0.4);
    background: rgba(30, 41, 59, 0.85);
}

.channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(22, 163, 74, 0.15);
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon svg {
    width: 20px;
    height: 20px;
}

.channel-info {
    display: flex;
    flex-direction: column;
}

.channel-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.channel-link {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.channel-link:hover {
    color: #4ade80;
}

/* Social Media Section */
.coming-soon-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-title {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    background: #16a34a;
    color: #ffffff;
    border-color: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

/* Footer */
.coming-soon-footer {
    margin-top: 28px;
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 36px 24px;
    }

    .coming-soon-title {
        font-size: 1.85rem;
    }

    .coming-soon-desc {
        font-size: 0.95rem;
    }

    .contact-channels {
        grid-template-columns: 1fr;
    }

    .channel-item {
        padding: 14px 16px;
    }
}
