/* =====================================================
   QUIÉNES SOMOS — Estilo público unificado
   Proyecto: Campo 9 Inmobiliaria
   ===================================================== */

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ---------- SECCIÓN PRINCIPAL ---------- */
.nosotros-page {
  max-width: 1500px;
    margin: 15px auto;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-top: 35px;
}

/* ---------- IMAGEN DE CABECERA ---------- */
.nosotros-page .imagen {
  width: 95%;
    margin: auto;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-bottom: 6px solid #a30000;
}

@media (max-width: 768px) {
  .nosotros-page .imagen {
    height: 300px;
  }
  
}

/* ---------- CONTENIDO ---------- */
.nosotros-page .contenido {
  padding: 40px;
}

.nosotros-page h1 {
  font-size: 2rem;
  color: #a30000;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.nosotros-page h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 80px;
  height: 4px;
  background: #ffcc00;
  border-radius: 3px;
}

.nosotros-page p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nosotros-page {
    margin: 20px;
  }
  .nosotros-page .contenido {
    padding: 20px;
  }
  .nosotros-page h1 {
    font-size: 4rem;
  }
  .nosotros-page p {
    font-size: 1rem;
  }
}

/* ---------- BOTÓN VOLVER ---------- */
.volver-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-volver {
  display: inline-block;
  background: #a30000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-volver:hover {
  background: #800000;
}

.btn-volver i {
  margin-right: 6px;
}