/* ============================================
   SOBRE NOSOTROS - ESTILOS ESPECÍFICOS
   ============================================ */

/* Hero Banner */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brand-red);
}

.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(227, 6, 19, 0.95) 0%, rgba(234, 91, 12, 0.7) 50%, rgba(227, 6, 19, 0.4) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  width: 100%;
  padding: 3rem 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: clamp(1.9rem, 2vw, 1.7rem);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
  max-width: 750px;
  margin: 0 auto;
}

/* About Intro */
.about-intro {
  padding: 5rem 0;
  background-color: white;
}

.about-team-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.team-photo:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--brand-red);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.about-container {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-container:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-content .team-photo {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-box {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Banner de Compromiso */
.commitment-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 100%);
  position: relative;
  overflow: hidden;
}

.commitment-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.commitment-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.commitment-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: white;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.commitment-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: 400;
}

/* Marcas con las que Trabajamos */
.brands-section {
  padding: 4.5rem 0;
  background: #fff;
}

.brands-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
  gap: 2.5rem;
  max-width: 1170px;
  margin: 0 auto;
}

.brand-logo-box {
  height: 326px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e9ecef;
}

.brand-logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: var(--brand-red);
}

/* Misión, Visión, Valores */
.mvv-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.mvv-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(227, 6, 19, 0.15);
}

.mvv-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.mvv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.mvv-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
}

.values-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.values-list li {
  font-size: 1rem;
  color: #495057;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid #e9ecef;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Certificaciones */
.certifications {
  padding: 5rem 0;
  background-color: white;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.cert-card {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cert-card:hover {
  background: white;
  border-color: var(--brand-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.15);
}

.cert-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.cert-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.cert-desc {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.5;
}

/* Equipo */
.team {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(227, 6, 19, 0.15);
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  font-size: 5rem;
  filter: brightness(2);
}

.member-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #212529;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.member-title {
  font-size: 1.1rem;
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.member-cert {
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
}

/* Por Qué Elegir SINECI */
.why-sineci {
  padding: 5rem 0;
  background-color: white;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.reason-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--brand-red), var(--brand-orange));
  transition: height 0.3s ease;
}

.reason-card:hover::before {
  height: 100%;
}

.reason-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.15);
}

.reason-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--brand-red);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -2rem;
}

.reason-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #212529;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.reason-text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
}

/* CTA Final */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    padding: 2.5rem;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-stats {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .stat-box {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
  }
  
  .about-container {
    padding: 2rem;
    border-radius: 12px;
  }
  
  .about-team-image {
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  
  .team-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }
  
  .about-intro,
  .commitment-banner,
  .brands-section,
  .mvv-section,
  .certifications,
  .team,
  .why-sineci,
  .cta-final {
    padding: 3rem 0;
  }

  .commitment-content {
    padding: 1.5rem;
  }

  .commitment-title {
    font-size: 1.5rem;
  }

  .commitment-subtitle {
    font-size: 1rem;
  }
  
  .about-stats {
    flex-direction: column;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .brand-logo-box {
    height: 130px;
    padding: 1.3rem;
  }
  
  .mvv-grid,
  .certifications-grid,
  .team-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .page-hero-content {
    padding: 1.5rem;
  }
  
  .about-container {
    padding: 1.5rem;
  }
  
  .team-photo {
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .mvv-icon,
  .cert-icon {
    font-size: 3rem;
  }
  
  .member-photo {
    width: 120px;
    height: 120px;
  }
  
  .photo-placeholder {
    font-size: 4rem;
  }
  
  .reason-number {
    font-size: 4rem;
  }
}
