:root {
  --cvets-primary: #a7ceca;
  --cvets-primary-soft: #dcefeb;
  --cvets-primary-light: #edf7f5;
  --cvets-primary-dark: #527976;
  --cvets-primary-deep: #355b58;

  --cvets-cream: #fff9ef;
  --cvets-yellow: #f4dda0;
  --cvets-coral: #eab9aa;
  --cvets-lilac: #e2ddef;

  --cvets-text: #29423f;
  --cvets-text-soft: #667b78;
  --cvets-border: #d8e6e3;
  --cvets-background: #f7faf9;
  --cvets-white: #ffffff;

  --cvets-shadow-soft: 0 10px 34px rgba(41, 66, 63, 0.08);
  --cvets-shadow: 0 18px 50px rgba(41, 66, 63, 0.12);
  --cvets-shadow-strong: 0 24px 70px rgba(41, 66, 63, 0.17);

  --cvets-radius-small: 12px;
  --cvets-radius: 22px;
  --cvets-radius-large: 34px;

  --cvets-container: 1220px;
  --cvets-font-body: "Nunito Sans", "Segoe UI", Arial, Helvetica, sans-serif;
  --cvets-font-heading: "Fredoka", "Avenir Next Rounded", "Arial Rounded MT Bold", sans-serif;
}

::selection {
  color: #fff;
  background: var(--cvets-primary-dark);
}

html {
  scroll-padding-top: 108px;
}

body {
  color: var(--cvets-text);
  background:
    radial-gradient(circle at 8% 4%, rgba(167, 206, 202, 0.08), transparent 24%),
    var(--cvets-background);
  font-family: var(--cvets-font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

main {
  min-height: 55vh;
}

a {
  text-underline-offset: 3px;
}

button,
a,
input,
select,
textarea,
summary {
  outline-color: var(--cvets-primary-dark);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(82, 121, 118, 0.28);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--cvets-container));
}

.section {
  padding: clamp(72px, 8vw, 108px) 0;
}

.eyebrow {
  position: relative;
  margin-bottom: 14px;
  padding-left: 27px;
  color: var(--cvets-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--cvets-coral);
  content: "";
  transform: translateY(-50%);
}

h1,
h2,
h3 {
  color: var(--cvets-text);
  font-family: var(--cvets-font-heading);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.45rem, 5.2vw, 5rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  line-height: 1.08;
}

h3 {
  line-height: 1.18;
}

p {
  color: var(--cvets-text-soft);
}

.skip-link {
  color: var(--cvets-text);
  box-shadow: var(--cvets-shadow);
}

/* Botões */

.button {
  min-height: 50px;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--cvets-primary-deep);
  box-shadow: 0 12px 28px rgba(53, 91, 88, 0.2);
}

.button--primary:hover {
  background: #294e4b;
  box-shadow: 0 15px 34px rgba(53, 91, 88, 0.27);
}

.button--secondary {
  color: var(--cvets-primary-deep);
  border-color: rgba(82, 121, 118, 0.12);
  background: var(--cvets-primary-light);
}

.button--secondary:hover {
  background: var(--cvets-primary-soft);
}

.button--light {
  color: var(--cvets-primary-deep);
  background: #fff;
  box-shadow: var(--cvets-shadow-soft);
}

.button--ghost {
  color: var(--cvets-primary-deep);
  border-color: rgba(82, 121, 118, 0.28);
  background: rgba(255, 255, 255, 0.62);
}

/* Cabeçalho */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar {
  color: rgba(255, 255, 255, 0.88);
  background: var(--cvets-primary-deep);
  font-size: 0.76rem;
}

.topbar__inner {
  min-height: 35px;
  align-items: center;
  padding-block: 6px;
}

.topbar__location,
.topbar__right,
.topbar__hours,
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__location,
.topbar__phone {
  color: inherit;
  text-decoration: none;
}

.topbar__location:hover,
.topbar__phone:hover {
  color: #fff;
}

.topbar svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar__right {
  gap: 22px;
}

.header-main {
  border-bottom: 1px solid rgba(82, 121, 118, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(82, 121, 118, 0.02);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled .header-main {
  box-shadow: 0 12px 34px rgba(41, 66, 63, 0.1);
}

.header-main__inner {
  min-height: 84px;
  gap: 30px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-main__inner {
  min-height: 74px;
}

.brand {
  position: relative;
  z-index: 1201;
  flex: 0 0 auto;
}

.brand img {
  width: 146px;
  max-height: 68px;
  border-radius: 12px;
  object-fit: contain;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 132px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 25px);
}

.mobile-menu-label,
.mobile-menu-whatsapp {
  display: none;
}

.main-navigation > a:not(.button):not(.mobile-menu-whatsapp) {
  position: relative;
  padding: 29px 0 27px;
  color: var(--cvets-text);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.main-navigation > a:not(.button):not(.mobile-menu-whatsapp)::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 3px;
  border-radius: 999px;
  background: var(--cvets-coral);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.main-navigation > a:not(.button):not(.mobile-menu-whatsapp):hover,
.main-navigation > a.is-active:not(.button) {
  color: var(--cvets-primary-deep);
}

.main-navigation > a:not(.button):not(.mobile-menu-whatsapp):hover::after,
.main-navigation > a.is-active:not(.button)::after {
  right: 16%;
  left: 16%;
}

.header-cta {
  min-height: 45px;
  padding-inline: 18px;
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  position: relative;
  z-index: 1202;
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(82, 121, 118, 0.14);
  border-radius: 15px;
  background: var(--cvets-primary-light);
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--cvets-primary-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  visibility: hidden;
  border: 0;
  background: rgba(28, 47, 45, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Heros e cartões globais */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 88px) 0 clamp(66px, 8vw, 102px);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.88), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(234, 185, 170, 0.2), transparent 22%),
    linear-gradient(180deg, var(--cvets-primary-light), #fff);
}

.page-hero::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(167, 206, 202, 0.13);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 740px;
  color: var(--cvets-text-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.breadcrumb {
  align-items: center;
  margin-bottom: 30px;
  color: var(--cvets-text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--cvets-primary-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

:where(
  .quick-card,
  .content-card,
  .exam-public-card,
  .animal-home-card,
  .animal-service-card,
  .service-group-card,
  .team-public-card,
  .team-home-card,
  .structure-features-grid article,
  .contact-channel-card,
  .contact-preview-card,
  .blog-public-card,
  .about-values-grid article,
  .faq-public-item
) {
  border-color: rgba(82, 121, 118, 0.14);
  border-radius: var(--cvets-radius);
  box-shadow: var(--cvets-shadow-soft);
}

:where(
  .quick-card,
  .exam-public-card,
  .animal-home-card,
  .animal-service-card,
  .service-group-card,
  .team-public-card,
  .team-home-card,
  .contact-channel-card,
  .blog-public-card
) {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

:where(
  .quick-card,
  .exam-public-card,
  .animal-home-card,
  .animal-service-card,
  .service-group-card,
  .team-public-card,
  .team-home-card,
  .contact-channel-card,
  .blog-public-card
):hover {
  border-color: rgba(82, 121, 118, 0.24);
  box-shadow: var(--cvets-shadow);
  transform: translateY(-4px);
}

.empty-state {
  padding: clamp(38px, 6vw, 68px);
  border-color: rgba(82, 121, 118, 0.25);
  border-radius: var(--cvets-radius-large);
  background:
    radial-gradient(circle at 90% 12%, rgba(167, 206, 202, 0.22), transparent 22%),
    #fff;
}

/* Chamada antes do rodapé */

.footer-cta {
  padding: 30px 0;
  background: var(--cvets-primary);
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-cta__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 20px;
  color: var(--cvets-primary-deep);
  background: rgba(255, 255, 255, 0.56);
}

.footer-cta__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-cta__content > span {
  display: block;
  margin-bottom: 3px;
  color: var(--cvets-primary-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta__content h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
}

/* Rodapé */

.site-footer {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 92% 12%, rgba(167, 206, 202, 0.13), transparent 23%),
    var(--cvets-primary-deep);
}

.site-footer::before {
  position: absolute;
  bottom: -110px;
  left: -90px;
  width: 330px;
  height: 330px;
  border: 54px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.45fr 0.85fr 1fr 0.95fr;
  gap: clamp(30px, 4.8vw, 66px);
}

.footer-brand {
  max-width: 390px;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 18px;
  text-decoration: none;
}

.footer-logo {
  width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17, 36, 34, 0.18);
}

.footer-brand p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-column h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column a,
.footer-link-button,
.footer-back-to-top {
  display: block;
  width: fit-content;
  margin: 9px 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-link-button:hover,
.footer-back-to-top:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-hours {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
}

.footer-back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding: 23px 0;
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

/* WhatsApp flutuante */

.whatsapp-float {
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 8px 16px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: #208a60;
  box-shadow: 0 18px 42px rgba(25, 92, 66, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(25, 92, 66, 0.36);
}

.whatsapp-float__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-float__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float__text {
  display: grid;
  line-height: 1.08;
}

.whatsapp-float__text small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 700;
}

.whatsapp-float__text strong {
  font-size: 0.9rem;
}

/* Cookies */

.cookie-banner {
  right: auto;
  bottom: 20px;
  left: 20px;
  width: min(calc(100% - 40px), 490px);
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(82, 121, 118, 0.16);
  border-radius: 24px;
  box-shadow: var(--cvets-shadow-strong);
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px;
}

.cookie-banner__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--cvets-primary-deep);
  background: var(--cvets-primary-light);
}

.cookie-banner__icon svg,
.cookie-modal__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner__text > span,
.cookie-modal__heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--cvets-primary-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner__text > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cvets-text);
  font-size: 1.04rem;
}

.cookie-banner p {
  margin-bottom: 8px;
  color: var(--cvets-text-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--cvets-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.cookie-banner__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 2px;
}

.cookie-banner__actions .button {
  min-height: 44px;
  padding: 10px 13px;
  font-size: 0.78rem;
}

.cookie-text-button {
  grid-column: 1 / -1;
  padding: 5px;
  border: 0;
  color: var(--cvets-text-soft);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-modal {
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal__backdrop {
  background: rgba(29, 47, 45, 0.65);
  backdrop-filter: blur(5px);
}

.cookie-modal__dialog {
  width: min(100%, 620px);
  max-height: calc(100dvh - 40px);
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(82, 121, 118, 0.12);
  border-radius: 26px;
  box-shadow: var(--cvets-shadow-strong);
}

.cookie-modal__heading {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  margin-bottom: 24px;
  padding-right: 42px;
}

.cookie-modal__heading h2 {
  margin-bottom: 5px;
  font-size: 1.65rem;
}

.cookie-modal__heading p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-modal__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  color: var(--cvets-primary-deep);
  background: var(--cvets-primary-light);
}

.cookie-modal__close {
  top: 18px;
  right: 18px;
  color: var(--cvets-primary-deep);
}

.cookie-option {
  min-height: 86px;
  margin: 11px 0;
  padding: 17px 18px;
  border-color: rgba(82, 121, 118, 0.15);
  border-radius: 16px;
  background: var(--cvets-background);
  cursor: pointer;
}

.cookie-option p {
  max-width: 410px;
}

.cookie-option__fixed {
  color: var(--cvets-primary-dark);
  font-size: 0.73rem;
  font-weight: 900;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-switch > span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #cbd8d6;
  transition: background 160ms ease;
}

.cookie-switch > span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(41, 66, 63, 0.18);
  content: "";
  transition: transform 160ms ease;
}

.cookie-switch input:checked + span {
  background: var(--cvets-primary-dark);
}

.cookie-switch input:checked + span::after {
  transform: translateX(20px);
}

.cookie-switch input:focus-visible + span {
  outline: 3px solid rgba(82, 121, 118, 0.25);
  outline-offset: 3px;
}

.cookie-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.cookie-modal__footer a {
  color: var(--cvets-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

/* Tablet e menu móvel */

@media (max-width: 1060px) {
  .topbar {
    display: none;
  }

  .header-main__inner,
  .site-header.is-scrolled .header-main__inner {
    min-height: 76px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 128px;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 1100;
    display: flex;
    visibility: hidden;
    width: min(88vw, 390px);
    height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 105px 28px 32px;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 92% 8%, rgba(167, 206, 202, 0.24), transparent 22%),
      #fff;
    box-shadow: -24px 0 70px rgba(29, 47, 45, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 220ms ease,
      opacity 180ms ease,
      visibility 220ms ease;
  }

  .main-navigation.is-open {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu-label {
    display: block;
    margin-bottom: 15px;
    color: var(--cvets-primary-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .main-navigation > a:not(.button):not(.mobile-menu-whatsapp) {
    padding: 13px 0;
    border-bottom: 1px solid var(--cvets-border);
    font-size: 1rem;
  }

  .main-navigation > a:not(.button):not(.mobile-menu-whatsapp)::after {
    display: none;
  }

  .main-navigation > a.is-active:not(.button) {
    color: var(--cvets-primary-deep);
  }

  .main-navigation > a.is-active:not(.button)::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--cvets-coral);
    content: "";
  }

  .header-cta {
    width: 100%;
    margin-top: 22px;
  }

  .mobile-menu-whatsapp {
    display: block;
    margin-top: 10px;
    padding: 12px;
    color: #208a60;
    font-size: 0.88rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

/* Celular */

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(calc(100% - 30px), var(--cvets-container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .page-hero {
    padding: 48px 0 68px;
  }

  .page-hero::after {
    width: 190px;
    height: 190px;
  }

  .breadcrumb {
    margin-bottom: 24px;
  }

  .footer-cta {
    padding: 28px 0;
  }

  .footer-cta__inner {
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }

  .footer-cta__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .footer-cta__icon svg {
    width: 28px;
    height: 28px;
  }

  .footer-cta__inner > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-grid,
  .footer-column:last-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 42px;
  }

  .whatsapp-float {
    right: 13px;
    bottom: 13px;
    min-height: 52px;
    padding: 7px;
  }

  .whatsapp-float__icon {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float__text {
    display: none;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }

  .cookie-banner__content {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 18px;
  }

  .cookie-banner__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-text-button {
    grid-column: auto;
  }

  .cookie-modal {
    padding: 10px;
  }

  .cookie-modal__dialog {
    max-height: calc(100dvh - 20px);
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .cookie-modal__heading {
    grid-template-columns: 46px 1fr;
    padding-right: 36px;
  }

  .cookie-modal__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .cookie-modal__heading h2 {
    font-size: 1.4rem;
  }

  .cookie-option {
    gap: 18px;
    padding: 15px;
  }

  .cookie-option__fixed {
    max-width: 76px;
    white-space: normal;
    text-align: right;
  }

  .cookie-modal__footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .cookie-modal__footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* V12.4 — logo transparente no cabeçalho */
.brand img {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}


/* V12.5 — garante o fechamento real do banner e do modal de cookies */
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* V14.1 — tipografia uniforme em todos os sistemas operacionais */
html {
  font-family: var(--cvets-font-body);
}

body {
  font-family: var(--cvets-font-body);
  font-optical-sizing: auto;
  font-synthesis: none;
}

h1,
h2,
h3,
.main-navigation,
.button,
.home-hero__content,
.internal-hero__content {
  font-family: var(--cvets-font-heading);
}

h1,
h2,
h3 {
  font-style: normal;
}


/* V14.2 — fonte arredondada uniforme, próxima ao visual original */
h1,
h2,
h3,
.main-navigation,
.button,
.mobile-menu-whatsapp,
.home-quick-card strong,
.footer-cta__content h2 {
  font-family: var(--cvets-font-heading);
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.035em;
}

.main-navigation,
.button,
.mobile-menu-whatsapp,
.home-quick-card strong {
  font-weight: 600;
}

.home-hero--video .home-hero__content h1,
.internal-hero__content h1,
.article-public-hero h1 {
  font-weight: 700;
  letter-spacing: -0.04em;
}


/* V14.3 — recupera o verde mais suave nos títulos principais */
.internal-hero__content h1,
.article-public-hero h1,
.page-hero h1 {
  color: var(--cvets-primary-dark);
}
