/* ========================================
   PÁGINA SOBRE - ESTRUTURA COMPLETA
======================================== */

/* BASE DA PÁGINA */
.about-page,
body.sobre-page {
  background: var(--fundo);
}

/* SEÇÕES GERAIS DA PÁGINA */
.about-page .section,
.sobre-page .section {
  padding: 96px 0;
}

/* ========================================
   HERO SOBRE (PADRÃO SERVIÇOS)
======================================== */
.service-hero {
  padding: 110px 0 80px;

  background: linear-gradient(
    135deg,
    var(--azul-principal) 0%,
    var(--azul-secundario) 100%
  );

  color: var(--branco);
}

/* TEXTO HERO */
.service-hero .section-title span {
  color: var(--dourado-claro);
}

.service-hero .section-title h1 {
  color: var(--branco);
}

.service-hero .section-title p {
  color: rgba(255, 255, 255, 0.85);
}

.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.about-metrics {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-metrics div {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: var(--sombra);
}

.about-metrics strong {
  display: block;
  color: var(--azul-principal);
  font-size: 18px;
}

.about-metrics span {
  font-size: 13px;
  color: var(--texto-suave);
}
/* ========================================
   BLOCO SOBRE PRINCIPAL
======================================== */
.about {
  padding-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.about-text h2 {
  font-size: 32px;
  line-height: 1.2;
  color: var(--azul-principal);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--texto);
  margin-bottom: 18px;
  max-width: 760px;
}

.about-text strong {
  color: var(--azul-principal);
}

.about-box {
  background: var(--branco);
  border: 1px solid rgba(18, 62, 99, 0.08);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 0 18px 45px rgba(18, 62, 99, 0.08);
  position: sticky;
  top: 110px;
}

.about-box h3 {
  font-size: 22px;
  line-height: 1.3;
  color: var(--azul-principal);
  margin-bottom: 22px;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 62, 99, 0.06);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list i,
.about-list svg {
  width: 18px;
  height: 18px;
  color: var(--dourado);
  flex-shrink: 0;
  margin-top: 4px;
}

.about-highlight {
  margin: 42px auto 0;
  max-width: 980px;
  padding: 24px 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 1) 100%
  );
  border: 1px solid rgba(18, 62, 99, 0.08);
  border-left: 5px solid var(--dourado);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(18, 62, 99, 0.05);
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  color: var(--azul-principal);
  font-weight: 600;
}

/* ========================================
   SEO EVOLUTION
======================================== */
.seo-evolution {
  margin-top: 0;
  background: var(--branco);
  border-radius: 28px;
  padding: 52px 42px;
  box-shadow: 0 20px 60px rgba(18, 62, 99, 0.08);
  border: 1px solid rgba(18, 62, 99, 0.06);
  position: relative;
  overflow: hidden;
}

.seo-evolution::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--azul-principal) 0%,
    var(--dourado) 100%
  );
}

.seo-evolution-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.seo-evolution-header span {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--dourado);
  margin-bottom: 12px;
}

.seo-evolution-header h2,
.seo-evolution-header h3 {
  font-size: 36px;
  line-height: 1.2;
  color: var(--azul-principal);
  margin-bottom: 16px;
}

.seo-evolution-header p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--texto-suave);
}

.seo-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.seo-month {
  background: #ffffff;
  border: 1px solid rgba(18, 62, 99, 0.08);
  border-radius: 18px;
  padding: 24px 22px;
  min-height: 200px;
  position: relative;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.seo-month:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(18, 62, 99, 0.09);
  border-color: rgba(200, 168, 90, 0.35);
}

.seo-month::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dourado);
  box-shadow: 0 0 0 6px rgba(200, 168, 90, 0.16);
}

.month-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.seo-month h4 {
  font-size: 21px;
  line-height: 1.3;
  color: var(--azul-principal);
  margin-bottom: 12px;
}

.seo-month p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--texto-suave);
  margin: 0;
}

/* ========================================
   BEFORE / AFTER
======================================== */
.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.before-card,
.after-card {
  padding: 34px 30px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(18, 62, 99, 0.05);
}

.before-card {
  background: linear-gradient(180deg, #fff7f7 0%, #fff1f1 100%);
  border: 1px solid #ffd9d9;
}

.after-card {
  background: linear-gradient(180deg, #f4fff7 0%, #edfdf3 100%);
  border: 1px solid #cfeeda;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.before-tag {
  background: #ffdede;
  color: #c74343;
}

.after-tag {
  background: #d8f8e2;
  color: #22985b;
}

.before-card h3,
.before-card h4,
.after-card h3,
.after-card h4 {
  font-size: 24px;
  line-height: 1.25;
  color: var(--azul-principal);
  margin-bottom: 18px;
}

.before-card ul,
.after-card ul {
  margin: 0;
  padding-left: 18px;
}

.before-card li,
.after-card li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--texto);
}

.before-card li:last-child,
.after-card li:last-child {
  margin-bottom: 0;
}

/* ========================================
   BLOCOS CENTRALIZADOS
======================================== */
.section-title.center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-title.center span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--dourado);
}

.section-title.center h2 {
  font-size: 44px;
  line-height: 1.18;
  color: var(--azul-principal);
  margin-bottom: 18px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.center p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--texto-suave);
  max-width: 760px;
  margin: 0 auto;
}

/* ========================================
   CTA FINAL
======================================== */
.service-cta {
  padding-top: 80px;
  padding-bottom: 110px;
}

.service-cta-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.service-cta-box .btn {
  margin-top: 28px;
  min-width: 180px;
}

/* ========================================
   ESPAÇAMENTOS ESPECÍFICOS
======================================== */
.about + .section,
.section + .service-cta {
  margin-top: 0;
}

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1100px) {
  .service-hero .section-title h1 {
    font-size: 42px;
  }

  .seo-evolution-header h2,
  .seo-evolution-header h3,
  .section-title.center h2 {
    font-size: 38px;
  }

  .about-grid {
    gap: 38px;
  }
}

@media (max-width: 992px) {
  .about-page .section,
  .sobre-page .section {
    padding: 80px 0;
  }

  .service-hero {
    padding: 76px 0 42px;
  }

  .service-hero .section-title h1 {
    font-size: 38px;
  }

  .about-grid,
  .before-after,
  .seo-timeline {
    grid-template-columns: 1fr;
  }

  .about-box {
    position: static;
  }

  .seo-month {
    min-height: auto;
  }

  .seo-evolution {
    padding: 40px 24px;
  }

  .section-title.center h2,
  .seo-evolution-header h2,
  .seo-evolution-header h3 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .service-hero .section-title h1 {
    font-size: 31px;
  }

  .service-hero .section-title p,
  .about-text p,
  .section-title.center p,
  .seo-evolution-header p,
  .about-highlight {
    font-size: 16px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .section-title.center h2,
  .seo-evolution-header h2,
  .seo-evolution-header h3 {
    font-size: 29px;
  }

  .before-card,
  .after-card,
  .about-box {
    padding: 26px 22px;
  }

  .seo-evolution {
    padding: 34px 18px;
    border-radius: 22px;
  }
}
