/* ============================================ */
/* SECTIONS — estilos específicos por seção      */
/* Hero, Sobre, Abordagem, Para quem,            */
/* Depoimentos, Contato, Footer.                 */
/* Mapa de fundos: ver variables.css.            */
/* ============================================ */

section {
  padding: 8rem 2.5rem;
  position: relative;
}

.section-container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--sage-deep);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--sage-deep);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.8rem;
  max-width: 850px;
}

.section-title em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 300;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 5rem;
}


/* ============================================ */
/* HERO                                          */
/* ============================================ */
.hero {
  min-height: 100vh;
  padding: 10rem 2.5rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--white-warm);
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}

.blob-1 {
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: var(--sage-light);
}

.blob-2 {
  bottom: -30%; left: -15%;
  width: 500px; height: 500px;
  background: var(--terracotta-soft);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(122, 152, 136, 0.1);
  color: var(--sage-deep);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(122, 152, 136, 0.15);
}

.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
  position: relative;
}

.hero-tag-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.8rem;
  color: var(--ink);
  overflow: hidden;
}

.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 2.8rem;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 500px;
  margin-left: auto;
  opacity: 0;
  transform: scale(0.95);
}

.hero-image {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  border-radius: 250px 250px 30px 30px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.hero-image svg {
  width: 100%; height: 100%;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white-warm);
  padding: 1.3rem 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
}

.hero-badge-icon {
  width: 48px; height: 48px;
  background: var(--cream-warm);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hero-badge-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.hero-badge-text span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.hero-decoration {
  position: absolute;
  top: 30px;
  right: -30px;
  z-index: 1;            /* fica acima de .hero-image (irmã, sem z-index)
                            — sem isso a borda arredondada da imagem cobre
                            a metade esquerda do pill ("com c" sumia). */
  background: var(--terracotta);
  color: var(--white-warm);
  padding: 1rem 1.2rem;
  border-radius: 100px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transform: rotate(8deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--sage-deep);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}


/* ============================================ */
/* SOBRE                                         */
/* ============================================ */
.sobre { background: var(--white-warm); }

.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-image-wrap { position: relative; }

.sobre-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--terracotta-soft) 100%);
  border-radius: 30px 30px 250px 250px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre-image svg {
  width: 100%; height: 100%;
}

.sobre-image-tag {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--white-warm);
  padding: 0.9rem 1.4rem;
  border-radius: 100px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sage-deep);
  box-shadow: var(--shadow-md);
}

.sobre-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.8rem;
}

.sobre-content p {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.credenciais {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(90, 122, 106, 0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.credencial {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.credencial-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}

.credencial:hover .credencial-icon {
  transform: scale(1.1) rotate(-5deg);
}

.credencial-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.credencial-text span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}


/* ============================================ */
/* ABORDAGEM                                     */
/* ============================================ */
.abordagem {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.abordagem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.abordagem-card {
  background: var(--white-warm);
  padding: 2.8rem 2.2rem;
  border-radius: 24px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border: 1px solid rgba(90, 122, 106, 0.06);
  position: relative;
  overflow: hidden;
}

.abordagem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--sage-deep), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.abordagem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.abordagem-card:hover::before { transform: scaleX(1); }

.abordagem-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--sage);
  display: block;
  margin-bottom: 1.2rem;
  line-height: 1;
  font-weight: 300;
}

.abordagem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.abordagem-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
}


/* ============================================ */
/* PARA QUEM                                     */
/* ============================================ */
.para-quem { background: var(--white-warm); }

.para-quem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.para-quem-item {
  display: flex;
  gap: 1.3rem;
  padding: 1.8rem;
  background: var(--cream);
  border-radius: 18px;
  align-items: flex-start;
  transition: all 0.5s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.para-quem-item::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(122, 152, 136, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.para-quem-item:hover {
  background: var(--cream-warm);
  transform: translateX(4px);
}

.para-quem-item:hover::after { opacity: 1; }

.para-quem-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--sage-deep);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-warm);
  transition: all 0.4s var(--ease-out);
}

.para-quem-item:hover .para-quem-icon {
  background: var(--terracotta);
  transform: rotate(-8deg);
}

.para-quem-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.para-quem-text span {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.6;
}


/* ============================================ */
/* DEPOIMENTOS                                   */
/* ============================================ */
.depoimentos {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 6rem;
  right: 8%;
  font-family: 'Fraunces', serif;
  font-size: 28rem;
  color: var(--sage);
  opacity: 0.08;
  line-height: 1;
  font-style: italic;
  pointer-events: none;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.depoimento-card {
  background: var(--white-warm);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease-out);
}

.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.depoimento-stars {
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.depoimento-texto {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.55;
  flex-grow: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(90, 122, 106, 0.1);
}

.depoimento-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-warm);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
}

.depoimento-info strong {
  display: block;
  font-size: 0.97rem;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.depoimento-info span {
  font-size: 0.83rem;
  color: var(--ink-soft);
}


/* ============================================ */
/* CONTATO                                       */
/* ============================================ */
.contato {
  background: var(--ink);
  color: var(--white-warm);
  position: relative;
  overflow: hidden;
}

.contato-bg-blob {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: var(--sage-deep);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.contato-bg-blob-2 {
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: var(--terracotta);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.contato-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.contato-logo {
  margin-bottom: 2rem;
}

.contato-logo img {
  display: block;
  height: 96px;
  width: auto;
  /* Encolhe um pouco em telas menores; ainda assim mantém presença */
}

@media (max-width: 968px) {
  .contato-logo img { height: 72px; }
}

.contato-info .section-label { color: var(--sage-light); }
.contato-info .section-label::before { background: var(--sage-light); }

.contato-info h2 {
  color: var(--white-warm);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.8rem;
}

.contato-info h2 em {
  color: var(--terracotta-soft);
  font-style: italic;
  font-weight: 300;
}

.contato-info > p {
  color: rgba(251, 249, 244, 0.75);
  font-size: 1.08rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.contato-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contato-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border-radius: 14px;
  transition: background 0.4s ease;
}

.contato-item:hover {
  background: rgba(251, 249, 244, 0.04);
}

.contato-icon {
  width: 48px; height: 48px;
  background: rgba(251, 249, 244, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
}

.contato-item:hover .contato-icon {
  background: var(--sage-deep);
  transform: scale(1.05);
}

.contato-item a, .contato-item span {
  color: var(--white-warm);
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.contato-item a:hover { opacity: 0.7; }

.contato-item small {
  display: block;
  font-size: 0.78rem;
  color: rgba(251, 249, 244, 0.5);
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contato-form {
  background: var(--white-warm);
  padding: 3rem;
  border-radius: 28px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.4);
  color: var(--ink);
}

.contato-form h3 {
  font-size: 1.65rem;
  margin-bottom: 0.6rem;
}

.contato-form > p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin-bottom: 2rem;
}


/* ============================================ */
/* FOOTER                                        */
/* ============================================ */
footer {
  background: var(--ink);
  color: rgba(251, 249, 244, 0.6);
  padding: 4rem 2.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(251, 249, 244, 0.06);
  position: relative;
  z-index: 2;
}

footer .footer-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

footer .footer-logo img {
  display: block;
  height: 56px;
  width: auto;
}

footer p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

footer .small {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 2rem;
}


/* ============================================ */
/* RESPONSIVE                                    */
/* (preservado desktop-first do artifact original */
/* — futuras adições devem seguir mobile-first    */
/* per CLAUDE.md, em queries (min-width: ...).)  */
/* ============================================ */
@media (max-width: 968px) {
  .hero-container,
  .sobre-grid,
  .contato-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .abordagem-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .para-quem-list,
  .credenciais {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white-warm);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(90, 122, 106, 0.1);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }

  section { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 4rem; }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

  .hero-decoration {
    right: 10px;
    top: 10px;
  }

  .quote-mark { font-size: 14rem; }

  .scroll-indicator { display: none; }
}

@media (max-width: 500px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .contato-form { padding: 2rem; }
  .hero { padding-top: 7rem; }
}
