/* ========================================
   BMFIT - Landing "Brevemente"
   ======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #0f1115;
    background: #f9fafb;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   LAYOUT
   ======================================== */

.soon {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    overflow: hidden;
}

.soon-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(140, 82, 255, 0.18), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(92, 225, 230, 0.22), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
    z-index: 0;
}

.soon-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow:
        0 30px 60px rgba(15, 17, 21, 0.08),
        0 8px 24px rgba(15, 17, 21, 0.04);
    text-align: center;
}

/* ========================================
   BRAND
   ======================================== */

.soon-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.soon-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.soon-brand-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f1115;
}

.soon-brand-name span {
    background: linear-gradient(135deg, #8c52ff 0%, #5ce1e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ========================================
   HERO
   ======================================== */

.soon-hero {
    margin-bottom: 32px;
}

.soon-figure {
    margin: 0 0 32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 17, 21, 0.12);
}

.soon-figure-img {
    display: block;
    width: 100%;
    height: auto;
}

.soon-message {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.soon-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #8c52ff 0%, #5ce1e6 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 20px;
}

.soon-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f1115;
    margin-bottom: 18px;
}

.soon-title span {
    background: linear-gradient(135deg, #8c52ff 0%, #5ce1e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.soon-lede {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 560px;
    margin: 0 auto;
}

.soon-lede strong {
    color: #0f1115;
}

/* ========================================
   CONTACTS
   ======================================== */

.soon-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.soon-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #f9fafb;
    border: 1px solid #eceef2;
    border-radius: 14px;
    text-align: left;
    transition: all 0.25s ease;
}

.soon-contact:not(.soon-contact--static):hover {
    border-color: #8c52ff;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(140, 82, 255, 0.12);
}

.soon-contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8c52ff 0%, #5ce1e6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.soon-contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.soon-contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
}

.soon-contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f1115;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   CTA
   ======================================== */

.soon-cta-wrapper {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.soon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #8c52ff 0%, #5ce1e6 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(107, 76, 230, 0.35);
    transition: all 0.3s ease;
}

.soon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(107, 76, 230, 0.45);
    gap: 14px;
}

/* ========================================
   SOCIAL
   ======================================== */

.soon-social {
    padding-top: 32px;
    border-top: 1px solid #eceef2;
}

.soon-social-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b7280;
    margin-bottom: 16px;
}

.soon-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.soon-social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f3ff;
    color: #8c52ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}

.soon-social-links a:hover {
    background: linear-gradient(135deg, #8c52ff 0%, #5ce1e6 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(140, 82, 255, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */

.soon-footer {
    margin-top: 28px;
    font-size: 0.82rem;
    color: #6b7280;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 990px) {
    .soon-container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .soon-title {
        font-size: 1.55rem;
    }

    .soon-lede {
        font-size: 0.98rem;
    }

    .soon-contacts {
        grid-template-columns: 1fr;
    }

    .soon-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

@media (max-width: 380px) {
    .soon-container {
        padding: 32px 18px;
    }

    .soon-brand-name {
        font-size: 1.6rem;
    }

    .soon-title {
        font-size: 1.35rem;
    }
}


.contact-container a{
    margin-top: 16px;
}

.lead {
    font-size: 20px;
    font-weight: 700;
}