@charset "UTF-8";

/* ==========================================================================
   PÁGINA SOBRE A MOGA (sobre.css)
   Estética premium de luxo, terracota (#4A281B) e creme (#F6EFE5)
   ========================================================================== */

.about-page {
  background: var(--brown);
}

.about-page .site-header {
  mix-blend-mode: normal;
  background: var(--brown);
}

.skip-link:not(:focus-visible) {
  top: -100px !important;
}

/* ==========================================================================
   HERO DA PÁGINA SOBRE (2 Colunas: Textos à esquerda e Foto à direita)
   ========================================================================== */
.about-hero {
  position: relative;
  width: 100%;
  padding-block: 165px 85px;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 15%, rgba(183, 104, 62, 0.2) 0%, transparent 60%),
              linear-gradient(180deg, var(--brown) 0%, var(--deep) 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
  min-width: 0;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.hero-eyebrow-wrapper {
  margin-bottom: 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #edc8a4;
  background: rgba(237, 200, 164, 0.1);
  border: 1px solid rgba(237, 200, 164, 0.22);
  padding: 7px 16px;
  border-radius: 999px;
}

.hero-eyebrow .icon {
  width: 14px;
  height: 14px;
  color: #edc8a4;
}

.about-hero-title {
  font: 300 clamp(2.4rem, 4.2vw, 4.2rem)/1.1 var(--display);
  letter-spacing: -.035em;
  color: #fffaf3;
  margin: 0 0 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.about-title-text {
  display: inline-block;
  white-space: nowrap;
}

.about-title-logo {
  display: inline-flex;
  position: relative;
  width: 220px;
  height: 74px;
  overflow: hidden;
  flex: none;
}

.about-title-logo img {
  position: absolute;
  width: 256px;
  max-width: none;
  height: 256px;
  left: -18px;
  top: -151px;
}

.about-hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: #ead6c1;
  max-width: 540px;
  margin: 0 0 28px;
  word-break: break-word;
}

/* Grid de destaques rápidos na hero */
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  width: 100%;
  max-width: 520px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.hero-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-pill strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}

.hero-stat-pill span {
  font-size: 12px;
  color: var(--sand);
  line-height: 1.4;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
}

.about-hero-actions .button-brown {
  background: rgba(35, 20, 13, 0.78);
  border: 1px solid rgba(237, 200, 164, 0.32);
  color: #fffaf3;
  min-height: 54px;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 600;
  gap: 16px;
}

.about-hero-actions .button-brown:hover {
  background: #6a3d29;
  border-color: rgba(237, 200, 164, 0.6);
  color: #ffffff;
}

/* CONFIGURAÇÃO DA IMAGEM HERO */
.about-hero-photo-container {
  position: relative;
  min-width: 0;
}

.about-hero-photo {
  margin: 0;
  position: relative;
}

.about-hero-photo .hero-image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(22, 12, 8, 0.6), 0 0 0 1px rgba(237, 200, 164, 0.22);
  background: #372016;
}

.about-hero-photo .hero-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 36%;
  display: block;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.about-hero-photo .hero-image-frame:hover img {
  transform: scale(1.025);
}

.photo-overlay-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(33, 21, 15, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f5eae0;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.photo-overlay-tag .icon {
  width: 13px;
  height: 13px;
  color: #e7b78e;
}

.about-hero-photo .hero-floating-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #2b1810;
  border: 1px solid rgba(237, 200, 164, 0.35);
  border-radius: 8px;
  padding: 14px 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 200px;
  z-index: 2;
}

.about-hero-photo .hero-floating-badge .badge-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: #edc8a4;
  line-height: 1;
}

.about-hero-photo .hero-floating-badge .badge-text {
  font-size: 11px;
  line-height: 1.4;
  color: #ddc5af;
}

/* ==========================================================================
   SEÇÃO 2: Credenciamento Oficial & Segurança (Cadastur)
   ========================================================================== */
.cadastur-section {
  padding-block: 100px;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.cadastur-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.cadastur-certificate-wrapper {
  position: relative;
}

.certificate-frame {
  position: relative;
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.certificate-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.7);
}

.certificate-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid #e0d5c5;
}

.certificate-seal {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--copper);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.certificate-seal svg.icon {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
  display: inline-block;
}

.cadastur-copy h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 24px;
}

.cadastur-copy h2 span {
  color: var(--sand);
}

.cadastur-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: #e5d2bf;
  margin-bottom: 20px;
}

.cadastur-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cadastur-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #f4ede4;
}

.cadastur-features .feat-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(183, 104, 62, 0.25);
  border: 1px solid var(--copper);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 1px;
}

.cadastur-features .feat-icon svg.icon {
  width: 13px;
  height: 13px;
  stroke: var(--sand);
}

.cadastur-features li strong {
  color: #ffffff;
  font-weight: 600;
}

.cadastur-callout {
  padding: 16px 20px;
  background: rgba(246, 239, 229, 0.06);
  border-left: 2px solid var(--sand);
  border-radius: 0 3px 3px 0;
  font-size: 13px;
  font-style: italic;
  color: var(--sand);
}

/* ==========================================================================
   SEÇÃO 3: Sobre a Fundadora (Monyse Garcia)
   ========================================================================== */
.founder-section {
  padding-block: 100px;
  background: var(--brown);
  border-bottom: 1px solid var(--line);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.founder-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}

.founder-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--sand);
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--line);
}

.founder-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: #eeddcc;
  margin-bottom: 22px;
}

.founder-visual {
  position: relative;
}

.founder-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(246, 239, 229, 0.15);
  background: var(--deep);
}

.founder-image-card img {
  width: 100%;
  height: 520px;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-image-card:hover img {
  transform: scale(1.02);
}

.founder-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 12, 8, 0.95) 100%);
  color: var(--sand);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ==========================================================================
   SEÇÃO 4: Pilares da Agência
   ========================================================================== */
.pillars-section {
  padding-block: 100px;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
}

.pillars-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.pillars-header h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  margin-top: 12px;
}

.pillars-header h2 span {
  color: var(--sand);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: rgba(43, 27, 20, 0.5);
  border: 1px solid rgba(246, 239, 229, 0.12);
  padding: 36px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 239, 229, 0.3);
  background: rgba(43, 27, 20, 0.85);
}

.pillar-number {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--sand);
  margin-bottom: 24px;
  opacity: 0.8;
}

.pillar-card h3 {
  font-size: 19px;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 13px;
  line-height: 1.75;
  color: #cfb9a5;
  margin: 0;
}

/* ==========================================================================
   SEÇÃO 5: CTA Banner Convidativo
   ========================================================================== */
.about-cta-banner {
  padding-block: 90px;
  background: radial-gradient(circle at 50% 50%, rgba(183, 104, 62, 0.22) 0%, transparent 70%),
              var(--brown);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.about-cta-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-cta-content h2 span {
  color: var(--sand);
}

.about-cta-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #eeddcc;
  max-width: 580px;
  margin: 0 auto 36px;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-cta-actions .button {
  min-height: 54px;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1100px) {
  .about-hero {
    padding-block: 135px 70px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero-photo-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .cadastur-grid,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cadastur-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .founder-image-card {
    max-width: 580px;
    margin: 0 auto;
  }

  .certificate-frame {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: calc(var(--header) + 30px);
    padding-bottom: 50px;
  }

  .about-hero-grid {
    gap: 36px;
  }

  .about-hero-title {
    font-size: 2.6rem;
    gap: 10px;
  }

  .about-title-logo {
    width: 200px;
    height: 67px;
  }

  .about-title-logo img {
    width: 233px;
    height: 233px;
    left: -16px;
    top: -137px;
  }

  .about-hero-meta {
    gap: 8px;
    margin-bottom: 18px;
  }

  .meta-pill {
    font-size: 12px;
    padding: 5px 12px;
  }

  .about-hero-desc {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .about-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-block: 16px;
    margin-bottom: 24px;
  }

  .hero-stat-pill strong {
    font-size: 20px;
  }

  .hero-stat-pill span {
    font-size: 11px;
  }

  .about-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .about-hero-actions .button {
    width: 100%;
  }

  .about-hero-photo .hero-floating-badge {
    top: -10px;
    right: -10px;
    padding: 10px 14px;
  }

  .about-hero-photo .hero-floating-badge .badge-num {
    font-size: 22px;
  }

  .about-hero-photo .hero-floating-badge .badge-text {
    font-size: 10px;
  }

  .cadastur-section,
  .founder-section,
  .pillars-section,
  .about-cta-banner {
    padding-block: 70px;
  }

  .founder-image-card img {
    min-height: 380px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .certificate-seal {
    top: -12px;
    right: 8px;
    font-size: 10px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-cta-actions .button {
    width: 100%;
  }

  .certificate-frame {
    padding: 10px;
  }
}
