/* ===== SECCIÓN NOSOTROS ===== */

.nosotros {
  background-color: #ffffff;
  padding: clamp(20px, 5vw, 60px) clamp(15px, 5vw, 80px);
  padding-top: clamp(20px, 5vw, 40px);
  max-width: clamp(320px, 90vw, 1100px);
  margin: 0 auto;
  text-align: center;
}

.nosotros h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #222;
  margin-bottom: clamp(15px, 2vw, 25px);
  font-weight: 700;
}

.nosotros p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #555;
  line-height: clamp(1.5, 2vw, 1.8);
  max-width: clamp(600px, 80vw, 900px);
  margin: clamp(10px, 2vw, 20px) auto;
}

.nosotros p strong {
  color: #ff7b00;
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}


.nosotros h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #222;
  margin-bottom: clamp(15px, 2vw, 25px);
  text-align: center;
}

.nosotros p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #555;
  max-width: clamp(600px, 70vw, 900px);
  margin: clamp(10px, 2vw, 20px) auto;
  line-height: 1.8;
  text-align: center;
}

/* ===== INFO CARDS ===== */
.info-cards {
  max-width: clamp(300px, 90vw, 1100px);
  margin: clamp(30px, 5vw, 50px) auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  padding: 0 clamp(10px, 3vw, 20px);
}

/* ===== CARD PRINCIPAL ===== */
.card {
  background: #fff;
  padding: clamp(20px, 4vw, 30px);
  border-radius: clamp(1rem, 1vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #ff7b00;
  margin-bottom: clamp(10px, 2vw, 15px);
}

.card p {
  color: #555;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
}

/* ===== VALORES ===== */
.valores {
  max-width: clamp(300px, 90vw, 1100px);
  margin: auto;
  padding-bottom: clamp(40px, 6vw, 60px);
}

.valores h3 {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #222;
  margin-bottom: clamp(20px, 3vw, 30px);
}

/* ===== GRID DE VALORES ===== */
.valores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(15px, 3vw, 25px);
}

/* ===== TARJETAS DE VALORES ===== */
.valor {
  background-color: #fffbe6;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 20%;
  flex: 1 1 clamp(200px, 45%, 300px);
  max-width: clamp(220px, 45%, 300px);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.valor:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.valor h4 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #ff7b00;
  margin-bottom: clamp(5px, 1vw, 10px);
}

.valor p {
  color: #555;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}
