/* ============================================================
   Vida Caninna — Creche e Hotel para Cães | Jacareí
   Identidade: azul vibrante + amarelo + navy, fonte gordinha.
   Direção: moderno e clean — cor com propósito, ar generoso,
   sombras suaves, ícones desenhados, texturas sutis.
   ============================================================ */
:root {
  --sky: #1bbdff;
  --sky-deep: #0a6ea0;
  --sky-tint: rgba(27, 189, 255, 0.12);
  --navy: #032861;
  --navy-tint: rgba(3, 40, 97, 0.08);
  --amber: #edb21e;
  --amber-deep: #946c06;
  --amber-tint: rgba(237, 178, 30, 0.16);
  --red: #c0392b;
  --ink: #0e2444;
  --ink-soft: #55657d;
  --cream: #fdf9f1;
  --white: #ffffff;
  --line: #ece6da;
  --green-wa: #25d366;
  --green-wa-dark: #1eb857;
  --shadow: 0 10px 34px rgba(3, 40, 97, 0.07);
  --shadow-lift: 0 22px 54px rgba(3, 40, 97, 0.13);
  --font-body: "Nunito", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --font-display: "Baloo 2", "Nunito", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--sky-deep); }

/* Acessibilidade: foco visível para navegação por teclado */
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.section.navy :focus-visible, .site-footer :focus-visible, .cta-final :focus-visible { outline-color: #fff; }

/* Acessibilidade: pular para o conteúdo */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: 10px; font-family: var(--font-display); font-weight: 700;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* Acessibilidade: respeitar quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover, .btn:focus-visible, .post-card:hover, .service-card:hover, .wa-float:hover { transform: none; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.container { width: min(1140px, 92%); margin-inline: auto; position: relative; z-index: 1; }

/* patinhas de fundo — textura sutil, não papel de parede */
.paws { position: relative; }
.paws::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.055'%3E%3Cellipse cx='40' cy='52' rx='9' ry='12'/%3E%3Cellipse cx='60' cy='44' rx='7' ry='10'/%3E%3Cellipse cx='80' cy='52' rx='9' ry='12'/%3E%3Cellipse cx='30' cy='72' rx='7' ry='9'/%3E%3Cellipse cx='90' cy='72' rx='7' ry='9'/%3E%3Cpath d='M60 62c-13 0-22 9-22 19 0 8 9 11 22 11s22-3 22-11c0-10-9-19-22-19z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 190px 190px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
}

.brand img { width: 46px; height: auto; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.main-nav a:hover, .main-nav a:focus-visible { color: var(--navy); background: var(--sky-tint); }

.main-nav .nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  padding: 0;
  color: var(--navy);
}
.main-nav .nav-ig svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; }

.main-nav .nav-cta {
  background: var(--green-wa);
  color: var(--navy);
  padding: 11px 22px;
  margin-left: 8px;
}
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { background: var(--green-wa-dark); color: var(--navy); }

.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 44px; height: 44px;
    border: 1px solid var(--line); border-radius: 12px;
    background: var(--white); font-size: 1.25rem; cursor: pointer; color: var(--navy);
  }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: var(--white);
    border-bottom: 1px solid var(--line); padding: 12px 4vw 16px; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; border-radius: 12px; }
  .main-nav .nav-ig { width: auto; justify-content: flex-start; }
  .main-nav .nav-ig::after { content: "Instagram"; margin-left: 10px; font-weight: 700; }
  .main-nav .nav-cta { margin: 8px 0 0; text-align: center; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  border-radius: 999px;
  padding: 14px 30px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-whatsapp { background: var(--green-wa); color: var(--navy); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32); }
.btn-whatsapp:hover, .btn-whatsapp:focus-visible { background: var(--green-wa-dark); color: var(--navy); }

.btn-amber { background: var(--amber); color: var(--navy); box-shadow: 0 8px 22px rgba(237, 178, 30, 0.3); }
.btn-amber:hover, .btn-amber:focus-visible { background: var(--amber-deep); color: #fff; }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 12px 28px; }

.btn-white { background: #fff; color: var(--navy); box-shadow: 0 8px 22px rgba(3, 40, 97, 0.14); }

/* ---------- Hero (navy premium) ---------- */
.hero {
  background:
    radial-gradient(52% 60% at 88% 8%, rgba(237, 178, 30, 0.30), transparent 62%),
    radial-gradient(46% 66% at 6% 96%, rgba(27, 189, 255, 0.34), transparent 60%),
    linear-gradient(150deg, #063a7d 0%, #04306f 42%, #021c46 100%);
  color: #fff;
  padding: 84px 0 104px;
  position: relative;
  overflow: hidden;
}
.hero.paws::before { opacity: 1; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cellipse cx='40' cy='52' rx='9' ry='12'/%3E%3Cellipse cx='60' cy='44' rx='7' ry='10'/%3E%3Cellipse cx='80' cy='52' rx='9' ry='12'/%3E%3Cellipse cx='30' cy='72' rx='7' ry='9'/%3E%3Cellipse cx='90' cy='72' rx='7' ry='9'/%3E%3Cpath d='M60 62c-13 0-22 9-22 19 0 8 9 11 22 11s22-3 22-11c0-10-9-19-22-19z'/%3E%3C/g%3E%3C/svg%3E"); }

.hero .container {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 17px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 4.8vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--amber); }

.hero p.lead {
  font-size: 1.14rem;
  font-weight: 500;
  color: #cbdcf3;
  max-width: 33em;
  margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.hero .btn-outline:hover, .hero .btn-outline:focus-visible { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.hero-rating { margin-top: 24px; font-weight: 600; font-size: 0.95rem; color: #cbdcf3; }
.hero-rating a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-rating a:hover strong { text-decoration: underline; }
.hero-rating strong { color: #fff; font-weight: 700; }
.hero-rating .stars-svg { display: inline-flex; gap: 2px; }
.hero-rating .stars-svg svg { width: 18px; height: 18px; fill: var(--amber); }

.hero-media { position: relative; z-index: 1; }
.hero-media::before {
  content: "";
  position: absolute; inset: -26px;
  background: radial-gradient(circle at 55% 42%, rgba(237, 178, 30, 0.40), rgba(27, 189, 255, 0.28) 46%, transparent 72%);
  filter: blur(34px);
  z-index: -1;
}
.hero-media img {
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  aspect-ratio: 4 / 4.1;
  object-fit: cover;
  width: 100%;
  border: 5px solid rgba(255, 255, 255, 0.9);
}

.hero-badge {
  position: absolute;
  right: -14px; bottom: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  padding: 12px 20px 12px 12px;
  display: flex; align-items: center; gap: 12px;
  max-width: 260px;
}
.hero-badge .dot {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #f6cd52, var(--amber));
  box-shadow: 0 4px 12px rgba(237, 178, 30, 0.45);
  display: grid; place-items: center;
}
.hero-badge .dot svg { width: 22px; height: 22px; fill: #fff; display: block; }
.hero-badge .txt { display: flex; flex-direction: column; line-height: 1.25; font-family: var(--font-display); }
.hero-badge .txt strong { color: var(--navy); font-weight: 800; font-size: 0.98rem; }
.hero-badge .txt { color: var(--ink-soft); font-weight: 600; font-size: 0.82rem; }

@media (max-width: 900px) {
  .hero { padding: 60px 0 84px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-media img { aspect-ratio: 16 / 11; }
  .hero-badge { right: 10px; bottom: 12px; }
  /* Botões alinhados e fáceis de tocar no celular */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ---------- Seções ---------- */
.section { padding: 92px 0; }
.section.cream { background: var(--cream); }
.section.white { background: var(--white); }
.section.sky { background: var(--sky); }
.section.navy { background: var(--navy); }

.section.sky h2, .section.sky h3 { color: var(--navy); }
.section.sky .section-head p { color: rgba(3, 40, 97, 0.82); font-weight: 600; }
.section.sky .kicker { color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy .section-head p { color: #c4dcf7; }
/* Cards brancos dentro de seção navy não herdam o título branco */
.section.navy .feature-card h3 { color: var(--navy); }
.section.navy .kicker { color: var(--amber); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .kicker {
  color: var(--amber-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 10px 0 14px;
}
.section-head p { color: var(--ink-soft); font-weight: 600; }

/* grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.feature-card .icon {
  width: 56px; height: 56px; border-radius: 17px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--sky-tint);
}
.feature-card .icon svg { width: 27px; height: 27px; stroke: var(--sky-deep); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-card:nth-child(2n) .icon { background: var(--amber-tint); }
.feature-card:nth-child(2n) .icon svg { stroke: var(--amber-deep); }
.feature-card:nth-child(3n) .icon { background: var(--navy-tint); }
.feature-card:nth-child(3n) .icon svg { stroke: var(--navy); }

.feature-card h3 { font-size: 1.13rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; font-weight: 500; }

/* passos numerados */
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  background: var(--sky-tint); color: var(--sky-deep);
}
.feature-card:nth-child(2n) .step-num { background: var(--amber-tint); color: var(--amber-deep); }
.feature-card:nth-child(3n) .step-num { background: var(--navy-tint); color: var(--navy); }

@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* serviços */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.service-card {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.service-media { position: relative; }
.service-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.service-pill {
  position: absolute;
  left: 22px; bottom: -19px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(3, 40, 97, 0.16);
  display: flex; align-items: center; gap: 8px;
}
.service-pill .paw svg { width: 16px; height: 16px; fill: currentColor; display: block; }

.service-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}

.service-card .body { padding: 38px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.service-card .sub { font-size: 0.8rem; font-weight: 800; color: var(--sky-deep); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); margin-bottom: 18px; font-weight: 500; }
.service-card .link { margin-top: auto; font-family: var(--font-display); font-weight: 700; text-decoration: none; color: var(--sky-deep); }
.service-card .link:hover { color: var(--navy); }

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

/* sobre */
.about .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-media img {
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 4.4; object-fit: cover; width: 100%;
}
.about .kicker {
  color: var(--amber-deep); font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.about h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 10px 0 16px; }
.about p { color: var(--ink-soft); margin-bottom: 14px; font-weight: 500; }
.about ul { list-style: none; margin: 20px 0 30px; display: grid; gap: 12px; }
.about ul li { padding-left: 32px; position: relative; font-weight: 700; color: var(--navy); }
.about ul li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 19px; height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23edb21e'%3E%3Cellipse cx='7' cy='9' rx='2' ry='2.6'/%3E%3Cellipse cx='12' cy='7.3' rx='2' ry='2.7'/%3E%3Cellipse cx='17' cy='9' rx='2' ry='2.6'/%3E%3Cpath d='M12 11.5c-3 0-5.2 2.2-5.2 4.6 0 1.9 2.2 2.6 5.2 2.6s5.2-.7 5.2-2.6c0-2.4-2.2-4.6-5.2-4.6z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 860px) {
  .about .container { grid-template-columns: 1fr; gap: 34px; }
  .about-media img { aspect-ratio: 16 / 12; }
}

/* galeria / instagram */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid a { display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 20px rgba(3, 40, 97, 0.12); }
.gallery-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform 0.25s;
}
.gallery-grid a:hover img { transform: scale(1.06); }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* blog cards */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card time { font-size: 0.82rem; color: var(--amber-deep); font-weight: 700; margin-bottom: 8px; }
.post-card h3 { font-size: 1.1rem; line-height: 1.3; margin-bottom: 10px; }
.post-card h3 a { text-decoration: none; color: var(--navy); }
.post-card h3 a:hover { color: var(--sky-deep); }
.post-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 16px; font-weight: 500; }
.post-card .link { margin-top: auto; font-family: var(--font-display); font-weight: 700; text-decoration: none; color: var(--sky-deep); }
@media (max-width: 860px) { .posts-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-list details {
  background: var(--white);
  border-radius: 18px; padding: 4px 26px; box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700; color: var(--navy);
  padding: 19px 0; list-style: none; position: relative; padding-right: 36px; font-size: 1.03rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--amber-deep); transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--ink-soft); padding-bottom: 20px; font-weight: 500; }

/* CTA final */
.cta-final {
  background: linear-gradient(150deg, #06377a 0%, var(--navy) 60%);
  color: #fff;
  border-radius: 34px;
  padding: 64px 8%;
  text-align: center;
}
.cta-final h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-final p { opacity: 0.92; max-width: 42em; margin: 0 auto 30px; font-weight: 500; }

/* card de confiança */
.trust-box {
  background: var(--white);
  border-radius: 34px;
  padding: 58px 8%;
  text-align: center;
  box-shadow: var(--shadow);
}
.trust-box h2 { margin-bottom: 12px; }
.trust-box p { color: var(--ink-soft); font-weight: 600; max-width: 40em; margin: 0 auto 28px; }
.trust-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 14px; }
.trust-stars svg { width: 28px; height: 28px; fill: var(--amber); }

.trust-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 32px;
  text-align: left;
}
.quote-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 22px 24px;
}
.quote-card .q-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.quote-card .q-stars svg { width: 15px; height: 15px; fill: var(--amber); }
.quote-card p { color: var(--ink); font-weight: 600; font-size: 0.97rem; margin: 0 0 10px; }
.quote-card cite { font-style: normal; color: var(--ink-soft); font-size: 0.85rem; font-weight: 700; }
@media (max-width: 760px) { .trust-quotes { grid-template-columns: 1fr; } }

.stars-svg { display: inline-flex; gap: 3px; vertical-align: -3px; }
.stars-svg svg { width: 18px; height: 18px; fill: var(--amber-deep); }

/* ---------- Transições curvas entre seções ---------- */
.wave-sky, .wave-navy, .wave-cream, .wave-white { position: relative; }
.wave-sky::after, .wave-navy::after, .wave-cream::after, .wave-white::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 46px;
  transform: translateY(-100%);
  background-repeat: no-repeat; background-size: 100% 100%;
  pointer-events: none; z-index: 2;
}
.wave-sky::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath fill='%231bbdff' d='M0 46 L0 30 C360 2 1080 2 1440 30 L1440 46 Z'/%3E%3C/svg%3E");
}
.wave-navy::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath fill='%23032861' d='M0 46 L0 30 C360 2 1080 2 1440 30 L1440 46 Z'/%3E%3C/svg%3E");
}
.wave-cream::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath fill='%23fdf9f1' d='M0 46 L0 30 C360 2 1080 2 1440 30 L1440 46 Z'/%3E%3C/svg%3E");
}
.wave-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 46 L0 30 C360 2 1080 2 1440 30 L1440 46 Z'/%3E%3C/svg%3E");
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c4d6ee; padding: 56px 0 34px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 34px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 14px; }
.site-footer a { color: #c4d6ee; text-decoration: none; }
.site-footer a:hover { color: var(--amber); text-decoration: underline; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; }
.footer-brand img { width: 42px; }
.site-footer p { font-weight: 500; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.15s;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.22); text-decoration: none; }
.footer-social svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.footer-social svg.fill { fill: #fff; stroke: none; }
.site-footer .legal { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 22px; font-size: 0.85rem; color: #93aed2; }
@media (max-width: 760px) { .site-footer .cols { grid-template-columns: 1fr; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--green-wa);
  display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Páginas de artigo ---------- */
.article-hero {
  background: linear-gradient(155deg, #36c9ff 0%, var(--sky) 60%);
  padding: 26px 0 64px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 38px 38px;
}
.article-hero .breadcrumb { padding-top: 0; margin-bottom: 26px; color: rgba(3, 40, 97, 0.85); }
.article-hero .breadcrumb a { color: rgba(3, 40, 97, 0.85); }
.article-hero .meta { color: rgba(3, 40, 97, 0.85); font-weight: 700; font-size: 0.92rem; margin-bottom: 12px; }
.article-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); max-width: 21em; }
.article-hero .sub { color: rgba(3, 40, 97, 0.85); font-weight: 600; max-width: 44em; margin-top: 12px; }
.article-cover { margin: -28px auto 36px; width: min(1140px, 92%); }
.article-cover img { border-radius: 26px; box-shadow: var(--shadow-lift); width: 100%; max-height: 480px; object-fit: cover; }
.article-body { max-width: 720px; margin: 0 auto; padding-bottom: 48px; }
.article-body h2 { font-size: 1.55rem; margin: 40px 0 12px; }
.article-body h3 { font-size: 1.22rem; margin: 30px 0 10px; }
.article-body p { margin-bottom: 16px; color: #2c3e56; font-weight: 500; }
.article-body ul { margin: 0 0 16px 22px; color: #2c3e56; font-weight: 500; }
.article-body ul li { margin-bottom: 7px; }
.article-body strong { color: var(--navy); }
.article-cta { background: var(--sky-tint); border-radius: 24px; padding: 34px; margin-top: 40px; }
.article-cta h3 { margin: 0 0 8px; }
.article-cta p { margin-bottom: 20px; color: var(--ink-soft); font-weight: 600; }
.breadcrumb { font-size: 0.9rem; color: var(--ink-soft); font-weight: 700; padding-top: 22px; }
.breadcrumb a { color: var(--ink-soft); }

/* utilidades */
.center { text-align: center; }
.mt-32 { margin-top: 36px; }
