/*GENERAL*/
body {
    padding-top: 90px; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/*HEADER + MENU*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 97%;
    background: #daf4ed;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgb(155, 155, 155);
}
.logo {
    display: flex;
    align-items: center;
}
.logo a {
    text-decoration: none;
}
.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2e5f4f;
    letter-spacing: 1px;
    transition: 0.3s ease;
    font-family: "Stack Sans Notch", sans-serif;
}
.logo h1:hover {
    color: #3b7a67;
}
nav {
    display: flex;
    gap: 25px;
}

nav li {
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #0f6c59;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #198f78; 
}
/*CARRITO + REGISTRO*/
.register a {
    text-decoration: none;
    padding: 8px 15px;
    background: #198f78;    
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.register a:hover {
    background: #0f6c59;
}
.acciones {
    display: flex;
    align-items: center;
    gap: 15px;
}

.carrito img {
    width: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.carrito img:hover {
    transform: scale(1.15);
}
section {
    width: 90%;        
    max-width: 700px;
    margin: 4rem auto 2rem auto;
    padding: 2rem;
    background: #f4faf7;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

section h3 {
    font-size: 1.8rem;
    color: #2e5f4f;
    margin-bottom: 0.5rem;
}

section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* FORMULARIO DE CONTACTO */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/*Hace cambios a los que tiene LABEL*/
.contact-form label {
    font-weight: 600;
    color: #2e5f4f;
}

/*Hace cambios en los que tiene INPUTS Y TEXTAREA*/
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #c3d7cf;
    border-radius: 8px;
    background: #ffffff;
    resize: none;
    transition: 0.2s ease;
    box-sizing: border-box;
}

/*Se aplica cuando el usuario haga click en INPUT o TEXTAREA*/
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3b7a67;
    outline: none;
    box-shadow: 0 0 0.25rem rgba(59,122,103,0.4);
}

/*BOTON de envio*/
.contact-form button {
    width: 100%;         
    max-width: 10rem; 
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background: #3b7a67;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start; /* alinear botón */
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #2e5f4f;
}

/*FOOTER*/
footer {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #f1f1f1;
}

footer p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap; 
}

.footer-logo {
    width: 6rem;  
}

.icon {
    width: 2rem;
    height: auto;
    margin: 0 0.3rem;
}
