/* Estilos globales - reutilizados para todas las páginas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f0f4f8;
    color: #5dade2;
}

header {
    background-color: #5dade2;
    color: #fff;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6347;
}



/* Contenedor de confirmación */
#confirmacion-compra {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

#confirmacion-compra h1 {
    font-size: 2.5rem;
    color: #4caf50; /* Color verde para éxito */
    margin-bottom: 20px;
    font-weight: 700;
}

#confirmacion-compra p {
    font-size: 1.2rem;
    margin: 15px 0;
    line-height: 1.6;
}

#confirmacion-compra .detalle-compra {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: left;
    font-size: 1rem;
    color: #555;
}

#confirmacion-compra .detalle-compra p {
    margin: 5px 0;
}

#confirmacion-compra .boton-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 20px;
    background-color: #ff6347; /* Color principal de tu sitio */
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#confirmacion-compra .boton-home:hover {
    background-color: #e5533c;
}
