/* Lazo — Audacious purple system
 * White base. Plum tones throughout. Bold typography.
 */

:root {
  /* Surfaces */
  --paper:        #ffffff;
  --paper-soft:   #fafafa;
  --plum-wash:    #f0e8f7;     /* very light lavender wash */
  --plum-mist:    #e6daf1;
  --plum-haze:    #d4c3e6;

  /* Brand plums */
  --plum-soft:    #b292ce;     /* light lavender — accents */
  --plum:         #6b4d8a;     /* primary plum — buttons, links */
  --plum-deep:    #4f3868;     /* deeper plum — hover, dark blocks */
  --plum-ink:     #2a1f3d;     /* near-black plum — text, dark sections */
  --plum-void:    #15102a;     /* deepest — final CTA */

  /* Neutral */
  --ink:          #1a1422;     /* foreground text */
  --ink-soft:     #5a4e6b;     /* secondary */
  --ink-muted:    #8c8197;     /* tertiary, captions */
  --line:         rgba(42, 31, 61, 0.08);
  --line-strong:  rgba(42, 31, 61, 0.16);

  /* Type */
  --display:      "Bricolage Grotesque", "Geist", ui-sans-serif, system-ui, sans-serif;
  --sans:         "Geist", ui-sans-serif, system-ui, sans-serif;
  --serif:        "Instrument Serif", Georgia, serif;
  --mono:         "Geist Mono", ui-monospace, "SF Mono", monospace;

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(42, 31, 61, 0.04), 0 2px 4px rgba(42, 31, 61, 0.04);
  --shadow-md:    0 10px 30px -8px rgba(42, 31, 61, 0.18);
  --shadow-lg:    0 30px 80px -30px rgba(42, 31, 61, 0.4);
  --shadow-plum:  0 30px 80px -30px rgba(107, 77, 138, 0.55);

  /* Easing */
  --ease-out:     cubic-bezier(.22, 1, .36, 1);
  --ease-soft:    cubic-bezier(.4, 0, .2, 1);
}

html.dark {
  --paper:        #15102a;
  --paper-soft:   #1d1733;
  --plum-wash:    #2a1f3d;
  --plum-mist:    #34284a;
  --plum-haze:    #3f3057;
  --ink:          #f5eefa;
  --ink-soft:     #cdbede;
  --ink-muted:    #8a7fa0;
  --line:         rgba(255, 255, 255, 0.06);
  --line-strong:  rgba(255, 255, 255, 0.14);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "kern", "liga";
  overflow-x: hidden;
}

::selection { background: var(--plum); color: var(--paper); }

/* Display type */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--ink);
  font-variation-settings: "wdth" 100, "opsz" 96;
}
.display-tight { line-height: 0.88; letter-spacing: -0.045em; }
.display-wide { font-variation-settings: "wdth" 110, "opsz" 96; }
.display-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* Eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum);
}
.eyebrow-muted { color: var(--ink-muted); }
.eyebrow-light { color: rgba(255, 255, 255, 0.7); }

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* Sections */
.section { padding-block: clamp(80px, 10vw, 160px); }
.section-tight { padding-block: clamp(60px, 7vw, 100px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary {
  background: var(--plum-ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--plum-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-plum);
}
.btn-plum {
  background: linear-gradient(180deg, var(--plum-soft), var(--plum));
  color: var(--paper);
  border-color: var(--plum-deep);
  box-shadow: 0 14px 36px -10px rgba(107, 77, 138, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-plum:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px -10px rgba(107, 77, 138, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--plum-wash);
  border-color: var(--plum-soft);
  color: var(--plum-deep);
}
/* Shine sweep */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }

/* Link with underline grow */
.link {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  transition: gap .35s var(--ease-out), color .35s;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--plum);
  transform-origin: left center;
  transform: scaleX(0.3);
  transition: transform .45s var(--ease-out);
}
.link:hover { gap: 14px; color: var(--plum); }
.link:hover::after { transform: scaleX(1); }

/* Card */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .35s, box-shadow .5s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--plum-soft);
  box-shadow: var(--shadow-md);
}

/* Photo */
.photo {
  position: relative;
  background: var(--plum-wash);
  overflow: hidden;
}
.photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

/* Fade up on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-late { transition-delay: .12s; }
.fade-up-later { transition-delay: .24s; }
.fade-up-latest { transition-delay: .36s; }

/* Parallax holder */
.parallax {
  will-change: transform;
}

/* Marquee */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  animation: marquee 40s linear infinite;
  gap: 64px;
  padding-right: 64px;
  align-items: center;
}

/* Tabular numbers */
.tnum { font-variant-numeric: tabular-nums; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, box-shadow .35s;
}
html.dark .nav {
  background: rgba(21, 16, 42, 0.78);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -16px rgba(42, 31, 61, 0.25);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  animation: navBrandIn .6s var(--ease-out);
}
.nav-brand img {
  width: 44px; height: 44px; border-radius: 10px;
}
.nav-brand-text {
  display: inline-block;
  transform-origin: left center;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.nav.is-scrolled .nav-brand-text {
  opacity: 0;
  transform: translateX(-16px) scale(0.6);
}
@keyframes navBrandIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.nav-cta {
  padding: 9px 18px;
  font-size: 13px;
}
/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .2s var(--ease-out);
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-link {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}
.nav-link:hover { color: var(--ink); }
.nav-link[data-active="true"] { color: var(--ink); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link[data-active="true"]::after {
  transform: scaleX(1);
}

/* Mobile nav — collapse links into a hamburger panel */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px clamp(20px, 5vw, 40px) 24px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px -24px rgba(42, 31, 61, 0.35);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  }
  html.dark .nav-links {
    background: rgba(21, 16, 42, 0.97);
  }
  .nav.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    font-size: 17px;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav-link::after { display: none; }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 18px 0 0;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Big numbers section */
.big-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 10vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--plum);
  font-variation-settings: "wdth" 100, "opsz" 96;
}

/* Pull quote */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pullquote em {
  color: var(--plum);
}

/* Avatar ring */
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--plum-soft);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--plum-mist); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--plum-soft); }

/* Decorative SVG blobs */
.blob {
  position: absolute;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.7;
  z-index: 0;
}

/* Theme toggle button */
.icon-btn {
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.icon-btn:hover {
  color: var(--plum);
  border-color: var(--plum-soft);
}

/* ----------------------------------------- */
/* Shared FOOTER */
/* ----------------------------------------- */
.footer {
  padding-block: clamp(56px, 7vw, 100px);
  background: white;
  border-top: 1px solid var(--line);
}
.footer-grid {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
}
@media (min-width: 800px) {
  .footer-grid {
  align-items: start; grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-brand { margin-top: 0; }
.footer-brand .display {
  margin-top: 0;
  font-size: 30px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  transition: color .3s;
}
.footer-col a:hover { color: var(--plum); }
.footer-base {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.footer-base a { color: var(--ink-muted); text-decoration: none; }
.footer-base a:hover { color: var(--ink); }

/* ----------------------------------------- */
/* Account-choice modal */
/* ----------------------------------------- */
.lazo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 16, 42, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.lazo-modal-backdrop[hidden] {
  display: none;
}
.lazo-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lazo-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 60px 120px -20px rgba(21, 16, 42, 0.45);
  overflow: hidden;
  transform: translateY(16px) scale(0.985);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.lazo-modal-backdrop.is-open .lazo-modal {
  transform: translateY(0) scale(1);
}
.lazo-modal-head {
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) 8px;
}
.lazo-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .25s;
  z-index: 2;
}
.lazo-modal-close:hover {
  background: var(--plum-wash);
  border-color: var(--plum);
  color: var(--plum);
  transform: rotate(90deg);
}
.lazo-modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
}
.lazo-modal-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--plum-soft);
}
.lazo-modal h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
}
.lazo-modal h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.lazo-modal-sub {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
}
.lazo-modal-choices {
  padding: clamp(20px, 3vw, 32px) clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .lazo-modal-choices { grid-template-columns: 1fr 1fr; }
}
.lazo-choice {
  position: relative;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .35s var(--ease-out);
  overflow: hidden;
}
.lazo-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 100% 0%, var(--plum-mist), transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.lazo-choice:hover {
  border-color: var(--plum-soft);
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -24px rgba(107, 77, 138, 0.35);
}
.lazo-choice:hover::before { opacity: 1; }
.lazo-choice .ic {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--plum-wash);
  color: var(--plum);
  display: grid; place-items: center;
  transition: all .35s;
}
.lazo-choice:hover .ic {
  background: var(--plum);
  color: white;
  transform: scale(1.05);
}
.lazo-choice .h {
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: left;
}
.lazo-choice .h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.lazo-choice .d {
  position: relative;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: left;
}
.lazo-choice .arrow {
  position: relative;
  align-self: flex-end;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  display: grid; place-items: center;
  transition: all .35s var(--ease-out);
}
.lazo-choice:hover .arrow {
  background: var(--plum);
  border-color: var(--plum);
  color: white;
  transform: translateX(2px);
}
.lazo-modal-foot {
  padding: 16px clamp(28px, 4vw, 44px);
  background: var(--plum-wash);
  border-top: 1px solid var(--plum-mist);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; align-items: center;
}
.lazo-modal-foot a {
  color: var(--plum);
  font-weight: 500;
  text-decoration: none;
}
.lazo-modal-foot a:hover { text-decoration: underline; }

/* ----------------------------------------- */
/* "Com dúvidas?" CTA card — leads to FAQ page */
/* ----------------------------------------- */
.duvidas-section {
  padding-block: clamp(60px, 8vw, 110px);
}
.duvidas-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 52px);
  border-radius: 28px;
  background:
    radial-gradient(120% 100% at 100% 0%, var(--plum-mist) 0%, transparent 50%),
    linear-gradient(160deg, var(--plum-wash) 0%, var(--paper) 100%);
  border: 1px solid var(--plum-mist);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: all .5s var(--ease-out);
}
@media (min-width: 800px) {
  .duvidas-card { grid-template-columns: 1.4fr auto; }
}
.duvidas-card::before {
  content: "?";
  position: absolute;
  top: -32px; right: -10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(180px, 22vw, 320px);
  line-height: 1;
  color: var(--plum-soft);
  opacity: 0.18;
  pointer-events: none;
  transition: all .8s var(--ease-out);
}
.duvidas-card:hover {
  transform: translateY(-3px);
  border-color: var(--plum-soft);
  box-shadow: 0 30px 70px -30px rgba(107, 77, 138, 0.35);
}
.duvidas-card:hover::before {
  opacity: 0.28;
  transform: rotate(-6deg) translateY(-4px);
}
.duvidas-text { position: relative; }
.duvidas-text h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 16ch;
}
.duvidas-text h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.duvidas-text p {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}
.duvidas-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 26px;
  background: var(--plum-ink);
  color: white;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  align-self: end;
  justify-self: start;
  transition: all .35s var(--ease-out);
  box-shadow: 0 14px 36px -14px rgba(42, 31, 61, 0.5);
}
@media (min-width: 800px) {
  .duvidas-cta { justify-self: end; align-self: center; }
}
.duvidas-card:hover .duvidas-cta {
  background: var(--plum);
  padding-right: 28px;
}
.duvidas-cta .duvidas-arrow {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease-out);
}
.duvidas-card:hover .duvidas-cta .duvidas-arrow {
  background: var(--plum-soft);
  color: var(--plum-ink);
  transform: translateX(4px);
}
