* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('../img/background.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.55));
}

.content {
    position: relative;
    max-width: 800px;
    padding: 20px;
    color: #ffffff;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

.logo {
    width: 140px;
    margin-bottom: 40px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.85;
}

.divider {
    width: 80px;
    height: 3px;
    background: #ffffff;
    margin: 40px auto;
    opacity: 0.4;
}

.coming {
    font-size: 14px;
    letter-spacing: 6px;
    opacity: 0.7;
}

/* Animación */
@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .logo {
        width: 110px;
    }
}