/* ============================================================
   Gabriela Micuanski — Landing Page
   CSS puro, sem frameworks. Tokens de design em :root.
   Breakpoints: 640px (sm) · 768px (md) · 1024px (lg)
   ============================================================ */

/* ---------- Fonte da logo ---------- */
@font-face {
  font-family: "Callem Script";
  src: url("../assets/fonts/CallemScript.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Paleta principal (marrom/creme) */
  --primary-50: #faf7f2;
  --primary-100: #f0e8d8;
  --primary-200: #ddd0b8;
  --primary-300: #c5b090;
  --primary-400: #a8906a;
  --primary-500: #8b7252;
  --primary-600: #6f5a3e;
  --primary-700: #5a4730;
  --primary-800: #3d2f1e;
  --primary-900: #261e12;

  /* Dourado para destaques */
  --accent-500: #c4a878;

  /* Neutros */
  --neutral-100: #f5f5f4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;

  /* WhatsApp */
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset básico ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* compensa o header fixo */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-800);
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Bloqueia o scroll do fundo enquanto o modal está aberto */
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ---------- Helpers compartilhados ---------- */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow-container {
  max-width: 64rem;
}

.icon { width: 1.25rem; height: 1.25rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* Kicker acima dos títulos de seção */
.section-tag {
  display: inline-block;
  color: var(--primary-600);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-tag.on-dark {
  color: var(--primary-300);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--neutral-600);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

.section-subtitle.narrow {
  max-width: 36rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}

.btn-solid {
  background: var(--primary-700);
  color: #fff;
}

.btn-solid:hover {
  background: var(--primary-800);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.btn-lg:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--primary-300);
  color: var(--primary-700);
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background: var(--primary-100);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: all 0.5s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--primary-100);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  font-family: "Callem Script", cursive;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-700);
  transition: transform 0.3s var(--ease);
}

.brand:hover .brand-mark {
  transform: scale(1.05);
}

.brand-text {
  display: none;
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-800);
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
}

.brand-role {
  display: block;
  font-size: 0.75rem;
  color: var(--primary-500);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-600);
  padding-bottom: 0.25rem;
  transition: color 0.2s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-700);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  border-radius: 9999px;
  background: var(--primary-500);
  transition: width 0.3s var(--ease);
}

.nav-link.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  display: none;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.header-cta:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Hambúrguer animado */
.hamburger {
  padding: 0.5rem;
  color: var(--primary-800);
}

.hamburger-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.25rem;
  height: 1rem;
}

.hamburger-line {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 9999px;
  transition: all 0.3s var(--ease);
  transform-origin: left;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateX(1px);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateX(1px);
}

/* Menu mobile com slide */
.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--primary-100);
}

.mobile-menu.is-open {
  max-height: 24rem;
  opacity: 1;
}

.mobile-menu-inner {
  padding: 1.5rem;
}

.mobile-link {
  display: block;
  padding: 0.625rem 0;
  color: var(--neutral-700);
  font-weight: 500;
  border-bottom: 1px solid var(--neutral-100);
  transition: color 0.2s var(--ease);
}

.mobile-link:last-of-type {
  border-bottom: none;
}

.mobile-link:hover {
  color: var(--primary-700);
}

.mobile-cta {
  display: block;
  margin-top: 1rem;
  background: var(--primary-700);
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  text-align: center;
  font-weight: 600;
  transition: background 0.2s var(--ease);
}

.mobile-cta:hover {
  background: var(--primary-800);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(to bottom right, var(--primary-50), #fff, var(--primary-100));
  padding: 8rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary-800);
}

.hero .section-tag {
  margin-bottom: 1rem;
}

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

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--neutral-600);
  line-height: 1.625;
  max-width: 32rem;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-700);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.link-arrow:hover {
  color: var(--primary-800);
}

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

.hero-photo {
  position: relative;
}

.hero-photo-glow {
  position: absolute;
  inset: 0;
  background: var(--primary-200);
  border-radius: 9999px;
  transform: scale(1.05);
  filter: blur(40px);
  opacity: 0.4;
}

.hero-photo img {
  position: relative;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: var(--shadow-2xl), 0 0 0 4px var(--primary-100);
}

/* ============================================================
   SOCIAL PROOF (faixa escura)
   ============================================================ */
.social-proof {
  background: var(--primary-700);
  padding: 1.25rem 0;
}

.social-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.social-proof-item .icon {
  color: var(--primary-300);
  flex-shrink: 0;
}

.social-proof-divider {
  display: none;
  width: 1px;
  height: 1rem;
  background: var(--primary-500);
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--primary-50);
}

.steps {
  position: relative;
  margin-bottom: 4rem;
}

.steps-line {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 6rem;
  right: 6rem;
  height: 1px;
  background: var(--primary-200);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-badge {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: #fff;
  border: 2px solid var(--primary-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.step-badge span {
  font-size: 0.75rem;
  color: var(--primary-400);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.step-badge i {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-500);
  border-radius: 9999px;
  margin-top: 0.25rem;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--neutral-500);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* O que está incluso */
.included-wrap {
  margin-bottom: 4rem;
}

.included-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--primary-100);
  padding: 2.5rem 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.included-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 2rem;
  text-align: center;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2.5rem;
  row-gap: 1rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--neutral-700);
  font-size: 0.875rem;
  line-height: 1.625;
}

.included-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  background-color: var(--primary-500);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="black" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M5 13l4 4L19 7"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="black" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M5 13l4 4L19 7"/></svg>') no-repeat center / contain;
}

.services-cta {
  text-align: center;
  margin-bottom: 6rem;
}

/* FAQ */
.faq {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary-800);
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s var(--ease);
}

.faq-question:hover {
  background: var(--primary-50);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary-200);
  outline-offset: -2px;
}

.faq-question span {
  font-weight: 600;
  color: var(--primary-800);
  padding-right: 1rem;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
  background: var(--primary-50);
}

.faq-item.is-open .faq-answer {
  max-height: 24rem;
  opacity: 1;
}

.faq-answer p {
  padding: 0.25rem 2rem 1.25rem;
  color: var(--neutral-600);
  line-height: 1.625;
}

/* ============================================================
   SOBRE
   ============================================================ */
.about {
  padding: 6rem 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-photo {
  position: relative;
}

.about-photo-bg {
  position: absolute;
  inset: -1rem;
  background: var(--primary-100);
  border-radius: 2rem;
  transform: rotate(3deg);
}

.about-photo img {
  position: relative;
  width: 20rem;
  height: 24rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
}

.about-title {
  margin-bottom: 2rem;
  line-height: 1.25;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--neutral-600);
  line-height: 1.625;
}

.strong-primary {
  font-weight: 600;
  color: var(--primary-700);
}

.medium-primary {
  font-weight: 500;
  color: var(--primary-700);
}

.about-quote {
  margin-top: 2rem;
  border-left: 4px solid var(--accent-500);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--primary-700);
  font-family: var(--font-serif);
}

.tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  background: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-200);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--primary-50);
}

.testimonials-header {
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--primary-100);
  transition: box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

/* garante que o atributo hidden vença o display:flex do card */
.testimonial-card[hidden] {
  display: none;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary-100);
  user-select: none;
  margin-bottom: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-500);
}

.testimonial-text {
  color: var(--neutral-700);
  line-height: 1.625;
  flex: 1;
  font-size: 0.875rem;
}

.testimonial-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--primary-50);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-500);
}

.testimonial-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-700);
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--neutral-400);
}

.testimonials-more {
  text-align: center;
  margin-top: 2.5rem;
}

.toggle-chevron {
  transition: transform 0.3s var(--ease);
}

#testimonials-toggle[aria-expanded="true"] .toggle-chevron {
  transform: rotate(180deg);
}

.testimonials-note {
  text-align: center;
  margin-top: 3rem;
}

.note-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--primary-200);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  color: var(--primary-400);
}

.note-text {
  color: var(--primary-700);
  font-weight: 500;
  font-size: 0.875rem;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, var(--primary-700), var(--primary-800), var(--primary-900));
  text-align: center;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  color: var(--primary-200);
  margin: 0 auto 3.5rem;
  max-width: 42rem;
  line-height: 1.625;
  font-size: 1.125rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  max-width: 36rem;
  margin: 0 auto;
}

.contact-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-100);
  font-size: 0.875rem;
}

.check-dot {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--accent-500);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-dot svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--primary-800);
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow-xl);
  max-width: 24rem;
  margin: 0 auto;
  transition: all 0.3s var(--ease);
}

.contact-cta:hover {
  background: var(--primary-50);
  box-shadow: var(--shadow-2xl);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-900);
  color: var(--primary-200);
}

.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-role {
  color: var(--primary-300);
  font-weight: 500;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-instagram {
  color: var(--primary-300);
  padding: 0.5rem;
  border-radius: 9999px;
  transition: all 0.2s var(--ease);
  display: inline-flex;
}

.footer-instagram:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-whatsapp {
  background: var(--primary-700);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s var(--ease);
}

.footer-whatsapp:hover {
  background: var(--primary-600);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--primary-700);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--primary-500);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}

.footer-privacy-link {
  color: var(--primary-400);
  text-decoration: underline;
  transition: color 0.2s var(--ease);
  font-size: 0.875rem;
}

.footer-privacy-link:hover {
  color: #fff;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary-400);
  transition: opacity 0.2s var(--ease);
}

.footer-credit:hover {
  opacity: 0.8;
}

.mck {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 14px;
}

.mck-digital {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-label {
  background: #fff;
  color: var(--primary-800);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(1rem);
  pointer-events: none;
  transition: all 0.3s var(--ease);
}

.floating-whatsapp:hover .floating-label {
  opacity: 1;
  transform: translateX(0);
}

.floating-btn-wrap {
  position: relative;
  display: block;
}

.floating-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--green-400);
  opacity: 0.3;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.floating-btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--green-500);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s var(--ease);
}

.floating-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}

.floating-whatsapp:hover .floating-btn {
  background: var(--green-600);
  box-shadow: var(--shadow-2xl);
  transform: scale(1.1);
}

/* ============================================================
   BANNER DE COOKIES
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
}

.cookie-card {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--primary-900);
  color: var(--primary-100);
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cookie-text {
  font-size: 0.875rem;
  line-height: 1.625;
  text-align: center;
  flex: 1;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #fff;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-reject {
  color: var(--primary-200);
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s var(--ease);
}

.cookie-btn-reject:hover {
  color: #fff;
}

.cookie-btn-accept {
  background: #fff;
  color: var(--primary-800);
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s var(--ease);
}

.cookie-btn-accept:hover {
  background: var(--primary-50);
}

/* ============================================================
   MODAL — POLÍTICA DE PRIVACIDADE (dialog nativo)
   ============================================================ */
.privacy-dialog {
  margin: auto; /* recentra o dialog (anulado pelo reset universal) */
  border: none;
  padding: 0;
  background: transparent;
  max-width: 42rem;
  width: calc(100% - 2rem);
  max-height: 85vh;
}

.privacy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.privacy-inner {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  overflow-y: auto;
  max-height: 85vh;
}

.privacy-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.privacy-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-900);
}

.privacy-close {
  color: var(--gray-400);
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s var(--ease);
}

.privacy-close:hover {
  color: var(--gray-700);
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.625;
}

.privacy-body h3 {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.privacy-body a {
  color: var(--primary-700);
  text-decoration: underline;
}

.privacy-body p + p {
  margin-top: 0.25rem;
}

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="100"] { transition-delay: 100ms; }
[data-animate][data-delay="200"] { transition-delay: 200ms; }
[data-animate][data-delay="300"] { transition-delay: 300ms; }
[data-animate][data-delay="400"] { transition-delay: 400ms; }
[data-animate][data-delay="500"] { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-ping {
    animation: none;
  }
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* sm ≥ 640px */
@media (min-width: 640px) {
  .brand-text {
    display: block;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.15;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .included-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .cookie-banner {
    padding: 1.5rem;
  }

  .cookie-card {
    flex-direction: row;
    padding: 1.5rem;
  }

  .cookie-text {
    text-align: left;
  }

  .footer-legal {
    flex-direction: row;
    gap: 0.75rem;
  }
}

/* md ≥ 768px */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .hamburger,
  .mobile-menu {
    display: none;
  }

  .social-proof-row {
    justify-content: space-between;
  }

  .social-proof-divider {
    display: block;
  }

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

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

  .footer-top {
    flex-direction: row;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

/* lg ≥ 1024px */
@media (min-width: 1024px) {
  .header-inner {
    height: 5rem;
  }

  .hero {
    padding: 10rem 0 7rem;
  }

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

  .hero-title {
    font-size: 3.75rem;
    line-height: 1.1;
  }

  .hero-photo-wrap {
    justify-content: flex-end;
  }

  .hero-photo img {
    width: 24rem;
    height: 24rem;
  }

  .steps-line {
    display: block;
  }

  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-title {
    font-size: 3rem;
  }
}
