/* ============================================================
   styles.css — Dra. Janayna Lima do Vale
   Endocrinologista Pediátrica | Teresina - PI
   ============================================================ */


/* ── 01. RESET & VARIÁVEIS ── */

:root {
  --verde:       #C2D7D0;
  --verde-escuro:#8BBBAF;
  --verde-deep:  #5C9B8E;
  --primary:     var(--verde-deep);
  --rose:        #D8C9C8;
  --rose-dark:   #C4A8A6;
  --branco:      #FFFFFF;
  --off-white:   #FAFAF9;
  --cinza-claro: #F5F4F2;
  --cinza:       #6B7280;
  --texto:       #2D3748;
  --texto-leve:  #718096;
  --sombra:      rgba(0,0,0,0.08);
  --sombra-md:   rgba(0,0,0,0.12);
  --radius:      20px;
  --radius-sm:   12px;
  --radius-lg:   32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--branco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

h1, h2, h3, h4 { font-family: 'Lora', serif; }


/* ── 03. NAVBAR ── */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(194,215,208,0.3);
  padding: 0 12px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
  gap: 8px;
  overflow: hidden;
}

.navbar.scrolled { box-shadow: 0 4px 24px var(--sombra); }

/* ── LOGO NA NAVBAR ── */

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .nome {
  font-family: 'Lora', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--texto);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.25;
}

.nav-logo .esp {
  font-size: 9px;
  font-weight: 400;
  color: var(--verde-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.25;
}

.nav-links { display: none; }

.nav-link {
  color: var(--texto-leve);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--verde-deep);
  background: rgba(194,215,208,0.15);
}

.nav-cta {
  background: linear-gradient(135deg, var(--verde-deep), #4A8A7D);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92,155,142,0.4);
}


/* ── 04. HERO ── */

.hero {
  min-height: 100svh;
  padding: 90px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FAFAF9 0%, rgba(194,215,208,0.18) 50%, rgba(216,201,200,0.15) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(194,215,208,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(216,201,200,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(194,215,208,0.6);
  border-radius: 12px;
  padding: 8px 14px;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeInUp 0.6s ease both;
  box-shadow: 0 2px 12px rgba(92,155,142,0.1);
}

.hero-badge-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
}

.hero-badge-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-badge-titulo {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-badge-sub {
  font-size: 11px;
  color: var(--texto-leve);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-foto-wrap {
  position: relative;
  margin: 0 auto 32px;
  width: 200px;
  height: 200px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-foto-bg {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), var(--rose));
  opacity: 0.5;
}

.hero-foto {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 4px solid white;
  box-shadow: 0 12px 40px var(--sombra-md);
  background: linear-gradient(135deg, var(--verde) 0%, var(--rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  border-radius: 50%;
  display: block;
}

.hero-badge-avatar img {
  object-position: center 26%;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--texto);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero h1 em { font-style: italic; color: var(--verde-deep); }

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--texto-leve);
  font-weight: 400;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.stat {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(194,215,208,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
}

.stat-num {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--verde-deep);
  display: block;
}

.stat-label {
  font-size: 10px;
  color: var(--texto-leve);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}


/* ── 05. BOTÕES ── */

.btn-primary {
  background: linear-gradient(135deg, var(--verde-deep), #4A8A7D);
  color: white;
  border: none;
  padding: 18px 28px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(92,155,142,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(92,155,142,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: white;
  color: var(--texto);
  border: 1.5px solid rgba(194,215,208,0.8);
  padding: 17px 28px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--verde-escuro); background: rgba(194,215,208,0.1); }

.btn-wpp {
  background: #25D366;
  color: white;
  border: none;
  padding: 18px 28px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}

.btn-wpp:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.4); }

.btn-tel {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 17px 28px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-tel:hover { background: rgba(255,255,255,0.22); }


/* ── 06. SEÇÕES BASE ── */

section { padding: 64px 20px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde-deep);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--verde-deep);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--texto);
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--verde-deep); }

.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--texto-leve);
  margin-bottom: 32px;
}


/* ── 07. SOBRE ── */

.sobre { background: var(--off-white); }

.sobre-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 4px 24px var(--sombra);
  border: 1px solid rgba(194,215,208,0.3);
  margin-bottom: 24px;
}

.sobre-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--texto-leve);
  margin-bottom: 16px;
}

.sobre-creds {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--cinza-claro);
  border-radius: var(--radius-sm);
}

.cred-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cred-text { font-size: 13px; color: var(--texto); font-weight: 500; line-height: 1.4; }
.cred-sub  { font-size: 12px; color: var(--texto-leve); font-weight: 400; }


/* ── 08. ÁREAS DE ATUAÇÃO ── */

.areas { background: white; }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.area-card {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s;
  border: 1.5px solid transparent;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-deep), var(--rose-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.area-card:hover::before { transform: scaleX(1); }

.area-card:hover {
  border-color: rgba(139,187,175,0.5);
  box-shadow: 0 8px 28px var(--sombra);
  transform: translateY(-3px);
  background: white;
}

.area-icon,
.area-emoji {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
}

.area-icon img,
.area-icon svg,
.area-emoji img,
.area-emoji svg {
  width: 24px;
  height: 24px;
  display: block;
}

.area-nome  { font-family: 'Lora', serif; font-size: 15px; font-weight: 600; color: var(--texto); line-height: 1.3; }
.area-desc  { font-size: 12px; color: var(--texto-leve); line-height: 1.5; }

.area-card.wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
}

.area-card.wide .area-emoji {
  margin-top: 2px;
}

.area-card.wide .area-info { flex: 1; }


/* ── 09. CARDS SEO / ABAS ── */

.seo-section { background: var(--cinza-claro); }

.seo-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  margin-bottom: 24px;
}

.seo-tabs::-webkit-scrollbar { display: none; }

.seo-tab {
  flex: 0 0 auto;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  background: white;
  border: 1.5px solid rgba(194,215,208,0.5);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--texto);
  white-space: nowrap;
}

.seo-tab.active { background: var(--verde-deep); color: white; border-color: var(--verde-deep); }

.seo-content { display: none; }
.seo-content.active { display: block; }

.seo-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 0 4px 20px var(--sombra);
  border: 1px solid rgba(194,215,208,0.3);
}

.seo-card h3 { font-family: 'Lora', serif; font-size: 22px; color: var(--texto); margin-bottom: 12px; }
.seo-card p  { font-size: 14px; line-height: 1.8; color: var(--texto-leve); margin-bottom: 14px; }

.seo-card ul { list-style: none; margin-bottom: 20px; }

.seo-card li {
  font-size: 14px;
  color: var(--texto-leve);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.seo-card li::before { content: '→'; position: absolute; left: 0; color: var(--verde-deep); font-weight: 600; }


/* ── 10. SERVIÇOS ── */

.servicos { background: linear-gradient(160deg, rgba(194,215,208,0.15) 0%, rgba(216,201,200,0.12) 100%); }

.servicos-list { display: flex; flex-direction: column; gap: 14px; }

.servico-item {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px var(--sombra);
  border: 1px solid rgba(194,215,208,0.25);
  transition: all 0.2s;
}

.servico-item:hover { box-shadow: 0 6px 24px var(--sombra-md); transform: translateX(4px); }

.servico-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.servico-titulo { font-family: 'Lora', serif; font-size: 16px; font-weight: 600; color: var(--texto); margin-bottom: 4px; }
.servico-desc   { font-size: 13px; color: var(--texto-leve); line-height: 1.5; }


/* ── 11. DIFERENCIAIS ── */

.diferenciais { background: white; }

.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.dif-card {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.2s;
}

.dif-card:hover { box-shadow: 0 8px 24px var(--sombra); transform: translateY(-2px); background: white; }

.dif-icon   { font-size: 32px; margin-bottom: 12px; display: block; }
.dif-titulo { font-family: 'Lora', serif; font-size: 15px; font-weight: 600; color: var(--texto); margin-bottom: 8px; }
.dif-desc   { font-size: 12px; color: var(--texto-leve); line-height: 1.6; }


/* ── 11b. AVALIAÇÕES / DEPOIMENTOS ── */

.reviews-section {
  padding: 80px 0;
  background: var(--off-white);
}

.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde-deep);
  margin-bottom: 12px;
}

.section-badge::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--verde-deep);
  border-radius: 2px;
}

.reviews-section .section-title span {
  font-style: italic;
  color: var(--verde-deep);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.review-top strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.3;
  margin-bottom: 2px;
}

.review-stars {
  color: #f5b301;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: var(--texto);
}

/* CTA Google — classes únicas (não dependem do ancestral); alinhado à identidade do site */
.reviews-google-cta {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.reviews-google-cta-inner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3.2vw, 30px);
  padding: clamp(22px, 2.6vw, 28px) clamp(22px, 3.2vw, 34px);
  background-color: #fff;
  background-image: linear-gradient(180deg, #ffffff 0%, #f9fbf9 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(194, 215, 208, 0.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 12px 44px rgba(45, 55, 72, 0.07),
    0 2px 10px rgba(92, 155, 142, 0.1);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.reviews-google-cta-inner:hover {
  border-color: rgba(139, 187, 175, 0.75);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 18px 52px rgba(45, 55, 72, 0.09),
    0 4px 18px rgba(92, 155, 142, 0.16);
  transform: translateY(-3px);
}

.reviews-google-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff 0%, var(--cinza-claro) 100%);
  border-radius: 16px;
  border: 1px solid rgba(194, 215, 208, 0.55);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reviews-google-cta-logo {
  display: block;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.reviews-google-cta-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  padding: 0;
}

.reviews-google-cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: var(--texto);
  line-height: 1.28;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 0;
}

.reviews-google-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8125rem, 1.65vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--texto-leve);
  margin: 0;
  padding: 0;
  max-width: 38rem;
}

.reviews-google-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  min-height: 48px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--verde-deep) 0%, #4a8a7d 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 16px rgba(92, 155, 142, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.reviews-google-cta-btn:visited {
  color: #fff;
}

.reviews-google-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px rgba(92, 155, 142, 0.48),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
  filter: brightness(1.03);
}

.reviews-google-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 14px rgba(92, 155, 142, 0.32);
}

.reviews-google-cta-btn:focus-visible {
  outline: 2px solid var(--verde-deep);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .reviews-google-cta-inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    text-align: center;
    padding: 28px 22px;
    gap: 20px;
  }

  .reviews-google-cta-icon {
    align-self: center;
  }

  .reviews-google-cta-copy {
    text-align: center;
    align-items: center;
  }

  .reviews-google-cta-sub {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-google-cta-btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    padding: 15px 24px;
  }
}


/* ── 12. CONTEÚDOS / VIDEO CARDS ── */

.conteudos { background: var(--off-white); }

.videos-wrapper { position: relative; }

/* Track do carrossel */
.video-track {
  scroll-snap-type: x mandatory;
}

.videos-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 0 16px 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0;
  align-items: center;
  cursor: grab;
}

@media (min-width: 768px) {
  .videos-container {
    justify-content: center;
  }

  .video-card {
    flex: 0 0 220px;
    max-width: none;
  }
}

.videos-container:active { cursor: grabbing; scroll-snap-type: none; }
.videos-container::-webkit-scrollbar { display: none; }

.video-card {
  position: relative;
  flex: 0 0 85%;
  max-width: 100%;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: center;
  cursor: pointer;
  background: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.video-card:not(.active) {
  opacity: 0.85;
}

.video-card.active {
  opacity: 1;
  z-index: 2;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: opacity 0.2s;
}

.video-play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  padding: 0;
}

.video-play-btn:hover { transform: scale(1.12); background: rgba(255,255,255,0.32); }

.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -72px 48px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 1;
}

.video-play-overlay { z-index: 5 !important; }

.video-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  overflow: hidden;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 52%);
  z-index: 7;
  pointer-events: auto;
}

.video-overlay h3 {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin: 0 0 4px;
}

.video-overlay-time {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.video-link-btn {
  margin-top: 6px;
  padding: 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.video-link-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.video-link-btn span {
  transition: transform 0.2s ease;
}

.video-link-btn:hover span {
  transform: translateX(4px);
}

.icon-instagram {
  font-style: normal;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.social-btn--insta .icon-instagram {
  width: 20px;
  height: 20px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--verde-escuro);
  color: var(--verde-deep);
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.instagram-link:hover {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  border-color: transparent;
  color: white;
  transform: translateY(-1px);
}


/* ── 13. CTA FINAL ── */

.cta-final {
  background: linear-gradient(145deg, var(--verde-deep) 0%, #3A7A6D 100%);
  color: white;
  text-align: center;
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-final h2 { font-size: clamp(26px, 7vw, 40px); font-weight: 600; line-height: 1.3; margin-bottom: 16px; color: white; position: relative; z-index: 1; }
.cta-final p  { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; position: relative; z-index: 1; }

.cta-btns { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }


/* ── 14. FOOTER ── */

footer { background: var(--texto); color: rgba(255,255,255,0.75); padding: 48px 20px 32px; }

.footer-logo { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; color: white; margin-bottom: 6px; }
.footer-esp  { font-size: 12px; color: var(--verde); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; }

.footer-contatos { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.footer-contato {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contato:hover { color: var(--verde); }

.footer-contato-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-social { display: flex; gap: 12px; margin-bottom: 32px; }

.social-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.social-btn:hover { transform: translateY(-2px); border-color: transparent; }
.social-btn--insta:hover { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); color: white; }
.social-btn--wpp:hover   { background: #25D366; color: white; }
.social-btn--email:hover { background: var(--verde-deep); color: white; }

.footer-nav-title { font-family: 'Lora', serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-nav-list  { display: flex; flex-direction: column; gap: 10px; }

.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer-bottom  { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; }

.footer-dev {
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
}

.footer-dev a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-dev a strong {
  font-weight: 600;
}

.footer-dev a:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.footer-dev a:hover strong {
  letter-spacing: 0.5px;
}


/* ── 15. COOKIE CONSENT ── */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  max-width: calc(100vw - 40px);
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-box {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  max-width: 520px;
}

.cookie-banner a {
  color: #86efac;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: #bbf7d0;
}

.cookie-actions button {
  background: #22c55e;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.cookie-actions button:hover {
  background: #16a34a;
}

.cookie-actions button:active {
  transform: scale(0.98);
}

@media (max-width: 899px) {
  .cookie-banner {
    bottom: 84px;
  }

  .cookie-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }
}


/* ── 16. WHATSAPP FLUTUANTE ── */

.wpp-float {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse 2.5s infinite;
}

.wpp-float svg { display: block; flex-shrink: 0; }

.wpp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); animation: none; }

.wpp-tooltip {
  position: absolute;
  right: 72px; bottom: 50%;
  transform: translateY(50%);
  background: white;
  color: var(--texto);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--sombra-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wpp-float:hover .wpp-tooltip { opacity: 1; }

.wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}


/* ── 17. BOTTOM NAV MOBILE ── */

.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(194,215,208,0.35);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.07);
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--texto-leve);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 0;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}

.bottom-nav-item.active { color: var(--verde-deep); }
.bottom-nav-item:hover  { color: var(--verde-deep); }

.bottom-nav-icon { font-size: 20px; line-height: 1; transition: transform 0.2s; }
.bottom-nav-item:hover .bottom-nav-icon { transform: translateY(-2px); }

.bottom-nav-item.wpp-nav { color: white; }

.bottom-nav-icon-wrap {
  width: 46px; height: 46px;
  background: #25D366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  margin-bottom: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bottom-nav-item.wpp-nav:hover .bottom-nav-icon-wrap { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37,211,102,0.5); }
.bottom-nav-item.wpp-nav span:last-child { color: var(--verde-deep); font-weight: 600; }


/* ── Navegação lateral do carrossel de vídeos ── */

.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 5;
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s, background 0.2s;
}

.video-nav:hover {
  background: rgba(0, 0, 0, 0.55);
}

.video-nav.prev {
  left: 10px;
}

.video-nav.next {
  right: 10px;
}


/* ── 18. ANIMAÇÕES ── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.12); }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ── 19. TABLET (600–899px) ── */

@media (min-width: 600px) and (max-width: 899px) {
  section { padding: 64px 32px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .area-card.wide { grid-column: auto; flex-direction: column; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .servicos-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero { padding: 80px 32px 40px; }
  .hero-foto-wrap { width: 220px; height: 220px; }
  .hero-btns { flex-direction: row; }
}


/* ── 20. DESKTOP (900px+) ── */

@media (min-width: 900px) {
  .bottom-nav { display: none; }
  .wpp-float  { display: flex; }
  body        { padding-bottom: 0; }

  .navbar { padding: 0 60px; height: 68px; overflow: visible; }
  .nav-cta { padding: 10px 18px; font-size: 13px; gap: 6px; }
  .nav-logo .nome { font-size: 16px; max-width: none; }
  .nav-logo .esp  { font-size: 11px; }
  .nav-links { display: flex; align-items: center; gap: 8px; }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    min-height: 92vh;
    padding: 68px 80px 60px;
  }
  .hero-foto-wrap { width: 360px; height: 360px; flex-shrink: 0; margin: 0; order: 2; }
  .hero-content   { order: 1; flex: 1; }
  .hero h1        { font-size: 42px; }
  .hero-sub       { font-size: 17px; max-width: 520px; }
  .hero-btns      { flex-direction: row; gap: 12px; }
  .hero-btns .btn-primary   { padding: 14px 28px; font-size: 15px; width: auto; }
  .hero-btns .btn-secondary { padding: 13px 24px; font-size: 15px; width: auto; }
  .hero-stats { max-width: 420px; }

  section { padding: 96px 80px; }
  .section-title { font-size: 34px; }

  .sobre-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .sobre-creds { margin-top: 0; }

  .areas-grid { grid-template-columns: repeat(5, 1fr); }
  .area-card.wide { grid-column: auto; flex-direction: column; }
  .area-card.wide .area-info { flex: none; }

  .servicos-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .dif-grid { grid-template-columns: repeat(4, 1fr); }

  .seo-section-inner { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
  .seo-tabs { flex-direction: column; overflow-x: visible; padding-bottom: 0; margin-bottom: 0; gap: 6px; }
  .seo-tab  { text-align: left; border-radius: 12px; padding: 12px 18px; }

  .cta-btns { flex-direction: row; justify-content: center; gap: 16px; }
  .btn-wpp  { padding: 14px 32px; font-size: 15px; width: auto; }
  .btn-tel  { padding: 13px 28px; font-size: 14px; width: auto; }

  .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
  .footer-contatos { margin-bottom: 0; }

  .videos-container { margin: 0; padding: 12px 0 20px; gap: 20px; justify-content: center; }
  .video-card { flex: 0 0 250px; height: 440px; max-width: none; }
  .video-card.active { flex: 0 0 250px; }

  .btn-primary   { padding: 13px 28px; font-size: 14px; border-radius: 12px; }
  .btn-secondary { padding: 12px 24px; font-size: 14px; border-radius: 12px; }
  .seo-card .btn-primary { width: auto; display: inline-flex; }
}

/* ── Modal Política de Privacidade ── */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
}

.privacy-modal.active {
  display: flex;
}

.privacy-content {
  width: 90%;
  max-width: 900px;
  height: 90%;
  max-height: min(90vh, 900px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.privacy-content iframe {
  width: 100%;
  flex: 1;
  min-height: 0;
  border: none;
}

.privacy-close {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
  font-size: 24px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.privacy-close:hover {
  color: #000;
}