
/* ===============================
   TIPOGRAFÍA Y BASE
   =============================== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Rethink+Sans:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Rethink Sans', sans-serif;
  background: #fff;
  color: #444;
}

h1, h2, h3, .nombre {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

/* ===============================
   CONTENEDOR GENERAL
   =============================== */
.container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   SECCIÓN HERO / VISIÓN
   =============================== */
.hero {
  background-color: #fff;
  color: #000;
  padding: 56px 0 36px 0;
  text-align: center;
}

.hero a {
  text-decoration: none;
  color: inherit;
}

.hero a:hover,
.hero a:focus {
  text-decoration: none; 
  color: inherit;        
}

.hero h1 {
  margin-top: 0;
  font-size: 2.6rem;
  letter-spacing: 2px;
}

.vision-texto {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  font-family: 'Rethink Sans', sans-serif;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 60px auto;
  line-height: 1.6;
  padding: 0 1rem;
}

/* ===============================
   MENÚ INFORMATIVO
   =============================== */
.menu-informativo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  margin-top: 2rem;
  padding-right: 2rem;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.menu-informativo a {
  text-decoration: none;
  color: inherit;
}

.menu-informativo a:hover,
.menu-informativo a:focus {
  text-decoration: none; 
  color: inherit;        
}

.menu-informativo span.separator {
  border-left: 2px solid #000;
  height: 1.2em;
}

@media (max-width: 600px) {
  .menu-informativo {
    justify-content: center;
    text-align: center;
    padding-right: 0;
  }

  .menu-informativo span.separator {
    display: none;
  }

  .menu-informativo span {
    display: block;
    margin-bottom: 0.5rem;
  }
}

/* ===============================
   EQUIPO
   =============================== */
.equipo {
  background: #fff;
  padding: 48px 0;
}

.equipo h2 {
  text-align: center;
  margin-top: 0;
  font-size: 2.1rem;
  color: #5b6747;
  letter-spacing: 2px;
}

.equipo-cards {
  display: flex;
  gap: 0px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.equipo-card {
  background: transparent;
  border-radius: 0;
  padding: 16px;
  box-shadow: none;
  width: 320px;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.equipo-card .nombre {
  font-weight: 700;
  color: #677550;
  font-size: 1.22rem;
  margin: 10px 0 8px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.equipo-card .desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.45;
}

.foto_equipo {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* ===============================
   SERVICIOS
   =============================== */
.servicios {
  background: #fff;
  padding: 48px 0;
}

.servicios h2 {
  text-align: center;
  margin-top: 0;
  font-size: 2.1rem;
  color: #000;
  letter-spacing: 2px;
}

.servicio-cards {
  display: flex;
  gap: 38px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.servicio-card {
  background: #fff;
  border-radius: 13px;
  padding: 22px 24px 16px 24px;
  box-shadow: 0 2px 12px 0 #0001;
  width: 320px;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.servicio-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.19rem;
}

/* ===============================
   CONTACTO
   =============================== */
.contacto {
  background: #fff;
  padding: 48px 0;
}

.contacto-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.contacto h2 {
  margin-top: 0;
  color: #97a283;
  letter-spacing: 2px;
  font-size: 1.7rem;
}

.redes {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.redes li a {
  background: #97a283;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.2s;
}

.redes li a:hover {
  background: #97a283;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #fff;
  color: #fff;
  text-align: center;
  padding: 24px 0 16px 0;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 900px) {
  .equipo-cards, .servicio-cards, .contacto-flex {
    flex-direction: column;
    align-items: center;
  }

  .equipo-card, .servicio-card {
    width: 95%;
    margin-bottom: 18px;
  }

  .contacto-flex > div {
    width: 95%;
  }
		
	
}

@media (max-width: 600px) {
  .equipo-card .foto_equipo {
    width: 140px;
    height: auto;
    max-width: none;
    margin-bottom: 16px;
  }
}



