/* Variables de color y configuración base */
:root {
    --rojo-principal: #e63946; /* Color de los labios */
    --oscuro: #1d3557;
    --claro: #f1faee;
    --gris-suave: #f8f9fa;
    --blanco: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--gris-suave);
    color: var(--oscuro);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Contenedor para centrar contenido */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Encabezado */
header {
    background-color: var(--blanco);
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Sección Principal */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    color: var(--rojo-principal);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: #444;
}

/* Botones */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 320px;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
}

.btn-primary {
    background-color: var(--rojo-principal);
    color: var(--blanco);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

.btn-primary:hover {
    background-color: #d62839;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--rojo-principal);
    color: var(--rojo-principal);
}

.btn-outline:hover {
    background-color: var(--rojo-principal);
    color: var(--blanco);
}

.btn:active {
    transform: scale(0.98);
}

/* Pie de página */
footer {
    background-color: var(--blanco);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.65rem;
    border-top: 1px solid #eee;
    color: #777;
}

/* Media Query para pantallas grandes (Desktop) */
@media (min-width: 768px) {
    .button-container {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }

    h1 {
        font-size: 3.5rem;
    }

    .logo {
        max-width: 220px;
    }
}