* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "bricolage-grotesque", sans-serif;
}

body {
    background: #F4F1EB;
    color: #2B213A;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

/* Contenedor principal */
.container {
    text-align: center;
    position: relative;
    max-width: 600px;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

/* Estrellas flotantes */
.estrella {
    width: 80px;
    position: absolute;
    top: -20px;
}

.izquierda {
    left: -50px;
    transform: rotate(-10deg);
}

.derecha {
    right: -50px;
    transform: rotate(10deg);
}

h1 {
    font-family: "new-kansas", sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.texto {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Botones */
.botones {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 14px;
    border: 2px solid #2B213A;
    transition: 0.2s ease;
    color: #2B213A;
}

.btn:hover {
    transform: scale(1.05);
}

.rosa   { background: #FF7DB5; }
.verde  { background: #E0FFB5; }
.morado { background: #C877F7; }

/* Responsive */
@media (max-width: 500px) {
    .estrella { width: 50px; top: -10px; }
    .izquierda { left: -20px; }
    .derecha { right: -20px; }
    h1 { font-size: 28px; }
}
