#our{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 35rem;
    padding-top: 2rem;
    padding-right: 0px;
    padding-bottom: 2rem;
    padding-left: 0px;
    background: black;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}

#our .caret {
    width: 100px;
    margin: 0 auto;
    background-color: #244889;
    height: 5px;  
}

#our h1 {
    font-family: 'Varela Round';
    font-size: 3rem;
    line-height: 3rem;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

#our h2 {
    font-family: 'Nunito';
    font-size: 1.2rem;
    line-height: 2.3rem;
    color: #777;
}

#extraContent {
    display: none;
}

@media (min-width: 768px){
    #followReading{
        display: none !important;
    }
    #extraContent {
        display: block;
    }
    #our{
        padding-bottom: 2.5rem;
        padding-top: 2.5rem;
    }
    #our h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    #our h2 {
        max-width: 50rem;
        font-size: 1.15rem;
    }
}

@media (min-width: 992px){
    #followReading{
        display: none !important;
    }
    #extraContent {
        display: block;
    }
    #our{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    #our h1 {
        font-size: 4rem;
        line-height: 4.5rem;
    }
    #our h2 {
        max-width: 80rem;
        font-size: 1.25rem;
    }
}

/* === OUR: título + párrafos centrados (móvil y desktop) === */
#our h2,
#our .section-title {
  font-family: 'Nunito', sans-serif;    /* misma que usamos en el resto */
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #6f7684;                       /* gris fino, como Servicios/Contacto */
  text-align: center;
  margin-bottom: 0.75rem;
}

/* subrayado/linea bajo el título igual que en el resto */
#our .section-underline {
  width: 120px;
  height: 6px;
  background: #1d3a6d;                  /* mismo azul de la web */
  margin: 0.75rem auto 1.25rem;
  border-radius: 4px;
}

#our p {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 1rem;
}

/* botón “Leer más / Leer menos” centrado */
#our .btn-readmore {
  display: inline-block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
#our .readmore-wrapper {
  text-align: center;                   /* para centrar sin hacks */
}
#our .text-center .btn-readmore {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   "NOSOTROS" — estilo producción
   =========================== */

/* Contenedor de la sección con veladura superpuesta */
#our {
  position: relative;
  background-color: #0a0d14; /* base oscura neutra (fallback) */
}

/* Capa de degradado/veladura para mejorar contraste del texto sobre el fondo */
#our::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Degradado invertido: negro arriba, azul corporativo abajo */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(10, 13, 20, 0.85) 50%,
    rgba(11, 26, 57, 0.6) 100%
  );
  pointer-events: none;
  z-index: 0;
}


/* Asegura que el contenido quede por encima de la veladura */
#our .container,
#our .our-content {
  position: relative;
  z-index: 1;
}

/* ==== Título "Nosotros" restaurado (manteniendo h2 semántico) ==== */
#our .our-title-lg {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6.2vw, 4.2rem);
  line-height: 1.15;
  text-align: center;
  color: #fdfdff;

  /* Sombra inferior para relieve y luz superior para volumen */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),     /* sombra base */
    0 -2px 4px rgba(255, 255, 255, 0.15), /* brillo leve arriba */
    0 6px 12px rgba(0, 0, 0, 0.35);    /* profundidad general */

  margin: 0 0 .75rem 0;
}

/* Línea azul (caret) bajo el título */
#our .our-caret {
  width: 78px;          /* un poco más ancho que 72 para títulos grandes */
  height: 6px;          /* más gruesa que la de otras secciones */
  background: #1d3a6d;  /* azul corporativo */
  border-radius: 3px;
  margin: .25rem auto 2.25rem auto; /* separación visual agradable */
}

/* Texto de párrafos — reforzar legibilidad en fondo oscuro */
#our .our-content p {
  color: rgba(255, 255, 255, 0.92);
}

/* Botón "Leer más..." centrado y con aire (si aún no lo está) */
#our .btn-readmore {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
#our .text-center .btn-readmore { /* por si lo envolviste en .text-center */
  margin-left: auto;
  margin-right: auto;
}
