/* =========================================================
   SOBRE
========================================================= */

.sobre {
  padding-top: 130px;
  background: #ffff;
}

/* Alinhado a .section-tag do index */
.section-tag {
  font-size: 13px;
  letter-spacing: 3px;
  color: #7A7A7A;
}

/* ========= 1 — Intro centrada ========= */
.sobre-intro {
  padding: 40px 8%;
  text-align: center;
  background:#ffff;
}

.sobre-intro-inner {
  max-width: 560px;
  margin: 0 auto;
}

.sobre-intro h1 {
  font-size: 32px;
  color: #9F4DA5;
  font-weight: 500;
  margin-bottom: 14px;
}

.sobre-intro h1 em {
  font-family: "Cheri", cursive;
  font-style: italic;
  color: #cfb1d1;
  font-weight: normal;
}

.sobre-intro .section-tag {
  margin-bottom: 20px;
}

.sobre-intro-title {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  margin-bottom: 24px;
}

.sobre-intro .title-elegant span {
  font-style: italic;
}

.sobre-intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #7A7A7A;
}

#footer-text-strong {
  color: #ffff;
}

/* ========= 2 — Quem nos lidera ========= */
/* HERO */
.hero {
  width: min(92%, 1200px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  min-height: 500px; /* força um eixo de centralização */
  gap: 80px;
  padding: 60px 0;
  padding-left: 60px;
}

/* HERO LEFT */
.hero-left {
  flex: 1;
  max-width: 600px;
  margin-left: 0; /* REMOVE isso aqui */
}

.hero-right {
  flex: 0 0 380px; /* controla o tamanho da imagem */
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  margin-top: 20px;
}

.hero-left p {
  margin: 1.2rem 0;
  color: #6b7a99;
  font-size: clamp(14px, 1.5vw, 18px);
}

strong {
  font-weight: 600; /* mais suave que 700 padrão */
  color: #7A7A7A;   /* opcional */
}

@media (max-width: 768px) {
  
  .hero {
    flex-direction: column; /* empilha */
    text-align: left;
    gap: 30px;
    padding: 40px 0;
  }

  .hero-right {
    flex: unset;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-img {
    width: 80%; /* diminui a imagem */
    max-width: 280px; /* trava o tamanho */
    margin: 0 auto;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left p {
    font-size: 16px; /* aumenta leitura no mobile */
    line-height: 1.7;
  }
}


/* ========= 3 — Nossos valores ========= */
.sobre-valores {
  padding: 100px 8%;
  text-align: center;
  background: #ffffff;
}

.sobre-valores-title {
  font-size: 42px;
  font-weight: 500;
  color: #7a7a7a;
  margin-bottom: 50px;
  line-height: 1.3;
}

.valores-accent {
  font-family: "Cheri", cursive;
  font-style: italic;
  font-weight: normal;
  color: #cfb1d1;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.valor-card {
  background: #ffffff;
  border: 1px solid #e7d0e6;
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.valor-card:hover {
  box-shadow: 0 15px 35px rgba(207, 177, 209, 0.2);
  transform: translateY(-4px);
}

.valor-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #e7d0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.valor-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: #cfb1d1;
}

.valor-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #7A7A7A;
  margin-bottom: 12px;
}

.valor-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #777;
}

/* ========= 4 — Clientes (carrossel automático) ========= */
.sobre-clientes {
  padding: 80px 0 72px;
  background: #ffffff;
  overflow: hidden;
}

.clientes-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #b59ac9;
  margin-bottom: 40px;
}

.clientes-carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.clientes-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 8px 0 24px;
  animation: clientes-marquee 50s linear infinite;
}

.clientes-carousel:hover .clientes-track {
  animation-play-state: paused;
}

@keyframes clientes-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clientes-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 8%;
  }
}

.cliente-logo {
  flex: 0 0 auto;
  width: 140px;
  height: 88px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e7d0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(207, 177, 209, 0.12);
}

.cliente-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ========= 5 — Onde nos encontrar (mesma base do .footer: #cfb1d1) ========= */
.sobre-onde {
  background: #cfb1d1;
  color: #ffffff;
  padding: 52px 8% 60px;
}

.sobre-onde-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.sobre-onde-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffffff;
}

.sobre-onde-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  align-items: start;
}

.sobre-onde-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sobre-onde-item--horario {
  grid-column: 1 / -1;
}

.sobre-onde-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-onde-ico svg {
  width: 30px;
  height: 30px;
}

.sobre-onde-text,
.sobre-onde-line {
  font-size: 15px;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
}

.sobre-onde-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sobre-onde-phones a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sobre-onde-phones a:hover {
  color: #fce6e2;
  text-decoration: underline;
}

.sobre-onde-horario {
  flex: 1;
  min-width: 0;
}

.sobre-onde-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px;
}

.sobre-onde-note {
  display: inline;
  margin-left: 6px;
  font-size: 14px;
  color: #fce6e2;
}

.sobre-onde-auto {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #fce6e2;
}

.sobre-onde-ico--inline {
  width: auto;
  height: auto;
  margin-top: 2px;
}

.sobre-onde-ico--inline svg {
  width: 22px;
  height: 22px;
}

.sobre-onde-auto-text {
  flex: 1;
}

.sobre-onde-auto-text strong {
  color: #ffffff;
  font-weight: 600;
}

.linha {
  justify-content: center;
  border: none;
  height: 1px;
  background: #e7d0e6;
}

/* ========= Animações ========= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* delay suave pros cards */
.valor-card {
  transition: all 0.7s ease;
}

/* ========= Responsivo ========= */
@media (max-width: 900px) {
  .sobre-lider-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lider-copy {
    text-align: center;
  }

  .lider-credentials li {
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-onde-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sobre-intro {
    padding: 130px 6% 72px;
  }

  .sobre-intro-text {
    font-size: 15px;
  }

  .sobre-lider {
    padding: 72px 6%;
  }

  .lider-card-face {
    padding: 40px 24px 32px;
  }

  .sobre-valores {
    padding: 72px 6%;
  }

  .sobre-valores-title {
    font-size: 32px;
    margin-bottom: 36px;
  }

  .valores-grid {
    gap: 24px;
  }

  .cliente-logo {
    width: 120px;
    height: 76px;
  }

  .sobre-onde {
    padding: 40px 6% 48px;
  }

  .sobre-onde-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
}
