@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{  
    font-family: "Lato", sans-serif; 
    font-style: normal;
    margin: 0;
    padding: 0;
}
.contenedor {
    width: 80%;
    max-width: 1280px;
    min-width: 320px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

header{
    background-color: rgb(201, 147, 31);
    height: 3.5rem;
    display: flex;           
    align-items: center;     
    justify-content: space-between; 
    padding: 10px 20px;
}
header img{
    width: 3rem;
    padding: 20px;
    border-radius: 100px;
}
header nav a {
    display: inline-block;
    text-decoration: none;
    font-weight: normal;
    font-size: 16px;
    padding: 5px 10px;
    transition: color 0.3s;
    color: rgb(22, 107, 11); 
}
header nav a:hover {
    color: rgb(255, 255, 255);
}
#banner{
    display: flex;
    justify-content: space-between; 
    align-items: center;            
    height: 480px;
    padding: 0 30px;               
    background-image: url('imagenes/hoja-verde.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#banner div {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;  
    font-size: 20px;
    margin-left: 35px;
}
#titulo_principal{
    color: rgb(201, 147, 31);
    font-style: normal;
    font-size: 55px;
    text-shadow: 2.5px 2.5px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
    margin-bottom: 10px;
}
#banner p {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    padding-bottom: 7px;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 20px;
}
#boton_comprar{
    padding: 8px 8px;
    font-size: 14px;
    border: none;
    background-color: rgb(201, 147, 31);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    width: 120px;
    text-align: center;
}
#banner img{
    width: 300px;
    height: auto;
    object-fit: cover;
}
#caracteristicas {
    background-color: rgb(201, 147, 31);
    text-align: center;
    justify-content: space-between; 
    padding: 25px;
    font-family: sans-serif;
}

.encabezado-caracteristicas {
    padding: 20px;
}

.encabezado-caracteristicas h2 {
    color: rgb(22, 107, 11);
    font-style: normal;
    font-size: 30px;
    text-shadow: 2.5px 2.5px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
    margin-bottom: 10px;
}

.encabezado-caracteristicas p {
    color: rgb(252, 252, 252);
    font-style: normal;
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
}

.contenido-caracteristicas {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.caracteristicas-izquierda,
.caracteristicas-derecha {
    list-style: none;
    padding: 0;
    max-width: 300px;
    flex: 1;
}

.caracteristicas-izquierda li,
.caracteristicas-derecha li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 10px;
}

.fila-caracteristica {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.caracteristicas-izquierda li img,
.caracteristicas-derecha li img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contenido-texto h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: #fff;
    text-align: left;
}

.contenido-texto p {
    margin: 0;
    font-size: 0.95em;
    color: #fff;
    text-align: left;
}

.imagen-caracteristicas img {
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#tiendas{
    background-color: rgb(22, 107, 11);
    text-align: center;
    justify-content: space-between; 
    padding:25px;
}
.encabezado-tiendas{
    padding: 20px;
    margin-bottom:30px;
}
.encabezado-tiendas h2{
    color: rgb(201, 147, 31);
    font-style: normal;
    font-size: 30px;
    text-shadow: 2.5px 2.5px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
    margin-bottom: 10px;
}
.encabezado-tiendas p{
    color:rgb(251, 252, 251);
    font-style: normal;
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
}
.contenido-tiendas{
    display:flex;
    justify-content: center; 
    gap: 20px; 
    max-width: 1200px;
    width: 100%; 
    margin: 0 auto;     
    padding: 0 20px;
}
.imagen-tiendas img{
    height: 300px;
    margin-bottom: 50px;
    border-radius: 10px;
}
.contenido-tiendas table {
    height: 300px;
    text-align: left;
    font-size: 12px;
    border: 2px solid black;
    margin-bottom: 50px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgb(212, 205, 99);
}
.contenido-tiendas table th {
    background-color: rgb(201, 147, 31);
    color: white;
    padding: 12px 16px; 
    font-size: 17px;
}
.contenido-tiendas table td {
    padding: 12px 60px 12px 16px; 
    color: rgb(255, 254, 251);
    font-size: 13px;
}
.contenedor-ancho {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 20px;
}

#opiniones {
    background-color: rgb(201, 147, 31);
    text-align: center;
    padding: 25px 0;
}

.encabezado-opiniones {
    padding: 20px;
    margin-bottom: 30px;
}

.encabezado-opiniones h2 {
    color: rgb(22, 107, 11);
    font-style: normal;
    font-size: 30px;
    text-shadow: 2.5px 2.5px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
}

.encabezado-opiniones p {
    color: white;
    font-style: normal;
    font-size: 15px;
    margin-bottom: 7px;
}

.seccion-opiniones {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.seccion-opiniones article {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}

.seccion-opiniones img {
    width: 180px;
    height: auto;
    border-radius: 180px;
    margin-bottom: 15px;
}

.seccion-opiniones blockquote {
    font-size: 13px;
    font-style: italic;
    color: rgb(22, 107, 11);
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0 10px;
}

.seccion-opiniones em {
    font-size: 14px;
    font-weight: bold;
    color: rgb(22, 107, 11);
}
#unirme{
    background-color: rgb(22, 107, 11);
    text-align: center;
    padding:25px;
    color:rgb(255, 252, 252);
}
.encabezado-unirme {
    padding: 20px;
    margin-bottom: 30px;
}
.encabezado-unirme h2 {
    color: rgb(201, 147, 31);
    font-style: normal;
    font-size: 30px;
    text-shadow: 2.5px 2.5px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
}

.encabezado-unirme p {
    color: white;
    font-style: normal;
    font-size: 15px;
    margin-bottom: 7px;
}

form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.primeros-formularios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    margin-bottom: 20px;
}

.primeros-formularios div {
    display: flex;
    flex-direction: column;
}

.primeros-formularios label {
    font-weight: bold;
    margin-bottom: 5px;
}

.primeros-formularios input,
.primeros-formularios select {
    padding: 10px;
    background-color: #c3c3c3;
    border: none;
    font-size: 14px;
}

.formulario-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
}

.formulario-check label {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
}

.formulario-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.formulario-check input[type="submit"] {
    padding: 12px 24px;
    background-color: #caa21d;
    color: rgb(255, 255, 255);
    border: none;
    font-weight: bold;
    cursor: pointer;
    min-width: 100px;
}
.formulario-check input[type="submit"]:hover {
    background-color: rgb(157, 170, 41);
}
.formulario-check input[type="submit"]:active {
    background-color: rgb(217, 224, 217);
}
.redes-sociales{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
}
.redes-sociales img {
    width: 48px;
}
hr {
    border: none;
    height: 2px;
    background-color: #000000; 
    margin: 20px auto;
    width: 80%;
}
footer{
    background-color: #caa21d;
    text-align: center;
    color: white;
    padding: 40px 0;
}
