* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
    background:
        url("src/mobile.webp");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Media query para desktop */
@media (min-width: 1024px) {
    body {
        background:
            url("src/desk.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }
}


.container {
    width: 100%;
    max-width: 430px;
    padding: 30px 20px 0;
    position: relative;
}

.hero {
    text-align: center;
    position: relative;
}

.person {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 10px;
    display: block;
}

.title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 10px;
}

.title span {
    display: block;
    color: #B829D0;
    margin-top: 6px;
}

.subtitle {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #f2f2f2;
}

.form {
    margin-top: 22px;
}

.form input {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: none;
    padding: 0 18px;
    margin-bottom: 12px;
    font-size: 14px;
    background: #4a1b05;
    color: #fff;
}

.form input::placeholder {
    color: #d9b6a0;
}

.form button {
    width: 100%;
    height: 52px;
    border-radius: 26px;
    border: none;
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}

.form button:hover {
    background: #f2f2f2;
}

.legal {
    margin-top: 14px;
    font-size: 10px;
    line-height: 1.4;
    color: #B1B1B1;
    text-align: center;
}

.legal a {
    color: #fff;
    text-decoration: underline;
}

.footer {
    margin-top: 24px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 14px 10px;
    font-size: 12px;
    color: #fff;
}

.footer span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    opacity: 0.8;
}

/* Ícones flutuantes (decorativos) */
.floating {
    position: absolute;
    width: 60px;
    animation: float 6s ease-in-out infinite;
}

.f1 {
    top: 40px;
    left: -10px;
}

.f2 {
    top: 90px;
    right: -10px;
    animation-delay: 2s;
}

.f3 {
    top: 180px;
    left: 10px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}