/* ================================================
   NOSOTROS PILAR — Guardianes / Embajadores / Amigos
   ================================================ */

.nosotros-pilar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 60px;
}

/* Orientación: texto izquierda, foto derecha (default) */
.nosotros-pilar--izquierda .nosotros-pilar__texto {
  order: 1;
}
.nosotros-pilar--izquierda .nosotros-pilar__foto {
  order: 2;
}

/* Orientación: foto izquierda, texto derecha */
.nosotros-pilar--derecha .nosotros-pilar__foto {
  order: 1;
}
.nosotros-pilar--derecha .nosotros-pilar__texto {
  order: 2;
}

/* Título SVG blob */
.nosotros-pilar__titulo-svg {
  margin-bottom: 24px;
}

.nosotros-pilar__titulo-svg img {
  max-width: 100%;
  height: auto;
}

/* Título con blob */
.nosotros-pilar__titulo-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.nosotros-pilar__titulo-blob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 80%;
  z-index: 0;
}

.nosotros-pilar__titulo-blob img {
  width: 100%;
  height: auto;
}

.nosotros-pilar__titulo-texto {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.nosotros-pilar__titulo-script {
  font-family: 'VasttagBrush', cursive;
  font-size: 3rem;
  color: #1a3f16;
  line-height: 1.1;
}

.nosotros-pilar__titulo-bold {
  font-family: 'Figtree', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a3f16;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Descripción */
.nosotros-pilar__descripcion {
  font-family: 'Figtree', sans-serif;
  font-size: 22px;
  color: #5b5b5f;
  line-height: 1.7;
  margin: 0 0 40px 0;
  text-align: center;
}

/* Íconos */
.nosotros-pilar__iconos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.nosotros-pilar__icono {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nosotros-pilar__icono img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.nosotros-pilar__icono-texto {
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* Foto SVG */
.nosotros-pilar__foto {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros-pilar__foto img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Botón */
.nosotros-pilar__boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 50px;
  min-width: 250px;
  min-height: 80px;
  text-decoration: none;
  margin-top: 16px;
  background-image: url('/themes/custom/aires_theme/images/adn-bg-btn-1.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.nosotros-pilar__boton span {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .nosotros-pilar {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .nosotros-pilar--izquierda .nosotros-pilar__texto,
  .nosotros-pilar--derecha .nosotros-pilar__texto {
    order: 2;
  }

  .nosotros-pilar--izquierda .nosotros-pilar__foto,
  .nosotros-pilar--derecha .nosotros-pilar__foto {
    order: 1;
  }
}
