* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nosotros-p2 {
  padding: 5rem 2rem;
  background-color: #fffaeb;
  position: relative;
  overflow: hidden;
}

/* Primera imagen de fondo - esquina inferior izquierda */
.nosotros-p2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-image: url('../../resources/img/fondo-nosotros-p2.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

/* Segunda imagen de fondo - esquina inferior derecha (pegada al lado de la foto) */
.nosotros-p2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background-image: url('../../resources/img/cafecito.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

/* Asegurar que el contenido esté por encima del fondo */
.nosotros-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Dos columnas con proporción 2:1 */
.two-columns-2x1 {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

/* Columna izquierda: 2 partes */
.left-column {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Contenido superior (subtítulo + lista) */
.top-content {
  flex-shrink: 0;
}

/* Frase en la parte inferior */
.quote-wrapper {
  flex-shrink: 0;
}

/* Columna derecha: 1 parte */
.right-column {
  flex: 1;
  display: flex;
  align-items: stretch;
}

/* Imagen derecha que ocupa toda la altura */
.image-2x3-right {
  width: 100%;
  max-width: 675px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

/* Subtítulo */
.subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6e221c;
  line-height: 1.3;
  margin-bottom: 2rem;
}

/* Lista de características */
.features-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6e221c;
  margin-bottom: 0.5rem;
}

/* Frase centrada */
.quote-text {
  font-size: 1.05rem !important;
  line-height: 1.6;
  color: #6e221c;
  font-style: normal;
  text-align: center;
  padding-left: 0;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nosotros-p2::before {
    width: 180px;
    height: 180px;
    opacity: 0.1;
  }
  
  .nosotros-p2::after {
    width: 150px;
    height: 150px;
    opacity: 0.1;
  }
  
  .two-columns-2x1 {
    flex-direction: column;
    gap: 2rem;
  }
  
  .image-2x3-right {
    min-height: auto;
    height: auto;
    max-width: 260px;
    margin: 0 auto;
  }
  
  .right-column {
    justify-content: center;
  }
  
  .subtitle {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .features-list li {
    text-align: center;
  }
  
  .quote-text {
    text-align: center;
  }
}