/* ==========================================================================
   VetSoft Web — modern landing styles
   Paleta herdada da marca: verde (Vet) + azul (Soft) + magenta de destaque
   ========================================================================== */

:root {
  /* Brand */
  --green: #00a05e;
  --green-700: #008a5e;
  --green-900: #265c54;
  --green-300: #42ca6e;
  --blue: #00548d;
  --blue-700: #003e6b;
  --magenta: #ae3d7f;
  --whatsapp: #25d366;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, #008a5e 0%, #00a05e 45%, #00548d 100%);
  --grad-soft: linear-gradient(120deg, #00a05e 0%, #00548d 100%);

  /* Neutrals */
  --ink: #16241f;
  --body: #46555f;
  --muted: #6b7884;
  --line: #e6ebe9;
  --bg: #ffffff;
  --bg-soft: #f4f8f6;
  --bg-soft-2: #eef4f1;
  --white: #ffffff;

  /* System */
  --radius: 16px;
  --radius-lg: 26px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(16, 44, 33, .06);
  --shadow: 0 14px 40px rgba(16, 44, 33, .10);
  --shadow-lg: 0 30px 70px rgba(16, 44, 33, .16);
  --ring: 0 0 0 4px rgba(0, 160, 94, .18);
  --container: 1180px;
  --ease: cubic-bezier(.16, .84, .44, 1);
  --font: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Poppins", var(--font);
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }
[hidden] { display: none !important; }

/* ----- Lightbox (ampliar imagens de exemplo) ---------------------------- */
.hero-media img, .segment-media img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(15, 33, 27, .86); cursor: zoom-out;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; animation: lb-fade .2s var(--ease); }
.lightbox img {
  max-width: min(96vw, 1400px); max-height: 92vh; width: auto; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); cursor: default;
}
.lightbox-close {
  position: absolute; top: 1.1rem; right: 1.1rem; width: 46px; height: 46px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .16); color: #fff; transition: background .2s;
}
.lightbox-close svg { width: 26px; height: 26px; }
.lightbox-close:hover { background: rgba(255, 255, 255, .3); }
body.lightbox-open { overflow: hidden; }
@keyframes lb-fade { from { opacity: 0 } to { opacity: 1 } }
@media (prefers-reduced-motion: reduce) { .lightbox.open { animation: none } }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  --bg: var(--green);
  display: inline-flex; align-items: center; gap: .5em;
  padding: .72em 1.35em; border-radius: 999px;
  font-weight: 700; font-size: .98rem; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: .95em 1.7em; font-size: 1.05rem; }

.btn-primary { background: var(--grad-soft); color: #fff; box-shadow: 0 10px 24px rgba(0, 138, 94, .28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 138, 94, .38); }

.btn-outline { border: 2px solid var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); }

.btn-ghost { color: var(--ink); padding-inline: .9em; }
.btn-ghost:hover { color: var(--green-700); }

.btn-light { background: #fff; color: var(--green-700); box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { border: 2px solid rgba(255, 255, 255, .55); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { transform: translateY(-2px); filter: brightness(1.03); }

/* ----- Header ----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.brand img { height: 40px; width: auto; }
.brand { margin-right: auto; }

.primary-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .35rem; }
.nav-link {
  display: inline-flex; align-items: center; gap: .25em;
  padding: .55em .8em; border-radius: 10px;
  font-weight: 600; font-size: .96rem; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-link svg { width: 1em; height: 1em; opacity: .6; transition: transform .25s; }
.nav-link:hover { color: var(--green-700); background: var(--bg-soft); }

.nav-item.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 5;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .nav-link svg,
.has-dropdown.open .nav-link svg { transform: rotate(180deg); }
.dropdown a {
  display: block; padding: .6em .8em; border-radius: 9px;
  font-size: .94rem; font-weight: 600; color: var(--body);
  transition: background .18s, color .18s;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--green-700); }

.header-actions { display: flex; align-items: center; gap: .6rem; margin-left: .5rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; color: var(--ink); position: relative; }
.nav-toggle svg { width: 26px; height: 26px; position: absolute; inset: 0; margin: auto; transition: opacity .2s, transform .2s; }
.nav-toggle svg:nth-child(2) { opacity: 0; transform: rotate(-90deg); }

/* ----- Hero ------------------------------------------------------------- */
.hero { position: relative; padding: clamp(3rem, 6vw, 6rem) 0 clamp(3.5rem, 7vw, 7rem); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 90%;
  background:
    radial-gradient(45% 55% at 78% 18%, rgba(0, 138, 94, .16), transparent 60%),
    radial-gradient(40% 50% at 12% 8%, rgba(0, 84, 141, .14), transparent 60%),
    radial-gradient(35% 45% at 60% 0%, rgba(174, 61, 127, .10), transparent 60%);
  filter: blur(8px); z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: .5em; white-space: nowrap;
  padding: .45em 1em; border-radius: 999px; font-size: .82rem; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--green-700); background: var(--bg-soft-2); border: 1px solid var(--line);
}
.badge svg { width: 1.1em; height: 1.1em; flex: 0 0 auto; }
.hero-copy h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); margin: 1rem 0 .9rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); }
.hero-focus { margin-top: .9rem; color: var(--muted); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-cta.center { justify-content: center; }
.hero-note { display: inline-flex; align-items: center; gap: .5em; margin-top: 1.1rem; font-size: .92rem; color: var(--muted); font-weight: 600; }
.hero-note svg { width: 1.05em; height: 1.05em; color: var(--green); }
.hero-note.light { color: rgba(255, 255, 255, .9); }
.hero-note.light svg { color: #fff; }

.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: 8% -6% -10% 6%;
  background: var(--grad-brand); filter: blur(38px); opacity: .18; border-radius: 40px; z-index: -1;
}
.hero-media img { filter: drop-shadow(0 30px 50px rgba(16, 44, 33, .18)); }

/* ----- Section scaffolding --------------------------------------------- */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 760px; margin: 0 auto clamp(2.2rem, 4vw, 3.5rem); text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .8rem; }
.section-head p { font-size: 1.08rem; color: var(--muted); }

/* ----- Feature grid ----------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg-soft-2); color: var(--green-700); margin-bottom: 1rem;
  transition: background .3s, color .3s, transform .3s;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card:hover .feature-icon { background: var(--grad-soft); color: #fff; transform: rotate(-4deg) scale(1.04); }
.feature-card h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.feature-card p { font-size: .95rem; color: var(--muted); line-height: 1.55; }

/* ----- Why grid --------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2rem; }
.why-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  flex: 0 0 auto; display: inline-grid; place-items: center; width: 50px; height: 50px;
  border-radius: 14px; color: #fff; background: var(--grad-soft);
}
.why-icon svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.why-card p { font-size: .95rem; color: var(--muted); }

/* ----- Segments --------------------------------------------------------- */
.segments { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5.5rem); }
.segment { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.tag {
  display: inline-flex; padding: .4em .9em; border-radius: 999px; font-size: .8rem; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; color: var(--magenta);
  background: rgba(174, 61, 127, .1);
}
.segment-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 1rem 0 .8rem; }
.segment-list { display: grid; gap: 1rem; margin: 1.6rem 0; }
.segment-list li { display: flex; gap: .9rem; align-items: flex-start; }
.li-check {
  flex: 0 0 auto; display: inline-grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; background: rgba(0, 160, 94, .12); color: var(--green-700);
}
.li-check svg { width: 16px; height: 16px; }
.segment-list strong { display: block; color: var(--ink); font-family: var(--display); font-size: 1.02rem; }
.segment-list span span, .segment-list div span { color: var(--muted); font-size: .95rem; }
.segment-note { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; font-style: italic; }
.segment-media { position: relative; }
.segment-media::before {
  content: ""; position: absolute; inset: 6%; border-radius: 30px;
  background: var(--grad-brand); opacity: .1; filter: blur(30px); z-index: -1;
}
.segment-media img { border-radius: var(--radius-lg); }
.segment.is-reverse .segment-media { order: -1; }

/* ----- Testimonials ----------------------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem 1.8rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-mark { position: absolute; top: 1.3rem; right: 1.5rem; color: var(--green-300); opacity: .35; }
.quote-mark svg { width: 42px; height: 42px; }
.stars { display: flex; gap: 3px; color: #f5b50a; margin-bottom: .9rem; }
.stars svg { width: 18px; height: 18px; }
.testimonial-card blockquote { color: var(--body); font-size: .98rem; line-height: 1.6; flex: 1; }
.testimonial-card figcaption { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.avatar {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: #fff; background: var(--grad-soft); font-size: .95rem;
}
.who { display: flex; flex-direction: column; line-height: 1.3; }
.who strong { color: var(--ink); font-size: .98rem; }
.who span { color: var(--muted); font-size: .85rem; }

/* ----- FAQ -------------------------------------------------------------- */
.faq { max-width: 880px; }
.faq-list { display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-q svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--green-700); transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-a > p { overflow: hidden; padding: 0 1.5rem; color: var(--muted); font-size: .98rem; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 1.4rem; }
.faq-a a { color: var(--green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.faq-a a:hover { color: var(--green); }

/* ----- CTA band --------------------------------------------------------- */
.cta-band { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--grad-brand); overflow: hidden; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .08); filter: blur(8px);
}
.cta-band::before { width: 420px; height: 420px; top: -180px; right: -120px; }
.cta-band::after { width: 340px; height: 340px; bottom: -180px; left: -100px; }
.cta-inner { position: relative; text-align: center; max-width: 760px; margin-inline: auto; color: #fff; }
.cta-kicker { font-weight: 700; color: rgba(255, 255, 255, .92); margin-bottom: 1rem; }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-inner .lead { color: rgba(255, 255, 255, .92); margin-top: .8rem; }

/* ----- Footer ----------------------------------------------------------- */
.site-footer { background: #0f211b; color: #c7d4cd; padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 36px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .94rem; color: #9fb1a8; max-width: 42ch; margin-bottom: 1.4rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .94rem; color: #b6c6bd; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .88rem; color: #8ba096; }
.footer-bottom a:hover { color: #fff; }

/* ----- WhatsApp float --------------------------------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: var(--whatsapp); color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .25s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ----- Reveal animation ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease) var(--d, 0ms), transform .7s var(--ease) var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
}

/* ----- Responsive ------------------------------------------------------- */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .primary-nav, .header-actions { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-media { max-width: 560px; margin-inline: auto; order: -1; }
  .segment, .segment.is-reverse { grid-template-columns: 1fr; }
  .segment-media, .segment.is-reverse .segment-media { order: -1; max-width: 560px; margin-inline: auto; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* Mobile nav drawer */
  .site-header.scrolled, body.nav-open .site-header { background: rgba(255, 255, 255, .96); backdrop-filter: blur(14px); }
  .primary-nav {
    position: fixed; inset: 76px 0 auto 0; display: block;
    background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 1rem; max-height: calc(100dvh - 76px); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  }
  body.nav-open .primary-nav { transform: none; opacity: 1; pointer-events: auto; }
  body.nav-open .header-actions { display: flex; position: fixed; inset: auto 0 0 0; padding: 1rem; background: #fff; box-shadow: 0 -2px 12px rgba(0,0,0,.06); justify-content: center; z-index: 61; }
  body.nav-open .header-actions .btn { flex: 1; justify-content: center; max-width: 220px; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-link { justify-content: space-between; width: 100%; padding: .85em 1em; font-size: 1.02rem; }
  .nav-item.has-dropdown { position: static; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--bg-soft-2); border-radius: 0; margin: 0 0 .4rem .9rem; padding: .2rem 0;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 420px; }
  .nav-toggle[aria-expanded="true"] svg:nth-child(1) { opacity: 0; transform: rotate(90deg); }
  .nav-toggle[aria-expanded="true"] svg:nth-child(2) { opacity: 1; transform: rotate(0); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .feature-card { padding: 1.3rem 1.1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta .btn, .cta-inner .btn { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pricing page (planos.html)
   ========================================================================== */
.center { text-align: center; }
.hero-pricing { padding-bottom: clamp(2rem, 4vw, 3rem); }
.hero-pricing-inner { max-width: 820px; margin-inline: auto; text-align: center; }
.hero-pricing-inner h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 .9rem; }
.hero-pricing-inner .hero-note { justify-content: center; }

/* Plans grid */
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.plan-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-card.is-free { border-color: var(--green-300); background: linear-gradient(180deg, #f3fbf6, #fff); }
.plan-card.is-popular { border: 2px solid transparent; background:
  linear-gradient(#fff, #fff) padding-box,
  var(--grad-soft) border-box; box-shadow: var(--shadow); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-soft); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; padding: .35em .9em; border-radius: 999px;
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.plan-name { font-size: 1.05rem; color: var(--green-700); margin-bottom: .8rem; }
.plan-price { display: flex; align-items: baseline; gap: .12em; color: var(--ink); }
.plan-price .cur { font-family: var(--display); font-weight: 600; font-size: 1.1rem; align-self: flex-start; margin-top: .35em; }
.plan-price .amount { font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.plan-price .per { color: var(--muted); font-weight: 600; font-size: .95rem; }
.plan-period { display: inline-block; margin-top: .3rem; font-size: .85rem; color: var(--muted); font-weight: 600; }
.plan-specs { display: grid; gap: .7rem; margin: 1.3rem 0 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.plan-specs li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--body); }
.plan-specs svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--green-700); margin-top: .15em; }
.plan-cta { width: 100%; justify-content: center; margin-top: auto; }
.plan-foot { text-align: center; max-width: 620px; margin: 2.2rem auto 0; color: var(--muted); font-size: .94rem; }
.plan-note { text-align: center; max-width: 680px; margin: 1.8rem auto 0; color: var(--muted); font-size: .88rem; }
.spec-star { color: var(--magenta); font-weight: 700; }

/* Included — fluxo em colunas independentes, espaçamento vertical uniforme */
.included-grid { columns: 3; column-gap: 2.4rem; max-width: 1000px; margin-inline: auto; }
.included-grid li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .96rem; color: var(--body);
  break-inside: avoid; margin-bottom: 1rem;
}
.included-grid li:last-child { margin-bottom: 0; }
.included-grid .li-check { width: 24px; height: 24px; }
.included-grid .li-check svg { width: 14px; height: 14px; }

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.addon-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.addon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.addon-card .feature-icon { background: rgba(174, 61, 127, .1); color: var(--magenta); }
.addon-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.addon-card p { font-size: .94rem; color: var(--muted); flex: 1; }
.addon-price { display: flex; align-items: baseline; gap: .4em; margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.addon-price strong { font-family: var(--display); font-size: 1.7rem; color: var(--ink); }
.addon-price span { color: var(--muted); font-size: .88rem; }

/* Migration band */
.migration-band {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--shadow);
}
.migration-band .tag { background: rgba(255, 255, 255, .18); color: #fff; }
.migration-band h2 { color: #fff; margin: 1rem 0 .8rem; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.migration-band p { color: rgba(255, 255, 255, .92); font-size: .98rem; }
.migration-note { margin-top: 1rem; font-weight: 600; }

/* Segment emoji (indicado para) */
.seg-emoji { flex: 0 0 auto; display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--bg-soft-2); font-size: 1.6rem; }

/* Two-up testimonials */
.testimonial-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-inline: auto; }

/* Mural de depoimentos (masonry via colunas) */
.depo-grid { columns: 3; column-gap: 1.4rem; max-width: 1120px; margin-inline: auto; }
.depo-grid .testimonial-card { break-inside: avoid; margin-bottom: 1.4rem; }
@media (max-width: 960px) { .depo-grid { columns: 2; } }
@media (max-width: 620px) { .depo-grid { columns: 1; max-width: 560px; } }

/* Link "ver todos" abaixo dos depoimentos da home */
.testimonials-more { text-align: center; margin-top: 2.4rem; }

/* ==========================================================================
   Fale Conosco / Contatos (contatos.html)
   ========================================================================== */
.contato-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 920px; margin-inline: auto; }
.contato-card {
  display: flex; flex-direction: column; gap: .8rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contato-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contato-card > .tag { align-self: flex-start; }
.contato-head { display: flex; align-items: center; gap: .8rem; }
.contato-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); color: #fff; flex: 0 0 auto; }
.contato-icon svg { width: 24px; height: 24px; }
.contato-head h2 { font-size: 1.35rem; }
.contato-card > p { color: var(--muted); font-size: .96rem; }
.contato-meta { display: grid; gap: .6rem; margin: .4rem 0 .6rem; }
.contato-meta li { display: flex; align-items: center; gap: .6rem; font-size: 1rem; color: var(--ink); font-weight: 600; }
.contato-meta svg { width: 20px; height: 20px; color: var(--green-700); flex: 0 0 auto; }
.contato-meta a:hover { color: var(--green-700); }
.contato-card .btn-whatsapp { margin-top: auto; align-self: flex-start; }

/* Central de Ajuda band */
.ajuda-band {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--shadow);
}
.ajuda-band .tag { background: rgba(255, 255, 255, .18); color: #fff; }
.ajuda-band h2 { color: #fff; margin: 1rem 0 .8rem; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.ajuda-band p { color: rgba(255, 255, 255, .92); font-size: .98rem; }
.ajuda-actions { display: flex; flex-direction: column; gap: .8rem; }

/* Social */
.social-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 1.6rem; }
.social-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.social-btn {
  display: inline-flex; align-items: center; gap: .6em; padding: .7em 1.4em; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-weight: 700; font-size: .96rem;
  transition: border-color .2s, color .2s, transform .2s;
}
.social-btn svg { width: 1.3em; height: 1.3em; }
.social-btn:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); }

@media (max-width: 720px) {
  .contato-grid { grid-template-columns: 1fr; max-width: 480px; }
  .ajuda-band { grid-template-columns: 1fr; text-align: center; }
  .ajuda-band .tag { margin-inline: auto; }
  .ajuda-actions { align-items: stretch; }
}

@media (max-width: 1080px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 960px) {
  .included-grid { columns: 2; }
  .migration-band { grid-template-columns: 1fr; text-align: center; }
  .migration-band .tag { margin-inline: auto; }
  .testimonial-grid.two { grid-template-columns: 1fr; max-width: 620px; }
}
@media (max-width: 620px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .included-grid { columns: 1; }
}

/* ==========================================================================
   Schedule / Agendar Apresentação (agendar.html)
   ========================================================================== */
.hero-schedule { padding-top: clamp(2.5rem, 5vw, 4.5rem); }
/* Contatos: hero compacto para os cards aparecerem sem rolar */
.hero-contatos { padding-top: clamp(1.25rem, 3vw, 2.25rem); padding-bottom: clamp(.5rem, 1.5vw, 1.25rem); }
.hero-contatos .lead { margin-top: .6rem; }
.hero-contatos + .section { padding-top: clamp(1.5rem, 3vw, 2rem); }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.schedule-intro h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 1rem 0 1.1rem; }
.schedule-intro .lead { margin-bottom: .9rem; }
.schedule-intro .badge svg { width: 1em; height: 1em; opacity: .8; }

.aside-list { display: grid; gap: 1rem; margin: 1.8rem 0; }
.aside-list li { display: flex; gap: .9rem; align-items: flex-start; }
.aside-icon { flex: 0 0 auto; display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft-2); color: var(--green-700); }
.aside-icon svg { width: 22px; height: 22px; }
.aside-list li span:last-child { color: var(--body); font-size: .98rem; }

.aside-whatsapp {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm);
}
.aside-whatsapp strong { display: block; font-family: var(--display); color: var(--ink); }
.aside-whatsapp span { font-size: .9rem; color: var(--muted); }

/* Form card */
.form-wrap { position: relative; }
.form-wrap::before { content: ""; position: absolute; inset: 6% -4% -6% 4%; background: var(--grad-brand); opacity: .1; filter: blur(34px); border-radius: 34px; z-index: -1; }
.demo-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow);
}
.form-head h2 { font-size: 1.5rem; margin-bottom: .4rem; }
.form-head p { color: var(--muted); font-size: .96rem; margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; grid-column: 1 / -1; }
.form-field.is-half { grid-column: span 1; }
.form-field label { font-size: .9rem; font-weight: 700; color: var(--ink); font-family: var(--display); }
.form-field .req { color: var(--magenta); }
.form-field input, .form-field select {
  width: 100%; padding: .8em .95em; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7884' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9em center; background-size: 18px; padding-right: 2.6em;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: var(--ring); }
.form-field.has-error input, .form-field.has-error select { border-color: #d6455d; background: #fdf2f4; }
.field-error { font-size: .82rem; color: #d6455d; min-height: 0; }
.form-field.has-error .field-error { min-height: 1em; }
.form-consent { font-size: .84rem; color: var(--muted); margin: 1.2rem 0 1.4rem; }
.form-submit { width: 100%; justify-content: center; }
.form-submit:disabled { opacity: .65; pointer-events: none; }

.form-success { text-align: center; padding: 1rem 0; }
.success-icon { display: inline-grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: rgba(0,160,94,.12); color: var(--green-700); margin-bottom: 1rem; }
.success-icon svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.form-success p { color: var(--muted); margin-bottom: 1.4rem; }

/* ==========================================================================
   Segment pages (Ideal para: hospital / clínica / autônomo / pet shop)
   ========================================================================== */
.hero-segment { padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
/* Hero sem imagem → centralizado */
.hero-centered-inner { max-width: 820px; margin-inline: auto; text-align: center; }
.hero-centered-inner .hero-cta { justify-content: center; }
.hero-centered-inner .hero-note { justify-content: center; }
.seg-cards { margin-top: 0; grid-template-columns: repeat(var(--cols, 4), 1fr); }
.seg-cards .feature-card { display: flex; flex-direction: column; }
/* Esta regra vem depois do bloco responsivo do .feature-grid e o sobrescreve
   (mesma especificidade) — repetir os breakpoints aqui. */
@media (max-width: 1080px) { .seg-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .seg-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .seg-cards { grid-template-columns: 1fr; } }
.card-link {
  margin-top: auto; padding-top: .9rem; align-self: flex-start;
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 700; font-size: .92rem; color: var(--green-700); transition: gap .2s;
}
.card-link svg { width: 1.05em; height: 1.05em; }
.card-link:hover { gap: .7em; color: var(--green); }
.benefit-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0 0; }
.benefit-pill {
  display: inline-flex; align-items: center; padding: .45em 1em; border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--green-900);
  background: var(--bg-soft-2); border: 1px solid var(--line);
}
/* Depoimento centralizado dentro de uma seção */
.testimonial-card.inline-quote {
  max-width: 760px; margin: 2.6rem auto 0; text-align: center; align-items: center;
}
.inline-quote .stars { justify-content: center; }
.inline-quote .quote-mark { left: 50%; right: auto; transform: translateX(-50%); top: 1.1rem; }
.inline-quote blockquote { font-size: 1.05rem; }
.inline-quote figcaption { justify-content: center; border-top: 0; padding-top: .8rem; margin-top: 1rem; }
.inline-quote .who { text-align: center; }

/* ==========================================================================
   Contratação (contratacao.html)
   ========================================================================== */
.contract-section { padding-top: 0; }
/* DEV: caixa temporária com o payload serializado (remover depois) */
.dev-dump {
  margin: 0; max-height: 420px; overflow: auto;
  background: #0f211b; color: #b6f0c8; border: 1px dashed var(--green-300); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem; line-height: 1.5; white-space: pre-wrap; word-break: break-word;
}
.contract-wrap { max-width: 860px; margin-inline: auto; }
.contract-form { display: grid; gap: 1.4rem; }
.contract-body { display: grid; gap: 1.4rem; }

/* CEP lookup spinner */
.form-field.is-loading { position: relative; }
.form-field.is-loading::after {
  content: ""; position: absolute; right: .85em; bottom: .9em; width: 16px; height: 16px;
  border: 2px solid var(--line); border-top-color: var(--green); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .form-field.is-loading::after { animation: none; } }

/* Gate CPF/CNPJ */
.gate-card { max-width: 560px; margin-inline: auto; }
.gate-hint { color: var(--muted); margin-bottom: 1.2rem; }
.gate-row { display: flex; align-items: flex-end; gap: .9rem; }
.gate-row .form-field { flex: 1; margin: 0; }
.gate-row .btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 520px) {
  .gate-row { flex-direction: column; align-items: stretch; }
  .gate-row .btn { width: 100%; justify-content: center; }
}
.form-section {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
}
.form-section-title { display: flex; align-items: center; gap: .7rem; font-size: 1.3rem; margin-bottom: 1.4rem; }
.form-section-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); color: #fff; flex: 0 0 auto; }
.form-section-icon svg { width: 21px; height: 21px; }
.form-field.is-third { grid-column: span 1; }
.contract-form .form-grid { grid-template-columns: repeat(2, 1fr); }
.contract-form .form-section:has(.is-third) .form-grid { grid-template-columns: repeat(6, 1fr); }
.contract-form .form-section:has(.is-third) .form-field { grid-column: 1 / -1; }
.contract-form .form-section:has(.is-third) .form-field.is-half { grid-column: span 3; }
.contract-form .form-section:has(.is-third) .form-field.is-third { grid-column: span 2; }

/* Plano summary */
.plan-summary { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; display: grid; gap: .6rem; }
.plan-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .96rem; }
.plan-summary-row span { color: var(--muted); }
.plan-summary-row strong { font-family: var(--display); color: var(--ink); }
.plan-summary-row code { font-size: .82rem; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: .15em .5em; }
.free-tag { color: var(--green-700) !important; }

/* Complementos */
.complementos { border: 0; padding: 0; margin: 1.6rem 0 0; }
.complementos legend { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.05rem; padding: 0; }
.complementos-hint { color: var(--muted); font-size: .92rem; margin: .3rem 0 1rem; }
.complemento {
  display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; border: 1.5px solid var(--line);
  border-radius: 12px; margin-bottom: .6rem; cursor: pointer; transition: border-color .2s, background .2s;
}
.complemento:hover { border-color: var(--green-300); }
.complemento input { position: absolute; opacity: 0; width: 0; height: 0; }
.complemento-check { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--line); color: #fff; flex: 0 0 auto; transition: background .2s, border-color .2s; }
.complemento-check svg { width: 15px; height: 15px; opacity: 0; transition: opacity .15s; }
.complemento input:checked ~ .complemento-check { background: var(--green); border-color: var(--green); }
.complemento input:checked ~ .complemento-check svg { opacity: 1; }
.complemento input:focus-visible ~ .complemento-check { box-shadow: var(--ring); }
.complemento input:checked ~ .complemento-name { color: var(--ink); font-weight: 700; }
.complemento-name { flex: 1; color: var(--body); font-size: .97rem; }
.complemento-price { font-family: var(--display); font-weight: 700; color: var(--green-700); font-size: .92rem; white-space: nowrap; }
.complementos-total { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.complementos-total span { color: var(--muted); font-weight: 600; }
.complementos-total strong { font-family: var(--display); font-size: 1.3rem; color: var(--ink); }

/* Sócios */
.socios { display: grid; gap: 1.2rem; margin-top: 1rem; }
.socio-block { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.socio-title { font-size: 1.05rem; margin-bottom: 1rem; color: var(--green-700); }

/* Termos */
.terms-caption { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; font-style: italic; }
.terms-box {
  max-height: 320px; overflow-y: auto; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; background: var(--bg-soft); font-size: .88rem; line-height: 1.6; color: var(--body);
}
.terms-box h4 { font-size: .92rem; margin: 1.1rem 0 .4rem; color: var(--ink); }
.terms-box h4:first-child { margin-top: 0; }
.terms-box p { margin-bottom: .6rem; }
.terms-accept { flex-direction: row !important; align-items: center; gap: .7rem; margin-top: 1.2rem; cursor: pointer; }
.terms-accept input { position: absolute; opacity: 0; width: 0; height: 0; }
.terms-accept input:checked ~ .complemento-check { background: var(--green); border-color: var(--green); }
.terms-accept input:checked ~ .complemento-check svg { opacity: 1; }
.terms-accept .complemento-check { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--line); color: #fff; flex: 0 0 auto; }
.terms-accept .complemento-check svg { width: 15px; height: 15px; opacity: 0; }
.terms-accept span:last-child { font-size: .95rem; color: var(--body); }
.has-error.terms-accept .complemento-check { border-color: #d6455d; }

@media (max-width: 620px) {
  .contract-form .form-grid,
  .contract-form .form-section:has(.is-third) .form-grid { grid-template-columns: 1fr; }
  .contract-form .form-section:has(.is-third) .form-field.is-half,
  .contract-form .form-section:has(.is-third) .form-field.is-third { grid-column: 1 / -1; }
  .complemento { flex-wrap: wrap; }
}

@media (max-width: 960px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .form-wrap { max-width: 620px; }
}
@media (max-width: 480px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field.is-half { grid-column: 1 / -1; }
}
