@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --color-naranja: #ff6600;
}

body {
  margin: 0;
  overflow-x: hidden; /* Previene scroll horizontal */
}

.sobre-nosotros {
  position: relative;
  background-image: url('../imagenes/jyj.webp');
  background-size: cover;
  background-position: center;
  height: 380px;
  width: 100%; /* Asegura ancho completo */
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: 'Helvetica', sans-serif; /* Cambiada la fuente */
}

.sobre-nosotros .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.sobre-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sobre-texto {
  max-width: 450px;
  margin-right: 40px; /* Despega texto hacia la izquierda */
  font-family: 'Montserrat', sans-serif;
  margin-left: 30px; 
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.sobre-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.btn-conocenos {
  display: inline-block;
  background: #ff6600ee;
  color: #ffffffee;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-conocenos:hover {
  background: #ff6600;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

/* Línea vertical separadora */
.linea-verti {
  width: 2px;
  height: 100%;       /* Asegura que se vea */
  min-height: 200px; /* Evita colapsar en pantallas muy bajas */
  background: var(--color-naranja);
  opacity: 0.9;
}

.sobre-logo img {
  width: 300px;
}

@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .linea-verti {
    display: none;
  }

  .sobre-texto {
    margin: 0 0 2rem 0;
    margin-left: 10px;
  }

  .sobre-logo img {
    width: 180px;
  }
}
