:root {
  /* Cor do texto sobre o fundo da marca. Branco sobre #3ABFB5 da 2,26:1 e
     reprova a WCAG AA; este verde escuro da 5,03:1 sem mexer na cor da marca. */
  --color-on-primary: #2C3E35;
  /* O hover do botao CLAREIA em vez de escurecer: com texto escuro, escurecer o
     fundo derrubaria o contraste para 3,48:1. */
  --color-primary-hover: #5ACDC4;

  /* Palette */
  --color-primary: #3ABFB5;
  --color-primary-dark: #1F756E;
  --color-accent: #4A7C6F;
  --color-warm-rose: #E8A598;
  --color-bg: #FAF8F5;
  --color-bg-alt: #F2EDE8;
  --color-text-dark: #2C3E35;
  --color-text-medium: #5C6B63;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-ui: 'Jost', sans-serif;

  /* Spacing */
  --section-py-desktop: 96px;
  --section-py-mobile: 64px;
  --container-px: 24px;
  
  /* Radii & Shadows */
  --radius-ui: 4px;
  --radius-card: 12px;
  --radius-container: 24px;
  --radius-pill: 999px;
  
  --shadow-rest: 0 2px 12px rgba(58,191,181,0.08);
  --shadow-hover: 0 8px 32px rgba(58,191,181,0.16);
  --shadow-btn-hover: 0 8px 32px rgba(58,191,181,0.35);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg);
  line-height: 1.75;
  position: relative;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--color-text-dark);
}

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

ul, ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.container-narrow {
  max-width: 720px;
}

.section {
  padding: var(--section-py-desktop) 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-py-mobile) 0;
  }
}

/* ==========================================
   MICRO-INTERACTIONS & UTILS
   ========================================== */

.link-animated {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.link-animated::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.link-animated:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-btn-hover);
}

/* ==========================================
   A. HERO
   ========================================== */
.hero {
  min-height: 100svh;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-content {
  grid-column: 1 / 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-pre-headline {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-headline .highlight {
  font-style: normal;
  color: var(--color-primary);
}

.hero-subheadline {
  font-size: 17px;
  color: var(--color-text-medium);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-whatsapp-text {
  font-size: 13px;
  color: var(--color-text-medium);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-whatsapp-text i {
  color: #25D366;
  font-size: 16px;
}

.hero-visual {
  grid-column: 7 / 13;
  position: relative;
}

.hero-illustration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 120%;
  max-width: 800px;
  animation: float 4s ease-in-out infinite;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
}

.hero-thread-path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  opacity: 0.25;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dashLoop 8s linear infinite;
}

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

@keyframes dashLoop {
  0% { stroke-dashoffset: 1000; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; }
}

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-content {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  .hero-cta-wrapper {
    align-items: center;
  }
  .hero-subheadline {
    margin: 0 auto 40px;
  }
  .hero-visual {
    grid-column: 1 / -1;
    height: 300px;
    order: -1;
    margin-bottom: -40px;
  }
  .hero-illustration {
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 100%;
    animation: floatMobile 4s ease-in-out infinite;
  }
}

@media (max-width: 768px) {
  .hero .container { padding-top: 24px; }
  .hero-headline { font-size: 38px; }
  .hero-subheadline { font-size: 15px; }
  .hero-visual { 
    height: 120px; 
    margin-bottom: -60px; 
  }
  @keyframes floatMobile {
    0% { transform: translate(50%, -50%) translateY(-4px); }
    50% { transform: translate(50%, -50%) translateY(4px); }
    100% { transform: translate(50%, -50%) translateY(-4px); }
  }
}

/* ==========================================
   B. O PESO QUE VOCÊ CARREGA
   ========================================== */
.weight {
  background-color: var(--color-bg-alt);
  position: relative;
  margin-top: 60px;
}

.wave-divider {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider.top-bg-alt .shape-fill { fill: var(--color-bg-alt); }
.wave-divider.top-bg .shape-fill { fill: var(--color-bg); }

.weight .container-narrow {
  display: flex;
  gap: 32px;
}

.weight-line {
  width: 2px;
  height: 80px;
  background-color: var(--color-primary);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 12px;
  animation: pulseLine 3s infinite;
}

@keyframes pulseLine {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}

.weight-content {
  flex-grow: 1;
}

.weight-title {
  font-size: 44px;
  margin-bottom: 32px;
}

.weight-text p {
  font-size: 17px;
  color: var(--color-text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
}

.weight-highlight {
  background-color: rgba(58,191,181,0.08);
  border-left: 3px solid var(--color-primary);
  padding: 20px 24px;
  border-radius: var(--radius-ui);
  margin-top: 32px;
}

.weight-highlight p {
  color: var(--color-text-dark);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .weight-line { display: none; }
  .weight-title { font-size: 28px; }
}

/* ==========================================
   C. O ATENDIMENTO DA MARIANA
   ========================================== */
.specialist {
  background-color: var(--color-bg);
  padding-top: 160px; /* More padding to separate from previous section */
}

.specialist .container {
  display: flex;
  align-items: center;
}

.specialist-image {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
}

.specialist-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}

.specialist-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--color-bg) 100%);
  pointer-events: none;
}

.specialist-content {
  flex: 0 0 55%;
  padding-left: 60px;
  margin-left: -40px; /* Overlap */
  position: relative;
  z-index: 2;
  background: rgba(250, 248, 245, 0.4);
  backdrop-filter: blur(8px);
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: var(--radius-card);
}

.specialist-title {
  font-size: 44px;
  max-width: 520px;
  margin-bottom: 24px;
}

.specialist-text p {
  font-size: 16px;
  color: var(--color-text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
}

.specialist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tag {
  background-color: rgba(58,191,181,0.12);
  color: var(--color-primary-dark);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tag:hover {
  background-color: rgba(58,191,181,0.25);
  transform: scale(1.06);
}

@media (max-width: 992px) {
  .specialist .container {
    flex-direction: column;
  }
  .specialist-image, .specialist-content {
    flex: 0 0 100%;
  }
  .specialist-content {
    padding-left: 0;
    margin-left: 0;
    margin-top: -40px;
    padding: 32px 24px;
    background: var(--color-bg);
  }
  .specialist-image::after {
    background: linear-gradient(to bottom, transparent 60%, var(--color-bg) 100%);
  }
}

@media (max-width: 768px) {
  .specialist-image img {
    height: 260px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 90% 100%, 0 100%);
  }
  .specialist-title { font-size: 32px; }
}

/* ==========================================
   D. SERVIÇOS
   ========================================== */
.services {
  background-color: var(--color-bg-alt);
  position: relative;
  margin-top: 60px;
}

.services-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

/* Decorative background thread for services */
.services-thread {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  height: 60%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.services-thread svg { width: 100%; height: 100%; overflow: visible; }
.services-thread path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1s ease-out;
}

.services-grid.visible .services-thread path {
  stroke-dashoffset: 0;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-rest);
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: width 0.35s ease;
}

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

.service-card:hover::before {
  width: 100%;
}

.service-card.large {
  grid-column: span 1;
}

.service-card.medium {
  grid-column: span 1;
}

.service-icon {
  margin-bottom: 24px;
  color: var(--color-primary);
}

.service-icon i {
  font-size: 32px;
  stroke-width: 1.5px;
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-text {
  font-size: 15px;
  color: var(--color-text-medium);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================
   E. AUTORIDADE
   ========================================== */
.authority {
  background-color: var(--color-text-dark);
  color: var(--color-bg);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding: 120px 0;
  position: relative;
  margin: 60px 0;
}

.authority::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
}

.authority .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.auth-label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
  display: block;
}

.auth-title {
  font-size: 52px;
  color: var(--color-bg);
  line-height: 1.2;
  margin-bottom: 24px;
}

.auth-text {
  font-size: 16px;
  color: rgba(250,248,245,0.75);
  line-height: 1.8;
}

.auth-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 24px;
}

.auth-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 3px;
  width: 2px;
  background-color: rgba(58,191,181,0.3);
}

.timeline-item {
  position: relative;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-bg);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

@media (max-width: 992px) {
  .authority .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .authority {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    padding: 80px 0;
  }
  .auth-title { font-size: 34px; }
}

/* ==========================================
   F. COMO FUNCIONA
   ========================================== */
.how-it-works {
  background-color: var(--color-bg);
  overflow: hidden;
}

.how-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 80px;
}

.steps-wrapper {
  display: flex;
  gap: 48px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  z-index: 0;
}

.steps-connector path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  opacity: 0.4;
}

.step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-num-bg {
  position: absolute;
  top: -40px;
  left: -10px;
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(58,191,181,0.15);
  line-height: 1;
  z-index: -1;
  pointer-events: none;
}

.step-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-bg);
  border: 1px solid rgba(58,191,181,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 24px;
}

.step-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.step-text {
  font-size: 15px;
  color: var(--color-text-medium);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    gap: 64px;
  }
  .steps-connector {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 1.5px;
    height: 100%;
  }
  .steps-connector svg {
    width: 100%;
    height: 100%;
  }
  .steps-connector line {
    stroke: var(--color-primary);
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    opacity: 0.4;
  }
  .step-num-bg {
    left: auto;
    right: 0;
    top: -20px;
  }
}

/* ==========================================
   G. LOCAL
   ========================================== */
.location {
  padding: 0;
  display: flex;
  margin-top: 96px;
}

.location-map {
  flex: 0 0 50%;
  height: 480px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info-wrapper {
  flex: 0 0 50%;
  background-color: var(--color-bg-alt);
  display: flex;
  align-items: center;
  padding: 64px;
}

.location-info {
  max-width: 480px;
}

.location-icon {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.location-title {
  font-size: 40px;
  margin-bottom: 24px;
}

.location-address {
  font-size: 16px;
  color: var(--color-text-medium);
  margin-bottom: 32px;
}

.location-badge {
  display: inline-block;
  background-color: rgba(58,191,181,0.15);
  color: var(--color-primary-dark);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

@media (max-width: 992px) {
  .location {
    flex-direction: column;
  }
  .location-map {
    flex: none;
    width: 100%;
    height: 320px;
  }
  .location-info-wrapper {
    flex: none;
    width: 100%;
  }
}

/* ==========================================
   H. FAQ
   ========================================== */
.faq {
  background-color: var(--color-bg);
  position: relative;
  margin-top: 60px;
}

.faq-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 64px;
}

.accordion {
  border-top: 1px solid rgba(58,191,181,0.2);
}

.accordion-item {
  border-bottom: 1px solid rgba(58,191,181,0.2);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--color-primary);
}

.accordion-icon {
  color: var(--color-primary);
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  opacity: 1;
}

.accordion-content p {
  font-size: 15px;
  color: var(--color-text-medium);
  line-height: 1.75;
  padding-bottom: 24px;
}

/* ==========================================
   I. CTA FINAL
   ========================================== */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(58,191,181,0.15), transparent 50%), 
              radial-gradient(ellipse at 80% 50%, rgba(232,165,152,0.12), transparent 50%), 
              var(--color-bg);
  overflow: hidden;
}

.cta-bg-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
  animation: floatBg 8s ease-in-out infinite alternate;
}

.sphere-1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: -100px;
  left: -100px;
}

.sphere-2 {
  width: 250px;
  height: 250px;
  background: var(--color-warm-rose);
  bottom: -50px;
  right: -50px;
  animation-delay: -4s;
}

@keyframes floatBg {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.cta-final .container {
  max-width: 640px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--color-text-medium);
  margin-bottom: 48px;
}

.cta-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-container);
  box-shadow: var(--shadow-rest);
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-medium);
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.form-input {
  width: 100%;
  border: 1.5px solid rgba(58,191,181,0.3);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58,191,181,0.15);
}

.cta-form .btn {
  width: 100%;
  margin-top: 16px;
}

/* intl-tel-input override */
.iti { width: 100%; }

@media (max-width: 768px) {
  .cta-final { padding: 64px 0; }
  .cta-title { font-size: 32px; }
  .cta-form { padding: 32px 24px; }
}

/* ==========================================
   J. FOOTER
   ========================================== */
.footer {
  background-color: var(--color-text-dark);
  color: var(--color-bg);
  padding: 48px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(250,248,245,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(250,248,245,0.4);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* Whatsapp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  animation: pulseWa 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: var(--color-text-dark);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-ui);
  font-weight: 500;
  box-shadow: var(--shadow-rest);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================
   K. MODAL
   ========================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--color-bg);
  border-radius: var(--radius-container);
  padding: 40px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(58,191,181,0.1);
  color: var(--color-primary-dark);
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(58,191,181,0.2);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
  }
}

/* Estilo adicional para select */
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233ABFB5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

/* ==========================================
   DEPOIMENTOS — carrossel de avaliações Google
   ========================================== */
.depoimentos { background-color: var(--color-bg-alt); }
.dep-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.dep-kicker { font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-primary-dark); font-weight: 600; margin-bottom: 10px; }
.dep-title { font-size: 40px; margin-bottom: 22px; }
.dep-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--color-white); border: 1px solid rgba(58,191,181,0.18); border-radius: var(--radius-pill); padding: 8px 18px; box-shadow: var(--shadow-rest); }
.dep-g { font-size: 20px; color: #4285F4; }
.dep-num { font-family: var(--font-ui); font-weight: 600; font-size: 16px; color: var(--color-text-dark); }
.dep-badge-stars { color: #F5A623; font-size: 15px; display: inline-flex; gap: 1px; }
.dep-cnt { font-family: var(--font-ui); font-size: 14px; color: var(--color-text-medium); }
.dep-carousel { position: relative; }
.dep-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 18px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.dep-track::-webkit-scrollbar { display: none; }
.dep-card { flex: 0 0 340px; max-width: 86vw; scroll-snap-align: center; background: var(--color-white); border: 1px solid rgba(0,0,0,0.04); border-radius: var(--radius-card); padding: 26px 26px 20px; display: flex; flex-direction: column; box-shadow: var(--shadow-rest); }
.dep-stars { color: #F5A623; font-size: 17px; margin-bottom: 14px; display: inline-flex; gap: 2px; }
.dep-quote { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--color-text-dark); margin-bottom: 20px; flex: 1; }
.dep-foot { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--color-bg-alt); padding-top: 16px; }
.dep-av { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; background: var(--color-primary); color: var(--color-on-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-weight: 600; font-size: 14px; }
.dep-name { font-family: var(--font-ui); font-weight: 600; font-size: 15px; color: var(--color-text-dark); }
.dep-meta { font-family: var(--font-ui); font-size: 12.5px; color: var(--color-text-medium); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.dep-meta .ph-google-logo { color: #4285F4; font-size: 14px; }
.dep-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.dep-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(58,191,181,0.4); background: var(--color-white); color: var(--color-primary-dark); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.dep-arrow:hover { background: var(--color-primary); color: var(--color-on-primary); border-color: var(--color-primary); box-shadow: var(--shadow-btn-hover); }
.dep-dots { display: flex; gap: 8px; }
.dep-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(58,191,181,0.3); border: none; padding: 0; cursor: pointer; transition: all 0.25s ease; }
.dep-dot.on { background: var(--color-primary); width: 24px; border-radius: var(--radius-pill); }
.dep-cta-link { text-align: center; margin-top: 22px; font-family: var(--font-ui); font-size: 14px; }
@media (max-width: 768px) {
  .dep-title { font-size: 32px; }
  .dep-card { flex-basis: 300px; padding: 22px 22px 18px; }
  .dep-arrow { width: 42px; height: 42px; }
}

/* ---- Navegacao interna do rodape (SEO: elimina paginas orfas) ---- */
.footer-sitemap {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0 8px;
  margin-bottom: 16px;
}
.footer-sitemap h3 {
  /* Sem estas duas linhas herdava Cormorant italico da regra global h1-h6 —
     todo kicker do projeto e Jost reto. */
  font-family: var(--font-ui); font-style: normal;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,248,245,0.45); margin: 0 0 18px;
  font-weight: 600; text-align: center;
}
.footer-sitemap ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px;
}
.footer-sitemap a {
  color: rgba(250,248,245,0.82); text-decoration: none;
  font-size: 14.5px; transition: color 0.2s;
}
.footer-sitemap a:hover { color: var(--color-primary); text-decoration: underline; }
.footer-sitemap [aria-current="page"] { color: rgba(250,248,245,0.45); font-size: 14.5px; }

/* ---- Bloco "Leia tambem" (links contextuais para o blog) ---- */
.leia-tambem { background-color: var(--color-bg-alt); padding: 72px 0; }
.leia-tambem .lt-kicker {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-primary-dark); font-weight: 600;
  margin: 0 0 10px; text-align: center;
}
.leia-tambem h2 {
  font-family: var(--font-heading); font-size: 36px; font-weight: 600;
  text-align: center; margin: 0 0 40px; color: var(--color-text-dark);
}
.lt-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.lt-card {
  display: block; background: var(--color-white); border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-card); padding: 26px; text-decoration: none;
  color: inherit; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.lt-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}
.lt-card-tag {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-primary-dark); font-weight: 600; margin: 0 0 10px;
}
.lt-card h3 {
  /* font-style explicito: a regra global h1-h6 das LPs aplica italic, e o Jost
     nao tem italico real — o navegador sintetizava um oblique torto. */
  font-family: var(--font-body); font-style: normal;
  font-size: 17px; font-weight: 600;
  margin: 0 0 10px; line-height: 1.35; color: var(--color-text-dark);
}
.lt-card p { font-size: 14.5px; color: var(--color-text-medium); margin: 0; line-height: 1.6; }
.lt-todos { text-align: center; margin: 36px 0 0; }
.lt-todos a { color: var(--color-primary-dark); font-size: 15px; }
@media (max-width: 768px) {
  .leia-tambem { padding: 56px 0; }
  .leia-tambem h2 { font-size: 30px; }
}
