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

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

html {
    scroll-padding-top: 100px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F3F1EB;
    color: #151F16;
    line-height: 1.6;
    padding-top: 90px;
    width: 100%;
    overflow-x: hidden;
}

h1,
h2,
p,
span,
a,
button {
    font-family: 'Fraunces', serif;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

/* ================= PRÓXIMAMENTE ================= */
.coming-soon-section {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background:
        linear-gradient(rgba(11, 28, 16, 0.55), rgba(11, 28, 16, 0.72)),
        url('../img/index/emprendedores.jpeg') center/cover no-repeat;
    text-align: center;
}

.coming-soon-card {
    max-width: 640px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    padding: 64px 48px;
    box-shadow: 0 20px 50px rgba(14, 33, 22, 0.35);
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E8F2E9;
    color: #2A6038;
    font-size: 32px;
}

.coming-soon-tag {
    display: inline-block;
    color: #d94f15;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.coming-soon-title {
    font-size: 36px;
    font-weight: 800;
    color: #163822;
    line-height: 1.25;
    margin-bottom: 18px;
}

.coming-soon-desc {
    font-size: 17px;
    color: #3A4D3C;
    line-height: 1.8;
    margin-bottom: 34px;
    font-family: 'Poppins', sans-serif;
}

.coming-soon-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2A6038;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 999px;
    transition: 0.3s ease;
}

.coming-soon-back:hover {
    background: #163822;
    gap: 14px;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .coming-soon-card {
        padding: 44px 24px;
    }

    .coming-soon-title {
        font-size: 28px;
    }
}
