/* Importar fuentes de Google Fonts: Playfair Display para títulos y Poppins para el cuerpo */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Playfair+Display:wght@700&display=swap');

/* Estilos Globales */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fce4ec; /* Rosa muy claro, base girly */
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Encabezado */
header h1 {
    font-family: 'Playfair Display', serif;
    color: #e91e63; /* Rosa frambuesa fuerte */
    font-size: 2.5em;
    margin-bottom: 5px;
}

.subtitle {
    color: #888;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Tarjetas de Pasos */
.step-card {
    background-color: #fff8f8; /* Rosa pálido de fondo */
    border-left: 5px solid #ff80ab; /* Barra lateral rosa */
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: left;
}

.step-card h2 {
    font-family: 'Poppins', sans-serif;
    color: #c2185b; /* Rosa más oscuro para títulos de pasos */
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight {
    color: #e91e63;
    font-weight: 600;
}

.bold-text {
    font-weight: 800;
    color: #4a4a4a;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

ul li::before {
    content: '✨'; /* Usamos un emoji de brillo como viñeta */
    position: absolute;
    left: 0;
    top: 5px;
}

.note {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 15px;
}

/* Área del Botón de Acción */
.action-area {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ffdee9; /* Línea divisoria suave */
}

.action-area h3 {
    font-family: 'Playfair Display', serif;
    color: #e91e63;
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* El Botón Final - Muy importante */
.purchase-button {
    display: inline-block;
    background-color: #ff80ab; /* Rosa chicle para el botón */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none; /* Quita el subrayado */
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 10px rgba(255, 128, 171, 0.5);
    letter-spacing: 0.5px;
}

.purchase-button:hover {
    background-color: #e91e63; /* Rosa más oscuro al pasar el mouse */
    transform: translateY(-2px); /* Efecto de "levantamiento" */
}

.footer-note {
    margin-top: 20px;
    font-size: 0.85em;
    color: #aaa;
}

/* Regla Horizontal */
hr {
    border: none;
    height: 1px;
    background-color: #ffdee9;
    margin: 25px 0;
}