/* GENERAL */
body {
  margin: 0;
  max-width: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  color: #6D4C41;
}

h1, h2 {
  color: #2E7D32; /* Verde EcoVida */
  margin-bottom: 10px;
}

p {
  color:#6D4C41;
  line-height: 1.5;
}

/* HEADER */
header {
  background-color: #6D4C41;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 200px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FFEB3B;
}

/* SECCIÓN INICIO */
.inicio {
  background-color: #A5D6A7;
  text-align: center;
  padding: 60px 20px;
}

.inicio h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.inicio p {
  font-size: 1.2em;
}

/* NOSOTROS */
.nosotros {
  background-color: #E8F5E9;
  padding: 40px 20px;
  overflow: hidden;
}

.nosotros .columna {
  width: 48%;
  float: left;
  margin-right: 4%;
}

.nosotros .columna:last-child {
  margin-right: 0;
}

.nosotros img {
  width: 100%;
  border-radius: 10px;
}

/* SERVICIOS */
.servicios {
  background-color: #fffde7;
  padding: 40px 20px;
  text-align: center;
}

.servicio {
  display: inline-block;
  width: 22%;
  background-color: white;
  margin: 1%;
  padding: 20px;
  border-radius: 10px;
  vertical-align: top;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.servicio img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.producto img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

/* PRODUCTOS */
.productos {
  background-color: #F1F8E9;
  padding: 40px 20px;
  text-align: center;
}

.contenedor-productos {
  text-align: center;
}

.producto {
  display: inline-block;
  width: 28%;
  margin: 1%;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

iframe{
    height: auto;
}
/* CLIENTES */
.clientes {
  background-color: #E3F2FD;
  padding: 40px 20px;
  text-align: center;
}

.testimonio {
  display: inline-block;
  width: 30%;
  margin: 1%;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.testimonio img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background-color: #2E7D32;
  color: rgb(255, 255, 255);
  padding: 40px 20px;
  overflow: hidden;
}

footer div {
  width: 30%;
  float: left;
  margin-right: 3.333%;
}

footer div:last-child {
  margin-right: 0;
}

footer h3 {
  border-bottom: 1px solid #c8e6c9;
  padding-bottom: 5px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer form input,
footer form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
}
footer p {
    color: white;
}
footer form button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #81C784;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.certificaciones-card {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: start;
  
}

.certificaciones-card img {
  width: 100px;
  height: auto;
}

footer form button:hover {
  background-color: #66BB6A;
}

/* RESPONSIVE BÁSICO */
@media screen and (max-width: 768px) {
  .nosotros .columna,
  .servicio,
  .producto,
  .testimonio,
  footer div {
    width: 100%;
    float: none;
    margin-bottom: 20px;
    
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
