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

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* LOGO + TEXTO SOBREPOSTO */
.logo-wrapper {
    position: relative;
    margin-top: 24px;
    margin-bottom: 24px;
}


.welcome {
    position: absolute;
    top: -48px;              /* sobe mais para não tocar na logo */
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(32px, 7vw, 44px);
    font-weight: 900;
    color: #ff6f61;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 2;
}



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

/* TEXTO */
.slogan {
    font-size: clamp(22px, 5vw, 26px);
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: clamp(14px, 4vw, 16px);
    color: #555;
    margin-bottom: 24px;
}

/* BOTÃO */
.btn-catalogo {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    padding: 16px;
    background: linear-gradient(135deg, #ff6f61, #ffca28);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(255,111,97,0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-catalogo:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(255,111,97,0.6);
}

footer {
    margin-top: 24px;
    font-size: 11px;
    color: #aaa;
}

/* MOBILE EXTRA */
@media (max-width: 360px) {
    .card {
        padding: 24px 18px;
    }
}
