body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: url('mnt/data/luzpasion.jpg') no-repeat center center fixed;
    background-size: cover;
}

header {
    background-color: #ff9933; /* Mostaza */
    color: white;
    padding: 1em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1em;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    color: white;
    text-align: center;
    padding: 5em 1em;
    background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para la legibilidad del texto */
    position: relative;
}

.center-logo {
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translateX(-50%);
}

.logo-mediano {
    height: 200px;
    width: 200px;
}

.hero h1 {
    font-size: 3em;
    margin: 2em 0 0 0;
}

.hero p {
    font-size: 1.5em;
}

.cta-button {
    background-color: #3498db; /* Azul celeste */
    color: white;
    padding: 1em 2em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1em;
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
}

section {
    padding: 2em 1em;
    text-align: center;
    background: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
    margin: 1em 0;
}

#productos, #beneficios, #testimonios, #contacto {
    background: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
}

.product-grid, .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}

.product, .testimonial {
    background: white;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: left;
}

.product img, .testimonial img {
    width: 100%;
    border-radius: 5px;
}

footer {
    background-color: #3498db; /* Azul celeste */
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}
