/* --- Configuración Global y Tipografía --- */
@font-face {
    font-family: "Roboto-Light";
    src: url("../fuente/Roboto-Light.ttf");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto-Light", system-ui, -apple-system, sans-serif;
    background-color: #f5ebeb; /* Un rosa/arena muy suave y limpio */
    color: #333333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* --- Contenedor Principal (Tarjeta pulcra) --- */
.card-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 700px;
    border: 1px solid #e0baba;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(171, 52, 52, 0.1);
    text-align: center;
}

/* --- Títulos --- */
h1 {
    font-size: 2.2rem;
    color: #2e6f40; /* Verde oliva profundo, más elegante */
    margin-bottom: 25px;
    font-weight: 600;
}

h2 {
    font-size: 1.6rem;
    color: #2e6f40;
    margin-bottom: 10px;
}

/* --- Diseño Adaptable (Layout) --- */
/* Por defecto en móviles: Todo en una columna */
.content-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* --- Componente: Botón de Play --- */
.btn-play {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #8a4fff, #6f2cf5); /* Violeta moderno con degradado sutil */
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(111, 44, 245, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(111, 44, 245, 0.4);
}

.btn-play:active {
    transform: translateY(1px);
}

/* --- Contenido de Texto --- */
.text-content {
    flex: 1;
    text-align: center;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
}

/* --- Enlace Siguiente --- */
.btn-next {
    display: inline-block;
    text-decoration: none;
    color: #6f2cf5;
    font-weight: bold;
    padding: 10px 24px;
    border: 2px solid #6f2cf5;
    border-radius: 25px;
    transition: background-color 0.2s, color 0.2s;
    margin-bottom: 5px;
}

.btn-next:hover {
    background-color: #6f2cf5;
    color: #ffffff;
}

/* =========================================
   MEDIA QUERY: Pantallas medianas y grandes (Tablets / PC)
   ========================================= */
@media (min-width: 600px) {
    .content-layout {
        flex-direction: row; /* Alinea el botón al lado del texto de forma segura */
        text-align: left;
    }

    .text-content {
        text-align: left; /* El texto se alinea a la izquierda al lado del botón */
    }

    .card-container {
        padding: 40px;
    }
    
    footer {
        text-align: right; /* Mueve el botón "Next" a la esquina inferior derecha */
    }
}