
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #222;
}
header {
    background-color: #003366;
    color: white;
    padding: 1rem;
    text-align: center;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
}
nav a {
    color: white;
    text-decoration: none;
}
section {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

.logo {
    height: 80px;
    vertical-align: middle;
    margin-right: 10px;
}

.centrado {
    text-align: center;
}

.producto .titulo {
    min-height: 50px; /* ajustá según el largo de los nombres */
    display: flex;
    align-items: center;
    justify-content: center;
}
.productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.producto {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    min-height: 300px; /* o lo que se vea bien en tu diseño */
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
form {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: auto;
}
input, textarea, button {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}
button {
    /* background-color: #003366;
    color: white;
   border: none;
    cursor: pointer;*/
    width: 100%; /* todos del mismo ancho */
    max-width: 200px; /* no se pasan de grande */
    margin-top: 1rem; /* separación desde el texto */
    padding: 0.5rem;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

