/* ============================================================
   FLORE CLÍNICA – Stylesheet
   Organização:
   1. Reset & Base
   2. Variáveis
   3. Tipografia
   4. Utilitários / Layout
   5. Componentes (botões, eyebrow, cards, etc.)
   6. Header & Nav
   7. Hero
   8. Sobre
   9. Para Quem
   10. Serviços
   11. Diferenciais
   12. Como Funciona
   13. CTA Section
   14. Contato
   15. Footer
   16. WhatsApp Flutuante
   17. Animações
   18. Responsivo
============================================================ */

/* ---- 1. RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-page);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- 2. VARIÁVEIS ---- */
:root {
  /* Cores */
  --green-dark:    #4A7A45;
  --green-mid:     #7FA67A;
  --green-light:   #A8C5A0;
  --green-pale:    #C5D9C1;
  --green-bg:      #EDF4EB;
  --green-bg-soft: #F4F9F3;

  --beige:         #F5F0E8;
  --beige-dark:    #EDE5D4;
  --cream:         #FDFAF5;

  --text-primary:  #2C3E2D;
  --text-secondary:#5A6B5B;
  --text-muted:    #8A9B8B;
  --text-light:    #FFFFFF;

  --bg-page:       #FDFAF5;
  --bg-section:    #F4F9F3;
  --bg-dark:       #2C3E2D;

  --border-color:  #D8EAD4;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(44, 62, 45, 0.06);
  --shadow-md:  0 4px 20px rgba(44, 62, 45, 0.10);
  --shadow-lg:  0 8px 40px rgba(44, 62, 45, 0.14);

  /* Espaçamento de seções */
  --section-py: 96px;

  /* Bordas */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  /* Transições */
  --transition: 0.3s ease;
}

/* ---- 3. TIPOGRAFIA ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

em { font-style: italic; color: var(--green-mid); }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

/* ---- 4. UTILITÁRIOS / LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-title {
  margin-top: 8px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-bg);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

/* ---- 5. COMPONENTES ---- */

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  box-shadow: 0 4px 16px rgba(127, 166, 122, 0.35);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 6px 24px rgba(74, 122, 69, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}

.btn--outline:hover {
  background: var(--green-bg);
}

.btn--white {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.btn--white:hover {
  background: var(--green-bg);
  border-color: var(--green-bg);
}

.btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* ---- 6. HEADER & NAV ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

/* Header transparente sobre o hero (antes do scroll) */
.header:not(.scrolled) .logo__text { color: #fff; }
.header:not(.scrolled) .nav__link { color: rgba(255,255,255,0.85); }
.header:not(.scrolled) .nav__link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.header:not(.scrolled) .hamburger__bar { background: #fff; }
.header:not(.scrolled) .header__cta { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); color: #fff; }
.header:not(.scrolled) .header__cta:hover { background: #fff; color: var(--green-dark); }

.header.scrolled {
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--green-dark);
  background: var(--green-bg);
}

.header__cta {
  margin-left: 8px;
}

/* Hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--green-bg); }

.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--bg-page);
  padding-top: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.mobile-menu__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 24px;
  transition: color var(--transition);
}

.mobile-menu__link:hover { color: var(--green-mid); }

/* ---- 7. HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Imagem de fundo */
  background-image: url('../images/header.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay escuro sobre a imagem */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 50, 30, 0.62) 0%,
    rgba(44, 62, 45, 0.55) 60%,
    rgba(20, 35, 20, 0.70) 100%
  );
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
}

/* Eyebrow claro sobre a imagem */
.eyebrow--light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.hero__content { width: 100%; }

.hero__content .eyebrow { margin-bottom: 24px; }

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--green-pale);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}

/* ---- 8. SOBRE ---- */
.sobre {
  padding: var(--section-py) 0;
  background: var(--bg-page);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.sobre__image-wrap {
  display: flex;
  justify-content: center;
}

.sobre__photo-placeholder {
  position: relative;
  width: 100%;
}

.photo-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--green-bg);
}

/* Foto real da profissional */
.sobre__foto {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  display: block;
}

.sobre__tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
}

.sobre__content .eyebrow { margin-bottom: 12px; }

.sobre__text {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.sobre__credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 12px;
}

.credential-item {
  display: flex;
  align-items: left;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---- 9. PARA QUEM ---- */
.para-quem {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pq-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}

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

.pq-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.pq-card__icon svg { width: 100%; height: 100%; }

.pq-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pq-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Demandas */
.demandas {
  text-align: center;
}

.demandas__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.demandas__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.demanda-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.demanda-tag:hover {
  background: var(--green-bg);
  color: var(--green-dark);
  border-color: var(--green-pale);
}

/* ---- 10. SERVIÇOS ---- */
.servicos {
  padding: var(--section-py) 0;
  background: var(--bg-page);
}

/* ── Bloco 1: Psicoterapia destaque ── */
.servico-principal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--green-bg);
  margin-bottom: 64px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.servico-principal:hover {
  box-shadow: var(--shadow-md);
}

.servico-principal__img-wrap {
  overflow: hidden;
  min-height: 420px;
}

.servico-principal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.servico-principal:hover .servico-principal__img {
  transform: scale(1.04);
}

.servico-principal__content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.servico-principal__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(127,166,122,0.12);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.servico-principal__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.servico-principal__text {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.servico-principal__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.servico-principal__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.servico-principal__features li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* ── Bloco 2: Outras especialidades 3 colunas ── */
.servicos-outros { }

.servicos-outros__titulo {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.servicos-outros__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cards do grid 3 colunas */
.scard {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.scard__img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.scard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.scard:hover .scard__img {
  transform: scale(1.06);
}

.scard__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.scard__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.scard__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.scard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: color var(--transition), gap var(--transition);
  margin-top: auto;
}

.scard__link:hover {
  color: var(--green-dark);
  gap: 10px;
}

/* ---- 11. DIFERENCIAIS ---- */
.diferenciais {
  padding: var(--section-py) 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.diferenciais__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(197, 217, 193, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

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

.diferencial-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-color);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}

.diferencial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diferencial-item__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.diferencial-item__icon svg { width: 100%; height: 100%; }

.diferencial-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.diferencial-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- 12. COMO FUNCIONA ---- */
.como-funciona {
  padding: var(--section-py) 0;
  background: var(--bg-page);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  animation-delay: var(--delay, 0s);
}

.step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
}

.step__content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step__content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__connector {
  width: 40px;
  height: 2px;
  background: var(--border-color);
  margin-top: 28px;
  flex-shrink: 0;
  position: relative;
}

.step__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  transform: rotate(45deg);
}

/* ---- 13. CTA SECTION ---- */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-shape--1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
}

.cta-shape--2 {
  width: 280px;
  height: 280px;
  bottom: -100px;
  left: 5%;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
}

.cta-section__icon svg { width: 100%; height: 100%; }

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-section__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- 14. CONTATO ---- */
.contato {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.contato__inner { }

.contato__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}

.contato-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contato-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-card__icon svg { width: 22px; height: 22px; }

.contato-card--whatsapp .contato-card__icon {
  background: #25D366;
  color: #fff;
}

.contato-card--email .contato-card__icon {
  background: var(--green-bg);
  color: var(--green-mid);
}

.contato-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contato-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  word-break: break-all;
}

/* ---- 15. FOOTER ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .logo__text { color: #fff; }

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 24px;
  line-height: 1.6;
}

.footer__wa svg { color: #fff; }

.footer__nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__nav a:hover,
.footer__contact a:hover { color: #fff; }

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer__credit a:hover { color: #fff; }

/* ---- 16. WHATSAPP FLUTUANTE ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* Pulse animation on load */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

/* ---- 17. ANIMAÇÕES ---- */

/* Fade-in ao scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay { --delay: 0.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

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

/* ---- 18. RESPONSIVO ---- */

/* Tablet */
@media (max-width: 960px) {
  :root { --section-py: 72px; }

  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }

  .mobile-menu { display: flex; }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .sobre__credentials { align-items: center; }
  .credential-item { justify-content: center; }

  .para-quem__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* Serviços: empilha no tablet */
  .servico-principal { grid-template-columns: 1fr; }
  .servico-principal__img-wrap { min-height: 280px; }
  .servico-principal__content { padding: 36px 32px; }
  .servicos-outros__grid { grid-template-columns: 1fr; max-width: 480px; }

  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }

  .steps { flex-direction: column; align-items: center; }
  .step__connector { display: none; }
  .step { max-width: 320px; width: 100%; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .contato__cards { grid-template-columns: 1fr; max-width: 400px; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --section-py: 56px; }

  .container { padding: 0 16px; }

  .hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__actions .btn { justify-content: center; }

  .para-quem__grid { grid-template-columns: 1fr; }

  .servico-principal__content { padding: 28px 24px; }
  .servicos-outros__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .diferenciais__grid { grid-template-columns: 1fr; }

  .cta-section__actions { flex-direction: column; align-items: stretch; max-width: 300px; margin-left: auto; margin-right: auto; }
  .cta-section__actions .btn { justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .wa-float { bottom: 20px; right: 20px; }

  .steps { gap: 32px; }
  .step { padding: 0; }
}

/* Preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
