/* ==================== SECCIÓN SOBRE (QUIÉNES SOMOS) ==================== */

.sobre-section{
  background: #1A1A1A;
  color: #fff;
  padding: 7rem 0;
}

.sobre-section .section-header{
  margin-bottom: 3.5rem;
}

/* Párrafo principal (intro) */
.sobre-section .sobre-intro{
  font-size: 1.15rem;
  font-weight: 600;
  color: #D4AF37;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  text-align: center;
  max-width: 46ch;
}

/* Tarjetas (Misión / Visión / Valores) */
.sobre-section .sobre-card{
  background: rgba(212,175,55,0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(212,175,55,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.sobre-section .sobre-card--left{
  border-left: 4px solid #D4AF37;
}

.sobre-section .sobre-card h3{
  font-size: 1.5rem;
  color: #D4AF37;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sobre-section .sobre-card p{
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Valores */
.sobre-section .valores-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.sobre-section .valor-item{
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.12);
  padding: 1.4rem;
  border-radius: 12px;
  border-top: 3px solid #D4AF37;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.sobre-section .valor-item h4{
  color: #D4AF37;
  font-size: 0.98rem;
  margin: 0 0 0.7rem 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sobre-section .valor-item p{
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px){
  .sobre-section{ padding: 5.5rem 0; }
  .sobre-section .valores-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Fundador */
.sobre-section .fundador-card{
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
  border-radius: 14px;
  color: #fff;
  border: 1px solid rgba(212,175,55,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.sobre-section .fundador-title{
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  color: #D4AF37;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sobre-section .fundador-photo{
  width: 200px;
  height: 200px;
  border-radius: 14px;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 3px solid #D4AF37;
  box-shadow: 0 8px 22px rgba(212,175,55,0.18);
}

.sobre-section .fundador-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.15);
}

.sobre-section .fundador-name{
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 0.65rem 0;
}

.sobre-section .fundador-role{
  color: #D4AF37;
  margin: 0 0 1.35rem 0;
  font-weight: 700;
  font-size: 1rem;
}

.sobre-section .fundador-quote{
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  border-left: none;
  padding-left: 1.5rem;
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 640px){
  .sobre-section{ padding: 4.5rem 0; }
  .sobre-section .valores-grid{ grid-template-columns: 1fr; }
  .sobre-section .sobre-card{ padding: 1.5rem; }
  .sobre-section .sobre-card h3{ font-size: 1.25rem; }
  .sobre-section .sobre-card p{ font-size: 1rem; }

  .sobre-section .fundador-card{ padding: 1.6rem; }
  .sobre-section .fundador-photo{ width: 170px; height: 170px; }
  .sobre-section .fundador-title{ font-size: 1.25rem; }
  .sobre-section .fundador-name{ font-size: 1.25rem; }
  .sobre-section .fundador-quote{ font-size: 1rem; padding-left: 1.1rem; }
}
