/* Estilos para la página Sobre Nosotros - Sigue la línea de diseño del sitio */

.nosotros_main {
  position: relative;
  width: 100%;
  color: #ffffff;
  display: block;
  padding: 2em 3em;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Section */
.nosotros_hero {
  text-align: center;
  padding: 4em 0 3em;
  margin-bottom: 3em;
}

.nosotros_title {
  font-size: clamp(2.5em, 5vw, 4.5em);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5em 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.nosotros_subtitle {
  font-size: clamp(1.1em, 2vw, 1.4em);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Secciones Generales */
.nosotros_section {
  margin-bottom: 3em;
}

.section_content {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3em;
  align-items: center;
}

.section_content .section_image {
  aspect-ratio: 1 / 1;
  max-width: 350px;
  max-height: 350px;
  width: 100%;
}

.section_content .section_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_content_reverse {
  grid-template-columns: 0.7fr 1.3fr;
}

.section_content_reverse .section_image {
  order: -1;
  aspect-ratio: 1 / 1;
  max-width: 350px;
  max-height: 350px;
  width: 100%;
}

.section_content_reverse .section_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_content_full {
  width: 100%;
}

.section_content_text_only {
  max-width: 900px;
  margin: 0 auto;
  padding: 4em 3em;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.section_content_text_only::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(26, 139, 44, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section_content_text_only:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.section_content_text_only:hover::before {
  opacity: 1;
}

.section_text_centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2em;
  position: relative;
  z-index: 1;
}

.section_text {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.section_paragraph_centered {
  font-size: 1.2em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 100%;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.section_title {
  font-size: clamp(2em, 3.5vw, 3em);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1em 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.section_title_center {
  text-align: center;
  margin-bottom: 2em;
}

.section_intro {
  text-align: center;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 3em;
  line-height: 1.6;
}

.section_paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.section_image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
}

.section_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.section_image:hover img {
  transform: scale(1.05);
}

/* Valores Grid */
.valores_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.valor_card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5em 2em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.valor_card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.valor_icon {
  font-size: 3em;
  margin-bottom: 1em;
  display: block;
}

.valor_title {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1em 0;
}

.valor_text {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Features List */
.features_list {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 3em;
}

.feature_item {
  display: flex;
  gap: 2.5em;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.feature_item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.feature_number {
  font-size: 3em;
  font-weight: 700;
  color: #1a8b2c;
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 2px 8px rgba(19, 96, 31, 0.5);
}

.feature_content {
  flex: 1;
}

.feature_title {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.75em 0;
}

.feature_text {
  font-size: 1.05em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Equipo Grid */
.equipo_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3em;
  margin-top: 3em;
}

.equipo_card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.equipo_card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.equipo_image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.equipo_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipo_card:hover .equipo_image img {
  transform: scale(1.1);
}

.equipo_name {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  margin: 1.5em 1.5em 0.5em;
}

.equipo_role {
  font-size: 1em;
  color: #ffffff;
  margin: 0 1.5em 1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.equipo_description {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 1.5em 2em;
}

/* CTA Section */
.nosotros_cta {
  padding: 4em 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin-top: 3em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta_title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1em 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.cta_text {
  font-size: clamp(1.1em, 2vw, 1.3em);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2em;
  line-height: 1.6;
}

.cta_button {
  display: inline-block;
  padding: 1.25em 3em;
  background: linear-gradient(135deg, #13601f 0%, #1a8b2c 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(19, 96, 31, 0.5);
  position: relative;
  overflow: hidden;
}

.cta_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(19, 96, 31, 0.7);
  background: linear-gradient(135deg, #1a8b2c 0%, #13601f 100%);
}

.cta_button:hover::before {
  left: 100%;
}

.cta_button:active {
  transform: translateY(-1px);
}

/* Responsive */
@media all and (max-width: 992px) {
  .nosotros_main {
    padding: 2em 2em;
  }
  
  .nosotros_hero {
    padding: 3em 0 2em;
  }
  
  .section_content {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  
  .section_content_reverse .section_image {
    order: 0;
  }
  
  .valores_grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5em;
  }
  
  .feature_item {
    flex-direction: column;
    gap: 1.5em;
    padding: 2em;
  }
  
  .feature_number {
    font-size: 2.5em;
  }
  
  .equipo_grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
  }
  
  .nosotros_cta {
    padding: 3em 2em;
  }
}

@media all and (max-width: 768px) {
  .nosotros_main {
    padding: 2em 1.5em;
  }
  
  .nosotros_hero {
    padding: 2em 0 1.5em;
  }
  
  .valores_grid {
    grid-template-columns: 1fr;
  }
  
  .feature_item {
    padding: 1.5em;
  }
  
  .equipo_grid {
    grid-template-columns: 1fr;
  }
  
  .equipo_image {
    height: 250px;
  }
  
  .nosotros_cta {
    padding: 2.5em 1.5em;
  }
}
