 body {
  background-color: #fff;
  font-family:'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* SECCIÓN QUIÉNES SOMOS */
.quienes-somos {
  background-color: #fff;
  padding: 80px 20px 20px 20px;
  color: #222;
 
}

.quienes-somos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.intro h2 {
  font-size: 2.5em;
  color: #000;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}

.intro p {
  font-size: 1.1em;
  color: #000;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 50px;
}

.grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.text-blocks .box {
  background-color: #fff;
  border-left: 3px solid #c40000;
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.text-blocks .box h3 {
  color: #000;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.text-blocks .box p {
  font-size: 1em;
  color: #000;
}

.image-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-block img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;

}
 





 /* Sección: Nuestros Valores */
.valores {
  text-align: center;
  padding: 100px 20px;
  background-color: #f7f7f7;
}

.valores h3 {
 font-size: 2em;
  color: #111;
  margin-bottom:59px;
  font-weight: 600;
 
}

.valores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  perspective: 1000px; /* mejora visual en transformaciones */
}

.valor {
  background: white;
  border-radius: 12px;
   
  padding: 0;
  width: 240px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.valor:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

/* Contenido interior (se transforma para evitar conflicto con AOS) */
.valor-contenido {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  will-change: transform;
}

.valor:hover .valor-contenido {
  transform: scale(1.03);
}

/* Icono */
.valor i {
  font-size: 36px;
  color: #c40000;
  margin-bottom: 10px;
}

/* Subtítulo */
.valor-subtitulo {
  font-size: 1.2em;
 font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  display: block;
}

/* Texto */
.valor p {
  font-size: 1em;
  color: #444;
  line-height: 1.5;
  margin: 0;
}




/* Responsive */
@media (max-width: 768px) {
  .valores-grid {
    flex-direction: column;
    align-items: center;
  
  }

  .valor {
    width: 100%;
    max-width: 300px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  }



  /* Subtítulo */
.valor-subtitulo {
  font-size: 1.4em;
 font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  display: block;
}




.valores {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}



/* Icono */
.valor i {
  font-size: 45px;
  color: #c40000;
  margin-bottom: 10px;
}




}



    


















/* SECCIÓN CONTACTO */
.contacto {
  background-color: #fff;
  padding: 75px 20px 50px;
}

.contacto .container {
  max-width: 700px;
  margin: 0 auto;
}

.contacto h2 {
  color: #000;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.contacto p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1em;
  color: #666;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.campo, .campo-full {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

.campo {
  flex: 1 1 48%;
}

label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-size: 0.95em;
}

input, select, textarea {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95em;
  transition: border 0.3s ease;
  outline: none;
  background-color: #f7f7f7;;
}

input:focus,
select:focus,
textarea:focus {
  border-color:#c40000;
}

textarea {
  resize: vertical;
}

.btn-enviar {
  background-color: #c40000;
  color: white;
  border: none;
  padding: 8px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: auto;
  margin: 20px auto 0;
  display: block;
  text-align: center;
}

.btn-enviar:hover {
  background-color: #c40000;
}

/* SECCIÓN MAPA */
.mapa {
  width: 100%;
  height: 460px;
  padding-top: 0px;
  margin: 0;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}



/* RESPONSIVE GENERAL */
@media (max-width: 768px) {
  .grid-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro h2,
  .intro p {
    text-align: center;
  }

  .image-block {
    order: 2;
    margin-top: 30px;
  }

  .text-blocks {
    order: 1;
  }

  .form-row {
    flex-direction: column;
  }

  .btn-enviar {
    align-self: center;
  }

 


  .contacto {
  background-color: #fff;
  padding: 35px 20px 50px;
}
 
}

footer {
  background-color: #000;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: #c40000;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
