/* ===============================
   DESIGN SYSTEM
================================ */
:root {
  --color-primary: #4e8f7b;
  --color-primary-dark: #3f7766;
  --color-bg: #f7fbf9;
  --color-text: #2f3e3b;
  --color-muted: #556b66;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 72px;

  --shadow-sm: 0 6px 18px rgba(0,0,0,0.06);
  --shadow-md: 0 16px 36px rgba(0,0,0,0.08);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.12);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
}

/* ===============================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff, var(--color-bg));
  color: var(--color-text);
  line-height: 1.7;
  padding-top: 90px;
}

/* ===============================
   CONTAINER
================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md);
  position: relative;
  z-index: 1;
}

/* ===============================
   MENU
================================ */
.topo {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  z-index: 100;
}

.menu {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px;
}

.menu a {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background var(--transition-fast);
}

.menu a:hover {
  background: rgba(78,143,123,0.12);
}

.menu a.primary {
  background: var(--color-primary);
  color: #fff;
}

/* ===============================
   HERO
================================ */
.hero {
  min-height: calc(100vh - 90px);
  background: linear-gradient(135deg, #fff1df, #eaf7f4);
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  padding: var(--space-xl) 0;
}

.logo-center img {
  width: 220px;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  font-size: 2.6rem;
  color: var(--color-primary);
  max-width: 22ch;
  margin: 0 auto var(--space-sm);
}

.hero p {
  max-width: 62ch;
  margin: 0 auto var(--space-md);
  color: var(--color-muted);
  font-size: 1.1rem;
}

/* ===============================
   BOTÕES
================================ */
.actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn,
a.btn,
button {
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 10px 26px rgba(78,143,123,0.35);
}

.btn.primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn.secondary:hover {
  background: var(--color-primary);
  color: white;
}

/* ===============================
   FUNDO PREMIUM DAS SEÇÕES
================================ */
section:not(.hero) {
  background: linear-gradient(
    180deg,
    rgba(247,251,249,0.6),
    rgba(247,251,249,1)
  );
}

section + section {
  margin-top: var(--space-xl);
}

/* ===============================
   ATENDIMENTO
================================ */
.att-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.att-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.att-card:hover {
  transform: translateY(-8px);
}

/* ===============================
   PROCESSO
================================ */
.process-steps {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-step span {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ===============================
   CONTACTO
================================ */
.contact-section {
  margin-top: var(--space-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
}

.contact-form,
.contact-info {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ===============================
   ANIMAÇÕES
================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   SLIDER – SOBRE MIM
================================ */
.about-gallery {
  text-align: center;
}

.about-gallery h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.gallery-desc {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  color: var(--color-muted);
}

.slider {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: #eaf3f0;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 1.4s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: contain;
  background: #eaf3f0;
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 768px) {

  body { padding-top: 110px; }

  .menu {
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .logo-center img {
    width: 160px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .slider {
    aspect-ratio: 3 / 4;
  }
}

/* ===============================
   SOBRE MIM — LAYOUT PREMIUM (ADD-ON)
   ⚠️ NÃO sobrescreve estilos existentes
================================ */

.about-intro,
.about-method,
.about-focus,
.about-schools {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 72px);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
  position: relative;
}

/* detalhe editorial lateral (não interfere no layout atual) */
.about-intro::before,
.about-method::before,
.about-focus::before,
.about-schools::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 5px;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    transparent
  );
}

/* títulos */
.about-intro h1,
.about-method h2,
.about-focus h2,
.about-schools h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  max-width: 24ch;
}

/* textos */
.about-intro p,
.about-method p,
.about-focus p,
.about-schools p {
  max-width: 68ch;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

/* frase de impacto opcional */
.about-highlight {
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  border-left: 4px solid var(--color-primary);
  font-weight: 600;
  color: var(--color-text);
}

/* ajuste mobile suave */
@media (max-width: 768px) {
  .about-intro,
  .about-method,
  .about-focus,
  .about-schools {
    padding: 36px 26px;
  }

  .about-intro::before,
  .about-method::before,
  .about-focus::before,
  .about-schools::before {
    top: 24px;
    bottom: 24px;
  }
}

/* ===============================
   FIX – FORMULÁRIO DE CONTATO
   alinhamento profissional
================================ */

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* inputs e textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfded9;
  font-family: inherit;
  font-size: 0.95rem;
}

/* textarea ocupa linha inteira */
.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}

/* botão centralizado e com respiro */
.contact-form button {
  grid-column: 1 / -1;
  margin-top: var(--space-sm);
  justify-self: flex-start;
}

/* mobile */
@media (max-width: 600px) {
  .contact-form form {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   SOBRE MIM — LAYOUT PREMIUM (ADD-ON)
   ⚠️ NÃO sobrescreve estilos existentes
================================ */

.about-intro,
.about-method,
.about-focus,
.about-schools {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 72px);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
  position: relative;
}

/* detalhe editorial lateral */
.about-intro::before,
.about-method::before,
.about-focus::before,
.about-schools::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 5px;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    transparent
  );
}

/* títulos */
.about-intro h1,
.about-method h2,
.about-focus h2,
.about-schools h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  max-width: 24ch;
}

/* textos */
.about-intro p,
.about-method p,
.about-focus p,
.about-schools p {
  max-width: 68ch;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

/* frase de impacto opcional */
.about-highlight {
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  border-left: 4px solid var(--color-primary);
  font-weight: 600;
  color: var(--color-text);
}

/* ajuste mobile */
@media (max-width: 768px) {
  .about-intro,
  .about-method,
  .about-focus,
  .about-schools {
    padding: 36px 26px;
  }

  .about-intro::before,
  .about-method::before,
  .about-focus::before,
  .about-schools::before {
    top: 24px;
    bottom: 24px;
  }
}

/* ===============================
   FIX – FORMULÁRIO DE CONTATO
   alinhamento profissional
================================ */

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfded9;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  grid-column: 1 / -1;
  margin-top: var(--space-sm);
  justify-self: flex-start;
}

@media (max-width: 600px) {
  .contact-form form {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   COMO FUNCIONA – ESTILO SOFISTICADO
================================ */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-top: 3rem;
}

/* Card */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 1.8rem 2rem;
  border-radius: 18px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(78, 143, 123, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover sofisticado */
.process-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(78, 143, 123, 0.15);
}

/* Número */
.process-step span {
  min-width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(78, 143, 123, 0.35);
}

/* Conteúdo */
.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
}

.process-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 60ch;
}

/* Destaque final */
.att-differential {
  margin-top: 4.5rem;
  padding: 3rem 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(78, 143, 123, 0.08),
    rgba(78, 143, 123, 0.02)
  );
  border-radius: 24px;
  text-align: center;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(78, 143, 123, 0.12);
}

.att-differential h2 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  color: var(--color-primary-dark);
}

.att-differential p {
  max-width: 58ch;
  margin: 0 auto 2rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Botão mais premium */
.att-differential .btn.primary {
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(78, 143, 123, 0.35);
}

/* Responsivo */
@media (min-width: 768px) {
  .process-steps {
    gap: 2.2rem;
  }

  .process-step {
    padding: 2.2rem 2.5rem;
  }

  .process-step h3 {
    font-size: 1.25rem;
  }

  .att-differential {
    padding: 4rem 3.5rem;
  }
}
/* ===============================
   HERO – AUMENTAR IMAGEM INICIAL
   (ADD-ON seguro, não altera CSS existente)
================================ */

.logo-center img {
  width: 300px; /* ajuste aqui se quiser maior */
}

/* ajuste responsivo */
@media (max-width: 768px) {
  .logo-center img {
    width: 220px;
  }
}
/* =================================================
   HERO – AJUSTE VISUAL DEFINITIVO
   corrige sensação de espaço estranho
================================================= */

.hero {
  min-height: unset;
  display: block;
}

.hero-content {
  padding-top: 24px;
  padding-bottom: 32px;
}

/* logo */
.logo-center {
  margin-top: 0;
}

.logo-center img {
  margin-bottom: 12px;
}

/* aproxima título */
.hero h1 {
  margin-top: 0;
}

/* mobile */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 20px;
    padding-bottom: 28px;
  }
}
/* =========================================
   FIX – ESPAÇO SOB O MENU FIXO
========================================= */

body {
  padding-top: 64px;
}

@media (max-width: 768px) {
  body {
    padding-top: 88px;
  }
}
