/* Paleta de colores: Verde #4CAF50, Marrón #5D4037, Gris #555 */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* --- Menú de Navegación --- */
header {
    background-color: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
}

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

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4CAF50;
}

/* --- Imágenes con Bordes Redondeados --- */
img {
    border-radius: 25px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header .logo img {
    border-radius: 0;
    box-shadow: none;
}

/* --- Estructura de Contenido --- */
main {
    padding: 40px 5%;
}

.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.texto-hero {
    flex: 1;
    min-width: 300px;
}

.imagen-hero {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3 {
    color: #5D4037;
}

/* --- Botones --- */
.boton, .boton-enviar {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.boton:hover, .boton-enviar:hover {
    background-color: #5D4037;
}

/* --- Estilos para la página de Contacto --- */
.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-tarjeta {
    background-color: #f8fdf8;
    padding: 25px;
    border-radius: 20px;
    border-left: 6px solid #4CAF50;
    margin-top: 30px;
}

.form-contacto {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.campo input, .campo select, .campo textarea {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
}

/* --- Footer --- */
footer {
    background-color: #5D4037;
    color: white;
    text-align: center;
    padding: 30px 5%;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.redes {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* --- Media Queries para Celulares --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contacto-container {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }
}
