:root {
  --ink: #17201f;
  --muted: #5f6d69;
  --line: #dce7e3;
  --paper: #fbfdfb;
  --soft: #eef5ff;
  --teal: #2563eb;
  --teal-dark: #1e3a8a;
  --mint: #dbeafe;
  --gold: #f4b942;
  --coral: #e96b5c;
  --blue: #376d9f;
  --shadow: 0 18px 50px rgba(30, 58, 138, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 62px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 22px max(24px, calc((100vw - 1120px) / 2));
  background: rgba(251, 253, 251, 0.9);
  border-bottom: 1px solid rgba(220, 231, 227, 0.8);
  backdrop-filter: blur(18px);
}

/* 1. Controla o tamanho máximo da imagem do logo */
.brand-logo {
  height: 100px; /* Altere este valor para ajustar a altura do seu logo na barra */
  width: auto;  /* Faz a largura se adaptar proporcionalmente, sem distorcer a imagem */
  display: block;
  transform: translateY(5px);
}

/* 2. Limpa estilos antigos do link que prendiam o bloco azul (Caso use) */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}


/* .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--teal-dark);
  white-space: nowrap;
} */

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #34423f;
}

.site-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

.button-secondary {
  background: white;
  color: var(--teal-dark);
  border-color: var(--line);
  box-shadow: none;
}

.button-small {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1.12rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 14px 34px rgba(23, 32, 31, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    linear-gradient(120deg, rgba(219, 234, 254, 0.82), rgba(251, 253, 251, 0) 48%),
    var(--paper);
}

.hero-grid,
.split,
.showcase-grid,
.pricing-grid,
.faq-grid,
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 1.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  font-size: 1.18rem;
}

.section-lead {
  max-width: 680px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #40504c;
  font-size: 0.88rem;
  font-weight: 700;
}

.urgency-note {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--teal-dark);
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.browser-mockup,
.phone-mockup {
  position: absolute;
  border: 1px solid rgba(23, 32, 31, 0.08);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.browser-mockup {
  width: min(430px, 92%);
  padding: 14px;
}

.mockup-restaurant {
  top: 18px;
  right: 0;
}

.mockup-workshop {
  bottom: 28px;
  left: 0;
}

.mockup-clinic {
  top: 150px;
  left: 34px;
}

.mockup-top {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cedbd7;
}

.mockup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.mockup-photo {
  min-height: 160px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(233, 107, 92, 0.85), rgba(244, 185, 66, 0.7)),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.35) 14px 18px);
}

.mockup-content strong,
.mockup-workshop strong,
.phone-screen strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.mockup-lines {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.mockup-lines span {
  height: 14px;
  border-radius: 999px;
  background: #dfe8e5;
}

.mockup-lines span:nth-child(2) {
  width: 72%;
  background: #c8ded8;
}

.mockup-lines span:nth-child(3) {
  width: 46%;
  background: var(--gold);
}

.phone-mockup {
  width: 190px;
  padding: 12px;
}

.phone-speaker {
  width: 48px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #cdd8d5;
}

.phone-screen {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(55, 109, 159, 0.9), rgba(37, 99, 235, 0.78)),
    linear-gradient(#fff, #fff);
  color: white;
}

.phone-screen span,
.phone-screen small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.problem-section,
.audience-section {
  background: white;
}

.confidence-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.confidence-grid article {
  display: grid;
  gap: 6px;
  padding: 18px 0;
}

.confidence-grid strong {
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.confidence-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.problem-grid,
.steps,
.included-grid,
.examples-grid,
.objections-grid {
  display: grid;
  gap: 16px;
}

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

.problem-grid article,
.steps article,
.included-grid article,
.example-card,
.objections-grid article,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.problem-grid article,
.steps article {
  padding: 22px;
}

.problem-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal-dark);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.included-section {
  background: var(--soft);
}

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

.included-grid article {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--teal-dark);
  font-weight: 800;
}

.differentiation {
  background: #172554;
  color: white;
}

.differentiation p,
.differentiation .eyebrow {
  color: #dbeafe;
}


/*  */

.style-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Garante que o link ocupe 100% do espaço do card e remova estilos de texto padrões */
.article-link {
  display: block;
  text-decoration: none;
  color: inherit; /* Impede que textos dentro do article fiquem azuis */
}

/* Garante que o link se comporte como o bloco do grid e não mude o layout */
.board-link {
  display: block;
  text-decoration: none; /* Remove qualquer sublinhado padrão */
  width: 100%;
}

.tile {
  min-height: 145px; 
  display: flex;
  align-items: flex-end;
  padding: 14px; 
  border-radius: 8px;
  color: white;
  font-weight: 900;
  position: relative; 
  overflow: hidden;   
  cursor: pointer;
  
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
  
  /* ⚡ NOVO: Controla a suavidade do zoom e da sombra no quadro inteiro */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra leve padrão */
}

/* 🏎️ NOVO EFEITO DE HOVER: O zoom e a sombra agora se aplicam ao quadro todo */
.tile:hover {
  transform: scale(1.04); /* Aumenta o quadro inteiro em 4% */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Sombra maior para efeito de "flutuar" */
}

.tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-size: cover; 
  background-position: top center;
  background-repeat: no-repeat;
  
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
  
  /* REMOVIDO: Tiramos a transição daqui para a imagem ficar fixa dentro do card */
}

/* O restante do código permanece igual */
.tile span {
  position: relative;
  z-index: 3;
}

/* .tile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%; 
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 2;
  pointer-events: none;
} */

.tile span {
  position: relative;
  z-index: 3;
  
  /* Cria uma mini etiqueta moderna com fundo levemente desfocado atrás do texto */
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
}


/* Suas classes de imagem
.tile-food::before { background-image: url('imagens/print-restaurante.jpg'); }
.tile-beauty::before { background-image: url('imagens/print-beleza.jpg'); }
.tile-legal::before { background-image: url('imagens/print-advocacia.jpg'); }
.tile-pet::before { background-image: url('imagens/print-pet.jpg'); } */



/* Suas classes de imagem permanecem as mesmas */
.tile-food::before { background-image: url('images/saborderua_1280_x_715.jpg'); }
.tile-clinicavida::before { background-image: url('images/clinicavida_1280x715.jpg'); }
.tile-petalegre::before { background-image: url('images/petalegre_1280x715.jpg'); }
.tile-autonorte::before { background-image: url('images/autonorte_1280x715.jpg'); }

/* .tile-food {
  background: linear-gradient(135deg, #8b2f21, #f4b942);
} */

/* .tile-food {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0.1)), url('images/saborderua_1200_x_750_.jpg');
  background-size: cover;
  background-position: center;
} */

.tile-beauty {
  background: linear-gradient(135deg, #7d4f91, #e7a6bf);
}

.tile-legal {
  background: linear-gradient(135deg, #1f2a44, #9c8357);
}

.tile-pet {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.examples-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.example-card {
  overflow: hidden;
  border-color: rgba(30, 58, 138, 0.12);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  position: relative
}

.example-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow);
}

.example-card h3 {
  margin: 20px 20px 2px;
  font-size: 1.12rem;
}

.example-segment {
  display: block;
  padding: 0 20px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.example-card p {
  padding: 0 20px;
  margin-bottom: 20px;
}

.example-preview {
  min-height: 265px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fb;
  color: #17201f;
}

.example-preview h4,
.example-preview p {
  margin: 0;
  padding: 0;
}

.example-preview h4 {
  line-height: 1.08;
  letter-spacing: 0;
}

.example-preview strong {
  line-height: 1;
}

.example-preview b {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.preview-browser-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.preview-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9d3de;
}

.restaurant-preview {
  background: #fff8ee;
}

.restaurant-site {
  height: 100%;
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid #f0d8b6;
  border-radius: 8px;
  background: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
}

.restaurant-site header,

/* 1. Configuração do Card Principal */
.example-preview {
  display: flex;
  flex-direction: column;
  min-height: 236px; /* Altura de 236px que você mediu */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* 2. Barra do navegador fixa e estática */
.preview-browser-bar {
  position: relative;
  z-index: 3;
  background-color: #f1f1f1; 
}

/* 3. Container da imagem com cantos arredondados na base */
.preview-image-container {
  flex: 1; 
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* 4. O segredo: Puxa a imagem definida no HTML através da variável */
.preview-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Puxa dinamicamente a imagem do HTML */
  background-image: var(--bg-image); 
  background-size: cover; 
  background-position: top center;
  background-repeat: no-repeat;
  
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
}


.workshop-site header,
.clinic-site header,
.lawyer-site header,
.pet-site header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.restaurant-site header strong {
  color: #6e251d;
  font-size: 1rem;
}

.restaurant-site nav {
  display: flex;
  gap: 8px;
  color: #7a5a3a;
  font-size: 0.62rem;
  font-weight: 800;
}

.restaurant-hero {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
  align-items: center;
}

.restaurant-hero span {
  color: #a34828;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.restaurant-hero h4 {
  margin: 6px 0 12px;
  color: #321714;
  font-size: 1.35rem;
}

.restaurant-hero b {
  padding: 9px 11px;
  background: #b43a25;
  color: white;
}

.food-plate {
  position: relative;
  min-height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #f8f1e5 0 36%, #d8b983 37% 42%, #ffffff 43% 65%, #e9d8bb 66%);
  box-shadow: inset 0 0 0 8px #fff7e8;
}

.food-plate i {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.food-plate i:nth-child(1) {
  width: 34px;
  height: 18px;
  left: 43px;
  top: 46px;
  background: #c34a2d;
}

.food-plate i:nth-child(2) {
  width: 24px;
  height: 24px;
  left: 64px;
  top: 62px;
  background: #f0b344;
}

.food-plate i:nth-child(3) {
  width: 42px;
  height: 10px;
  left: 28px;
  top: 72px;
  background: #5b8e4d;
}

.food-tags,
.workshop-site footer,
.pet-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.food-tags span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f7ead7;
  color: #6e251d;
  font-size: 0.66rem;
  font-weight: 850;
}

.beauty-preview {
  background: #fbf4f8;
}

.beauty-site {
  min-height: 235px;
  display: grid;
  grid-template-columns: 88px 1fr;
  overflow: hidden;
  border: 1px solid #ead0df;
  border-radius: 8px;
  background: #fffafd;
}

.beauty-site aside {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: #5b355b;
  color: white;
  text-align: center;
}

.beauty-site aside strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.beauty-site aside span {
  color: #f0c9dc;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.beauty-site main {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 16px;
}

.beauty-photo {
  min-height: 70px;
  border-radius: 8px 8px 32px 8px;
  background:
    radial-gradient(circle at 30% 40%, #f5bdcf 0 18%, transparent 19%),
    radial-gradient(circle at 64% 32%, #c68eb4 0 15%, transparent 16%),
    linear-gradient(135deg, #f9dce8, #fff3f8);
}

.beauty-site h4 {
  color: #3d263d;
  font-size: 1.05rem;
}

.beauty-site ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.beauty-site li {
  padding: 5px 7px;
  border: 1px solid #ead0df;
  border-radius: 999px;
  color: #7b4d72;
  font-size: 0.62rem;
  font-weight: 800;
}

.beauty-site b {
  padding: 9px 10px;
  background: #7b4d72;
  color: white;
}

.workshop-preview {
  background: #eef1f4;
}

.workshop-site {
  min-height: 235px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #18212b;
  color: white;
  font-family: Arial, sans-serif;
}

.workshop-site header strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.workshop-site header span {
  color: #f6c247;
  font-size: 0.66rem;
  font-weight: 850;
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 12px;
  align-items: center;
}

.workshop-grid h4 {
  max-width: 160px;
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.workshop-grid b {
  padding: 9px 10px;
  background: #f6c247;
  color: #18212b;
}

.car-card {
  position: relative;
  min-height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    #25313c;
}

.car-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 38px;
  height: 24px;
  border-radius: 20px 20px 8px 8px;
  background: #f6c247;
}

.car-card i {
  position: absolute;
  bottom: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #111820;
}

.car-card i:nth-of-type(1) {
  left: 22px;
}

.car-card i:nth-of-type(2) {
  right: 22px;
}

.workshop-site footer span {
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe4ec;
  font-size: 0.62rem;
  font-weight: 800;
}

.clinic-preview {
  background: #f2f9fb;
}

.clinic-site {
  min-height: 235px;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid #cfe8ee;
  border-radius: 8px;
  background: white;
}

.clinic-site header strong {
  color: #176b83;
  font-size: 1rem;
}

.clinic-site header b {
  padding: 8px 9px;
  background: #176b83;
  color: white;
}

.clinic-body {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 14px;
  align-items: center;
}

.clinic-body span {
  color: #4c8797;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.clinic-body h4 {
  margin: 8px 0 12px;
  color: #17343c;
  font-size: 1.18rem;
}

.clinic-specialties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.clinic-specialties i {
  padding: 7px 5px;
  border-radius: 7px;
  background: #e7f5f7;
  color: #176b83;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.doctor-card {
  min-height: 128px;
  display: grid;
  place-items: end center;
  border-radius: 42px 42px 8px 8px;
  background: #d8f0f4;
}

.doctor-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #9bcbd5;
}

.doctor-card i {
  display: block;
  width: 64px;
  height: 18px;
  border-radius: 999px 999px 0 0;
  background: #176b83;
}

.lawyer-preview {
  background: #f3f1ec;
}

.lawyer-site {
  min-height: 235px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #111827;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
}

.lawyer-site header {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 190, 145, 0.35);
}

.lawyer-site header strong {
  font-size: 1rem;
}

.lawyer-site header span {
  color: #d4be91;
  font-size: 0.64rem;
  font-weight: 850;
}

.lawyer-panel {
  display: grid;
  align-content: center;
  max-width: 230px;
}

.lawyer-panel h4 {
  margin-bottom: 8px;
  color: #f8f4ed;
  font-size: 1.2rem;
}

.lawyer-panel p {
  color: #d6d0c4;
  font-size: 0.72rem;
  line-height: 1.35;
}

.lawyer-panel b {
  margin-top: 12px;
  padding: 9px 10px;
  border: 1px solid #d4be91;
  color: #d4be91;
}

.lawyer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lawyer-columns span {
  padding: 8px 6px;
  border-top: 2px solid #d4be91;
  background: rgba(255, 255, 255, 0.05);
  color: #ede7dc;
  font-size: 0.58rem;
  font-weight: 850;
  text-align: center;
}

.pet-preview {
  background: #f2fbf7;
}

.pet-site {
  min-height: 235px;
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid #cbeedd;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 14%, rgba(250, 204, 21, 0.24) 0 12%, transparent 13%),
    #ffffff;
}

.pet-site header {
  align-items: flex-start;
}

.pet-site header strong {
  color: #166534;
  font-size: 1.06rem;
}

.pet-site header span {
  max-width: 100px;
  color: #5f7f6d;
  font-size: 0.63rem;
  font-weight: 850;
  text-align: right;
}

.pet-hero {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
}

.pet-hero h4 {
  margin-bottom: 12px;
  color: #17442b;
  font-size: 1.24rem;
}

.pet-hero b {
  padding: 9px 10px;
  background: #16a34a;
  color: white;
}

.pet-face {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 34px;
  background: #facc15;
  transform: rotate(-3deg);
}

.pet-face::before,
.pet-face::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 30px;
  height: 34px;
  border-radius: 22px 22px 6px 6px;
  background: #92400e;
}

.pet-face::before {
  left: 8px;
  transform: rotate(-18deg);
}

.pet-face::after {
  right: 8px;
  transform: rotate(18deg);
}

.pet-face i {
  position: absolute;
  top: 38px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #17442b;
}

.pet-face i:nth-child(1) {
  left: 30px;
}

.pet-face i:nth-child(2) {
  right: 30px;
}

.pet-face b {
  position: absolute;
  left: 42px;
  top: 54px;
  width: 14px;
  height: 10px;
  padding: 0;
  border-radius: 0 0 999px 999px;
  background: #17442b;
}

.pet-services span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #e7f8ee;
  color: #166534;
  font-size: 0.64rem;
  font-weight: 850;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.audience-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #384743;
  font-weight: 800;
}

.objections-section {
  background: white;
}

.objections-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.objections-grid article {
  padding: 22px;
}

.objections-grid h3 {
  color: var(--teal-dark);
}

.pricing-section {
  background: var(--soft);
}

.value-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: white;
  color: #34423f;
  font-weight: 750;
}

.price-card {
  max-width: 430px;
  justify-self: end;
  padding: 30px;
  box-shadow: var(--shadow);
}

.plan-name {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 20px;
}

.price strong {
  font-size: 3rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #40504c;
  font-weight: 600;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
}

.comparison-table span {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: #43514e;
}

.comparison-table span + span {
  border-left: 1px solid var(--line);
}

.comparison-table .table-head span {
  background: #172554;
  color: white;
  font-weight: 900;
}

.comparison-table [role="row"]:last-child span {
  border-bottom: 0;
}

.faq-section {
  background: white;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 850;
}

.faq-list summary::marker {
  color: var(--teal);
}

.faq-list p {
  margin-bottom: 18px;
}

.final-cta {
  padding-top: 48px;
}

.final-cta-box {
  padding: 56px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(219, 234, 254, 0.28), rgba(244, 185, 66, 0.14)),
    #172554;
  color: white;
}

.final-cta-box p {
  color: #dbeafe;
}

.final-cta-box h2 {
  max-width: 830px;
}

.site-footer {
  padding: 46px 0 96px;
  border-top: 1px solid var(--line);
  background: white;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    background: #1ebe5d;
    box-shadow: 0 18px 42px rgba(23, 32, 31, 0.24);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 32px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer p {
  max-width: 360px;
  margin: 16px 0 0;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
  }

  .brand-logo {
    height: 72px;
    transform: translateY(5px);
  }

  .site-header > .button {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 106px 16px auto;
    display: none;
    flex-direction: column;
    font-size: 1.08rem;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--soft);
  }

  .hero-grid,
  .split,
  .showcase-grid,
  .pricing-grid,
  .faq-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 470px;
  }

  .steps,
  .included-grid,
  .examples-grid,
  .objections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confidence-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .confidence-grid article + article {
    border-top: 1px solid var(--line);
  }

  .price-card {
    max-width: none;
    justify-self: stretch;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    padding: 14px;
  }

  /* .brand-logo {
    height: 62px;
    transform: translateY(-40px);
  } */

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    inset: 90px 14px auto;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .browser-mockup {
    width: 100%;
  }

  .mockup-restaurant,
  .mockup-workshop,
  .mockup-clinic {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-bottom: 14px;
  }

  .mockup-clinic {
    width: 100%;
  }

  .phone-screen {
    min-height: 190px;
  }

  .mockup-content {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .steps,
  .included-grid,
  .examples-grid,
  .objections-grid,
  .style-board {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    overflow: hidden;
  }

  .comparison-table span,
  .comparison-table span + span {
    border-left: 0;
  }

  .comparison-table .table-head {
    display: none;
  }

  .comparison-table span:first-child {
    background: #172554;
    color: white;
    font-weight: 900;
  }

  .final-cta-box {
    padding: 34px 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
