body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../img/bg-swing.png') no-repeat center center/cover;
    color: #fff;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.conteudo h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 10px;
}

.conteudo p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
}

.botoes .btn {
    background-color: #e91e63;
    color: white;
    padding: 12px 24px;
    margin: 0 10px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

    .botoes .btn:hover {
        background-color: #c2185b;
    }
