/* ===============================
   VARIABLES DE COLOR RIBATECH
================================ */
/* ================= PALETA RIBATECH ================= */
:root {
  --ribatech-azul: #1b3661;        /* azul oscuro elegante */
  --ribatech-azul-claro: #2e4368;  /* hover suave */
  --ribatech-acento: #3f8fa3;      /* turquesa apagado */
  --ribatech-turquesa: #1aa0bf;
  --ribatech-gris: #f2f2f2;
  --ribatech-texto: #222;
}

/* ===============================
   CONTENEDOR GENERAL
================================ */
main.quienes-somos {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: var(--ribatech-texto);
  line-height: 1.6;
}

/* ===============================
   HERO
================================ */
.hero-quienes {
  text-align: center;
  margin-bottom: 50px;
}


.hero-quienes h1 {
  color: var(--ribatech-azul);
  font-size: 32px;
  margin-bottom: 10px;
}



.hero-quienes p {
    font-size: 20px;
    color: var(--ribatech-azul-claro);
    font-weight: bold;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}


.hero-quienes p::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--ribatech-acento);
    margin:20px auto 0;
}

/* ===============================
   SECCIONES
================================ */
section h2 {
  color: var(--ribatech-azul);
  font-size: 24px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--ribatech-acento);
  display: inline-block;
  padding-bottom: 5px;
}

section p {
  margin-bottom: 20px;
    text-align: justify;

}



/* ===============================
   DATOS CORPORATIVOS
================================ */

.datos-corporativos ul{
    margin-left: 30px;
}

/* ===============================
   GALERÍA DE INSTALACIONES
================================ */
.galeria {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.foto {
  flex: 1 1 45%;
  text-align: center;
}

.foto img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.foto p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ribatech-texto);
}

/* ===============================
   CTA CONTACTO
================================ */
.cta-contacto {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background: var(--ribatech-gris);
  border-radius: 6px;
}

.cta-contacto h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.cta-contacto p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--ribatech-acento);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--ribatech-turquesa);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .galeria {
    flex-direction: column;
  }

  .foto {
    flex: 1 1 100%;
  }

  .hero-quienes h1 {
    font-size: 28px;
  }

  .hero-quienes p {
    font-size: 16px;
  }

  .cta-contacto h2 {
    font-size: 22px;
  }

  .cta-contacto p {
    font-size: 15px;
  }
}
