/* ==========================================================================
   SOBRE NÓS — 8 dobras
   Segue o design system Asset: fundo preto + acento vermelho neon
   ========================================================================== */

/* Dobra 01 | Resumo Institucional (Hero) */
.sobre-hero-section {
  background-color: #000000;
  color: #ffffff;
  padding: 190px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .sobre-hero-section {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 65%,
        rgba(0, 0, 0, 0.65) 85%,
        #000000 100%), url("../images/home/bg-hero.png") center center / cover no-repeat;
  }
}

.sobre-hero-section .sobre-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.sobre-hero-section .sobre-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.sobre-hero-section .sobre-subtitle strong {
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 992px) {
  .sobre-hero-section {
    padding: 80px 0 0 0;
  }
  .sobre-hero-section .sobre-title {
    font-size: 2.1rem;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .sobre-hero-section .sobre-title {
    font-size: 1.7rem;
  }
  .sobre-hero-section .sobre-subtitle {
    font-size: 1.02rem;
  }
}

/* Títulos de seção reutilizáveis */
.sobre-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 18px;
}

.sobre-section-subtitle {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.sobre-cta-wrapper {
  margin-top: 55px;
  text-align: center;
}

/* Dobra 02 | História & Tradição */
.sobre-history-section {
  background-color: #000000;
  color: #ffffff;
  padding: 90px 0;
}

@media (min-width: 992px) {
  .sobre-history-section {
    background-color: #000000 !important;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        #000000 100%), url("../images/home/bg-section.png") center center / cover no-repeat;
  }
}

.sobre-history-section .history-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 34px;
}

.sobre-history-section .history-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom,
      var(--color-primary) 0%,
      rgba(255, 0, 51, 0.4) 70%,
      transparent 100%);
  box-shadow: 0 0 8px rgba(255, 0, 51, 0.6);
}

.sobre-history-section .history-item {
  position: relative;
  margin-bottom: 34px;
}

.sobre-history-section .history-item:last-child {
  margin-bottom: 0;
}

.sobre-history-section .history-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(255, 0, 51, 0.7);
}

.sobre-history-section .history-item p {
  font-size: 1rem;
  color: #e6e6e6;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0;
}

.sobre-history-section .history-item strong {
  font-weight: 700;
  color: #ffffff;
}

/* Dobra 03 | Missão, Visão e Valores */
.sobre-values-section {
  background-color: #000000;
  color: #ffffff;
  padding: 90px 0;
}

.sobre-value-card {
  background-color: #020202;
  border: 1px solid rgba(255, 0, 51, 0.12);
  border-radius: 8px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  box-shadow: inset 0 0 15px rgba(255, 0, 51, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.sobre-value-card:hover {
  border-color: rgba(255, 0, 51, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.06),
    inset 0 0 15px rgba(255, 0, 51, 0.03);
  transform: translateY(-5px);
}

.sobre-value-card .value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 51, 0.35);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin: 0 auto 22px;
}

.sobre-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.sobre-value-card p {
  font-size: 0.95rem;
  color: #cccccc;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Dobra 04 | Para Quem a Asset Existe */
.sobre-forwhom-section {
  background-color: #000000;
  color: #ffffff;
  padding: 90px 0;
}

@media (min-width: 992px) {
  .sobre-forwhom-section {
    background-color: #000000 !important;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        #000000 100%), url("../images/home/bg-section.png") center center / cover no-repeat;
  }
}

.sobre-forwhom-box {
  background: linear-gradient(135deg,
      rgba(35, 7, 10, 0.4) 0%,
      rgba(15, 3, 4, 0.5) 100%);
  border: 1px solid rgba(255, 0, 51, 0.15);
  border-radius: 10px;
  padding: 55px 60px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(255, 0, 51, 0.03);
}

.sobre-forwhom-box p {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sobre-forwhom-box p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .sobre-forwhom-box {
    padding: 40px 26px;
  }
  .sobre-forwhom-box p {
    font-size: 1.05rem;
  }
}

/* Dobra 05 | Nosso Time */
.sobre-team-section {
  background-color: #000000;
  color: #ffffff;
  padding: 90px 0;
}

.sobre-team-quote {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
  line-height: 1.5;
}

.sobre-team-card {
  background: linear-gradient(135deg,
      rgba(35, 7, 10, 0.35) 0%,
      rgba(15, 3, 4, 0.4) 100%);
  border: 1px solid rgba(255, 0, 51, 0.12);
  border-radius: 8px;
  padding: 38px 30px;
  height: 100%;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sobre-team-card:hover {
  border-color: rgba(255, 0, 51, 0.3);
  transform: translateY(-4px);
}

.sobre-team-card .team-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.sobre-team-card p {
  font-size: 0.98rem;
  color: #e6e6e6;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Dobra 06 | Nossos Alunos (prova social) */
.sobre-students-section {
  background-color: #000000;
  color: #ffffff;
  padding: 90px 0;
}

@media (min-width: 992px) {
  .sobre-students-section {
    background-color: #000000 !important;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        #000000 100%), url("../images/home/bg-section.png") center center / cover no-repeat;
  }
}

.sobre-students-section .video-card {
  background-color: #8c8c8c;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-students-section .video-card iframe {
  border-radius: 12px;
  border: 1px solid var(--color-primary);
  height: 100%;
}

.sobre-students-section .video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.sobre-testimonial-text {
  background: linear-gradient(135deg,
      rgba(35, 7, 10, 0.35) 0%,
      rgba(15, 3, 4, 0.4) 100%);
  border: 1px solid rgba(255, 0, 51, 0.12);
  border-radius: 8px;
  padding: 30px 28px;
  height: 100%;
  transition: border-color 0.3s ease;
}

.sobre-testimonial-text:hover {
  border-color: rgba(255, 0, 51, 0.3);
}

.sobre-testimonial-text .quote-icon {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.sobre-testimonial-text p {
  font-size: 0.95rem;
  color: #e6e6e6;
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.sobre-testimonial-text .student-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  font-style: normal;
}

/* Dobra 07 | Estrutura & Unidade Física */
.sobre-structure-section {
  background-color: #000000;
  color: #ffffff;
  padding: 90px 0;
}

.sobre-structure-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.sobre-structure-item:last-child {
  margin-bottom: 0;
}

.sobre-structure-item .structure-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 51, 0.35);
  color: var(--color-primary);
  font-size: 1.15rem;
}

.sobre-structure-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.sobre-structure-item p {
  font-size: 0.95rem;
  color: #cccccc;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

.sobre-structure-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 51, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.08);
  height: 100%;
  min-height: 340px;
}

.sobre-structure-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.1);
}

@media (max-width: 991.98px) {
  .sobre-structure-map {
    margin-top: 35px;
    min-height: 300px;
  }
}

/* Dobra 08 | CTA Forte de Fechamento */
.sobre-final-section {
  background-color: #000000;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

@media (min-width: 992px) {
  .sobre-final-section {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.75) 100%), url("../images/home/bg-faq.png") center center / cover no-repeat;
  }
}

.sobre-final-section .final-hook {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto 45px;
}

.sobre-final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

/* Botão secundário (outline suave) */
.btn-asset-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 14px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-asset-outline:hover {
  color: #ffffff;
  border-color: var(--color-primary);
  background-color: rgba(255, 0, 51, 0.1);
}

@media (max-width: 767.98px) {
  .sobre-history-section,
  .sobre-values-section,
  .sobre-forwhom-section,
  .sobre-team-section,
  .sobre-students-section,
  .sobre-structure-section {
    padding: 70px 0;
  }
  .sobre-section-title {
    font-size: 1.15rem;
  }
  .sobre-section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .sobre-team-quote {
    font-size: 1.2rem;
  }
  .sobre-final-section {
    padding: 80px 0;
  }
  .sobre-final-section .final-hook {
    font-size: 1.4rem;
  }
  .sobre-final-buttons .btn-asset-neon,
  .sobre-final-buttons .btn-asset-outline {
    width: 100%;
  }
}
