/************************************************/
/* QUIÉNES SOMOS                                */
/************************************************/

/*==============================================
HERO
==============================================*/

.hero-interno {
  position: relative;
  display: flex;
  height: 420px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-interno .hero-banner-img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-interno .overlay {
  position: absolute;
  z-index: 1;
  inset: 0;

  background: var(--hero-overlay);
}

.hero-interno .hero-contenido {
  position: relative;
  z-index: 2;

  width: 100%;
  padding: 5rem 0;

  color: var(--text-light);
  text-align: center;
}

.hero-interno .subtitulo {
  display: block;
  margin-bottom: 0;

  color: var(--verde-claro);
}

.hero-interno h1 {
  margin: 0 0 1rem;

  color: var(--text-light);
  font-family: var(--font-title);
  font-size: 64px;
  line-height: 1.1;
}

.hero-interno .section-divider {
  margin: 0 auto 1.5rem;
}

.hero-interno p {
  max-width: 750px;
  margin: 1.5rem auto 0;

  color: var(--text-light);
  font-size: 18.4px;
  line-height: 1.7;
}

/*==============================================
HISTORIA
==============================================*/

.empresa-historia {
  padding: 55px 0;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.historia-img img {
  display: block;

  width: 100%;

  border-radius: var(--radius);
}

.historia-content p {
  margin: 1.2rem 0;

  line-height: 1.8;
}

/*==============================================
NUESTRA ESENCIA
==============================================*/

.empresa-descripcion {
  padding: 55px 0 45px;
}

.empresa-descripcion .section-header {
  max-width: none;
  margin: 0;
}

.empresa-descripcion .section-header p {
  max-width: none;
  margin: 0;

  color: var(--texto-claro);
  line-height: 1.8;
  text-align: left;
}

.empresa-descripcion .section-header p + p {
  margin-top: 8px;
}
/*==============================================
FILOSOFÍA
==============================================*/

.filosofia-empresa {
  padding: 55px 0;
}

.filosofia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.filosofia-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;

  border-radius: var(--radius);
  background: var(--blanco);
  box-shadow: var(--shadow);

  text-align: left;
  transition: var(--transition);
}

.filosofia-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.filosofia-card h3 {
  position: relative;
  margin: 0 0 26px;

  color: var(--verde);
  font-family: var(--font-title);
}

.filosofia-card h3::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;

  width: 60px;
  height: 3px;

  border-radius: 50px;
  background: var(--verde-claro);
  transition: width 0.35s ease;
}

.filosofia-card:hover h3::after {
  width: 35%;
}

.filosofia-card p {
  margin: 0;

  color: var(--texto);
  line-height: 1.7;
  text-align: justify;
}

.valores-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;

  list-style: none;
}

.valores-list li {
  position: relative;
  padding-left: 14px;

  color: var(--texto);
  line-height: 1.5;
}

.valores-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;
  background: var(--verde-claro);
}

/*==============================================
CAPACIDAD TÉCNICA
==============================================*/

.capacidad-tecnica {
  padding: 55px 0;
}

.capacidad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.capacidad-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 30px;

  border-radius: var(--radius);
  background: var(--blanco);
  box-shadow: var(--shadow);

  text-align: center;
  transition: var(--transition);
}

.capacidad-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.capacidad-card i {
  display: flex;
  width: 65px;
  height: 65px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;

  border-radius: 50%;
  background: rgba(154, 206, 22, 0.12);

  color: var(--verde);
  font-size: 1.6rem;
}

.capacidad-card h3 {
  position: relative;
  margin: 0 0 26px;

  color: var(--verde);
  font-family: var(--font-title);
}

.capacidad-card h3::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;

  width: 60px;
  height: 3px;

  border-radius: 50px;
  background: var(--verde-claro);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.capacidad-card:hover h3::after {
  width: 75%;
}

.capacidad-card p {
  margin: 0;

  color: var(--texto-claro);
  line-height: 1.7;
}

/*==============================================
DATOS DESTACADOS
==============================================*/

.empresa-datos {
  padding: 55px 0;
}

.datos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  text-align: center;
}

.dato-item {
  position: relative;
  padding: 1rem 2rem;
}

.dato-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;

  width: 1px;
  height: 70%;

  background: rgba(0, 0, 0, 0.15);
}

.dato-item strong {
  display: block;

  color: var(--verde);
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
}

.dato-item span {
  display: block;
  margin-top: 0.5rem;

  color: var(--texto-claro);
  line-height: 1.5;
}

/*==============================================
ASESORÍA
==============================================*/

.centro-ayuda {
  padding: 55px 0 60px;
}

.ayuda-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
}

.ayuda-content {
  max-width: 650px;
}

.acompanamiento-personaje {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.acompanamiento-personaje img {
  width: 100%;
  max-width: 320px;

  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

/*==============================================
DIVISORES
==============================================*/

.section-divider {
  width: var(--divider-width);
  height: var(--divider-height);
  margin: 0 auto 20px;

  border-radius: 50px;
  background: var(--verde-claro);
}

.section-divider-1 {
  width: var(--divider-width);
  height: var(--divider-height);
  margin: 0 0 20px;

  border-radius: 50px;
  background: var(--verde-claro);
}
