/* Estilos Generales y Reseteo */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Fondo gris claro */
    color: #333;
}

h1, h2, h3 {
    color: #a87f5e; /* Color marrón suave para los títulos */
    text-align: center;
}

a {
    text-decoration: none;
    color: #a87f5e;
}

ul {
    list-style: none;
    padding: 0;
}

/* Encabezado (Header) y Navegación */
header {
    background-color: #fefcfb;
    padding: 20px;
    border-bottom: 3px solid #d4b497;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav a:hover {
    color: #795548;
    border-bottom: 2px solid #795548;
}

/* Estilo del Botón */
.btn {
    display: inline-block;
    background-color: #a87f5e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #795548;
}

/* Sección de Inicio (Hero) */
.hero {
    background-color: #fefcfb;
    padding: 60px 20px;
    text-align: center;
}

/* Galería de Productos */
.galeria {
    padding: 40px 20px;
    text-align: center;
}

.galeria h2 {
    margin-bottom: 30px;
}

.galeria div.producto-card {
    display: inline-block;
    width: 30%;
    margin: 10px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    vertical-align: top; /* Para que las tarjetas se alineen arriba */
}

.producto-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.precio {
    display: block;
    font-size: 1.2em;
    color: #c98c56;
    margin-top: 10px;
    font-weight: bold;
}

/* Sección de Contacto */
.contacto {
    padding: 40px 20px;
    background-color: #d4b497;
    text-align: center;
}

.contacto form input[type="text"],
.contacto form input[type="email"],
.contacto form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contacto form textarea {
    resize: vertical;
}

/* Pie de Página (Footer) */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.8em;
}