/* ============================================================
   Prontu! — Base, tipografia, layout, componentes, header/footer
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ----- Tipografia ----- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  color: var(--fg-primary);
  letter-spacing: var(--ls-tight);
  line-height: 1.12;
  margin: 0;
  text-wrap: pretty;
}
h1 { font-size: clamp(48px, 6.5vw, 88px); letter-spacing: var(--ls-display); line-height: 1.04; }
h2 { font-size: clamp(36px, 4.5vw, 56px); }
h3 { font-size: clamp(24px, 2.5vw, 32px); }
h4 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-tight);
  line-height: 1.3;
  margin: 0;
}
p { margin: 0; text-wrap: pretty; }

.lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-secondary);
  max-width: 620px;
}
.brand-bang {
  color: var(--dourado-premium);
  font-style: italic;
  font-weight: var(--fw-bold);
}

/* Eyebrow com filete dourado */
.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--azul-profundo);
}
.eyebrow-rule::before,
.eyebrow-rule::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--dourado-premium);
}
.eyebrow-rule.on-dark { color: var(--dourado-400); }

.gold-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--dourado-premium);
  border: 0;
  margin: 0;
}

/* ----- Container ----- */
.container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ----- Botões ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t-base) var(--ease-out);
  letter-spacing: 0.01em;
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

.btn--primary {
  background: var(--azul-profundo);
  color: var(--fg-on-dark);
}
.btn--primary:hover {
  background: var(--azul-800);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--dourado-premium);
  color: var(--azul-profundo);
  font-weight: var(--fw-semibold);
}
.btn--accent:hover {
  background: var(--dourado-400);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--azul-profundo);
  border: 1px solid var(--azul-profundo);
}
.btn--ghost:hover {
  background: var(--azul-profundo);
  color: var(--fg-on-dark);
}

.btn--ghost-light {
  background: transparent;
  color: var(--fg-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--fg-on-dark);
}

.btn--link {
  background: transparent;
  color: var(--azul-profundo);
  border-radius: 0;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
.btn--link:hover {
  border-bottom-color: var(--dourado-premium);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--t-base) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--neutral-200);
  box-shadow: var(--shadow-xs);
}
.site-header__inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--t-base);
}
.site-header.is-scrolled .site-header__inner { padding: 14px 32px; }

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-brand__wordmark {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: var(--fw-medium);
  color: var(--azul-profundo);
  letter-spacing: var(--ls-display);
  line-height: 1;
  transition: font-size var(--t-base) var(--ease-out);
}
.site-header.is-scrolled .site-brand__wordmark { font-size: 30px; }
.site-brand__divider {
  width: 1px;
  height: 30px;
  background: var(--dourado-premium);
  transition: height var(--t-base);
}
.site-header.is-scrolled .site-brand__divider { height: 24px; }
.site-brand__tagline {
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azul-profundo);
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav__link {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--azul-profundo);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--t-base);
}
.site-nav__link:hover,
.site-nav__link.is-active {
  border-bottom-color: var(--dourado-premium);
}

.site-nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--azul-profundo);
  padding: 8px;
}

/* ----- Section base ----- */
.section {
  padding: 120px 0;
}
.section--cream { background: var(--bege-papel); }
.section--white { background: var(--branco); }
.section--dark {
  background: var(--azul-profundo);
  color: var(--fg-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3 {
  color: var(--fg-on-dark);
}

.section__head {
  margin-bottom: 56px;
}
.section__head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__head--center .eyebrow-rule { justify-content: center; }
.section__title {
  margin-top: 16px;
  max-width: 760px;
}
.section__title em {
  font-style: italic;
  color: var(--dourado-700);
}
.section--dark .section__title em { color: var(--dourado-400); }

/* ----- Hero ----- */
.hero {
  position: relative;
  background: var(--bege-papel);
  padding: 60px 0 120px;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  right: -8%;
  top: -10%;
  height: 130%;
  width: auto;
  opacity: 0.05;
  pointer-events: none;
}
.hero__title {
  max-width: 900px;
  margin: 24px 0 0;
}
.hero__title .accent { color: var(--dourado-premium); }
.hero__title em { color: var(--azul-profundo); font-style: italic; }
.hero__lede {
  margin: 28px 0 40px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust strip */
.trust-strip {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-strip__label {
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--neutral-500);
}
.trust-strip__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--neutral-500);
  letter-spacing: var(--ls-tight);
}
a.trust-strip__name--link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-base), border-color var(--t-base);
}
a.trust-strip__name--link:hover {
  color: var(--azul-profundo);
  border-bottom-color: var(--dourado-premium);
}

/* ----- Grid ----- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--split-5-7 { grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.grid--split-5-6 { grid-template-columns: 5fr 6fr; gap: 80px; align-items: start; }

/* ----- Cards ----- */
.card {
  background: var(--branco);
  border: 1px solid var(--neutral-200);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--bege-papel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado-premium);
  margin-bottom: 22px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--fw-regular);
  color: var(--azul-profundo);
  margin: 0 0 10px;
  line-height: 1.15;
}
.card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-600);
}

/* Service card variant */
.service-card {
  background: var(--branco);
  color: var(--azul-profundo);
  border: 1px solid var(--neutral-200);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  background: var(--azul-profundo);
  color: var(--fg-on-dark);
  border-color: var(--azul-profundo);
  border-top: 4px solid var(--dourado-premium);
}
.service-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--dourado-premium);
  color: var(--azul-profundo);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.service-card__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dourado-700);
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}
.service-card--featured .service-card__index { color: var(--dourado-300); }
.service-card__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--fw-regular);
  margin: 0 0 14px;
  line-height: 1.15;
}
.service-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-600);
  margin-bottom: 22px;
}
.service-card--featured .service-card__body { color: rgba(255, 255, 255, 0.78); }
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--neutral-700);
}
.service-card--featured .service-card__list li { color: rgba(255, 255, 255, 0.92); }
.service-card__list svg {
  color: var(--dourado-premium);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-card__cta { margin-top: auto; align-self: flex-start; }

/* ----- Testimonials ----- */
.testimonial {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.testimonial__mark {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  line-height: 1;
  color: var(--dourado-premium);
  opacity: 0.14;
  font-style: italic;
  pointer-events: none;
}
.testimonial__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  margin: 22px 0 36px;
  color: var(--fg-on-dark);
}
.testimonial__author {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--fg-on-dark);
}
.testimonial__role {
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--dourado-400);
}
.testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.testimonial__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all var(--t-base);
}
.testimonial__dot.is-active {
  width: 24px;
  background: var(--dourado-premium);
}

/* ----- Founder story ----- */
.portrait {
  position: relative;
}
.portrait__frame {
  aspect-ratio: 4 / 5;
  background: var(--neutral-200);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.portrait__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait__offset {
  position: absolute;
  inset: 0;
  border: 1px solid var(--dourado-premium);
  border-radius: var(--r-md);
  transform: translate(16px, 16px);
  z-index: -1;
}

.pull-quote {
  padding-left: 24px;
  border-left: 2px solid var(--dourado-premium);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--azul-profundo);
  margin: 28px 0;
}

.prose p + p { margin-top: 14px; }
.prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral-700);
}

/* ----- Form ----- */
.form-card {
  background: var(--branco);
  border: 1px solid var(--neutral-200);
  border-top: 4px solid var(--dourado-premium);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.field__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azul-profundo);
  font-weight: var(--fw-semibold);
}
.field__input,
.field__textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--r-md);
  background: var(--branco);
  color: var(--azul-profundo);
  outline: none;
  width: 100%;
  transition: all var(--t-fast);
}
.field__textarea {
  resize: vertical;
  min-height: 110px;
}
.field__input:focus,
.field__textarea:focus {
  border-color: var(--azul-profundo);
  box-shadow: 0 0 0 3px rgba(13, 34, 63, 0.10);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact-info__row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--azul-profundo);
  font-size: 15px;
}
.contact-info__row svg { color: var(--dourado-premium); }

/* ----- Footer ----- */
.site-footer {
  background: var(--azul-900);
  color: var(--fg-on-dark);
  padding: 80px 0 36px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.site-footer__brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: var(--ls-tight);
}
.site-footer__about {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}
.site-footer__col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--dourado-400);
  margin: 0 0 16px;
  font-weight: var(--fw-medium);
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color var(--t-base);
}
.site-footer__col a:hover { color: var(--fg-on-dark); }
.site-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__bottom .sep { color: var(--dourado-premium); margin: 0 4px; }

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--azul-profundo);
  color: var(--fg-on-dark);
  border-radius: var(--r-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--fg-on-dark);
  max-width: 640px;
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--fg-on-dark-2);
  max-width: 540px;
  margin-bottom: 32px;
}
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ----- Page hero (interno, mais enxuto) ----- */
.page-hero {
  background: var(--bege-papel);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--neutral-200);
  position: relative;
  overflow: hidden;
}
.page-hero__title {
  margin-top: 16px;
  max-width: 820px;
}
.page-hero__lede { margin-top: 24px; }

/* ----- Stat row ----- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat__value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: var(--fw-regular);
  color: var(--azul-profundo);
  line-height: 1;
  letter-spacing: var(--ls-display);
}
.stat__value .accent { color: var(--dourado-premium); }
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--neutral-600);
  line-height: 1.5;
  max-width: 220px;
}

/* ----- FAQ ----- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--neutral-200);
  padding: 28px 0;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--azul-profundo);
  font-weight: var(--fw-regular);
  line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dourado-premium);
  font-weight: var(--fw-regular);
  transition: transform var(--t-base) var(--ease-out);
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  margin-top: 16px;
  color: var(--neutral-600);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

/* ----- Process steps ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--dourado-premium);
  font-style: italic;
  font-weight: var(--fw-bold);
  line-height: 1;
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--azul-profundo);
  margin: 0 0 10px;
  font-weight: var(--fw-regular);
}
.step__body {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ----- Helpers ----- */
.center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.flow > * + * { margin-top: 24px; }

/* ----- Responsivo ----- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--split-5-7,
  .grid--split-5-6 { grid-template-columns: 1fr; gap: 48px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 32px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .site-header__inner { padding: 16px 20px !important; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bege-papel);
    border-bottom: 1px solid var(--neutral-200);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-sm);
  }
  .site-nav__toggle { display: inline-flex; }
  .site-brand__tagline { display: none; }
  .site-brand__divider { display: none; }
  .grid--4,
  .grid--3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip { gap: 20px; }
  .cta-banner { padding: 40px 24px; }
  .form-card { padding: 28px 20px; }
}

/* ----- Animação de entrada ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 420ms var(--ease-out); }

/* ----- Botão flutuante WhatsApp ----- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.wa-float:hover {
  background: #1FBA59;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 4px 8px rgba(0, 0, 0, 0.14);
}
.wa-float:focus-visible {
  outline: 3px solid var(--dourado-premium);
  outline-offset: 3px;
}
.wa-float svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.wa-float__label {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }
  .wa-float__label { display: none; }
}
