:root {
  --green-950: #002c25;
  --green-900: #003d33;
  --green-800: #075346;
  --gold: #ddb464;
  --gold-2: #f0cf83;
  --cream: #f1eee7;
  --ink: #062f28;
  --muted: #596a65;
  --line: #dedbd1;
  --white: #ffffff;
  /* Gotham e a familia oficial; Montserrat cobre a web ate os arquivos licenciados serem adicionados. */
  --font-brand: "Gotham", "Montserrat", Arial, sans-serif;
  --font-book: 400;
  --font-regular: 500;
  --font-bold: 700;
  --faq-footer-bg: linear-gradient(90deg, #00352d 0%, #00483d 68%, #2b563e 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-brand);
  font-weight: var(--font-book);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green-950);
  box-shadow: 0 0 0 3px var(--gold);
  font-size: 14px;
  font-weight: var(--font-bold);
  transform: translateY(calc(-100% - 24px));
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
li,
summary,
.btn,
.site-nav a {
  overflow-wrap: break-word;
}

.wrap {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 14%, rgba(234, 187, 93, 0.24), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(29, 125, 94, 0.28), transparent 28%),
    linear-gradient(135deg, #001f1b, var(--green-900) 55%, #03362f);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 28px 0 62px;
}

.ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
}

.hearts::before,
.hearts::after {
  content: "♥";
  position: absolute;
  color: rgba(238, 190, 95, 0.34);
  filter: blur(1px);
}

.hearts::before {
  top: 20%;
  right: 22%;
  font-size: 82px;
}

.hearts::after {
  top: 10%;
  right: 10%;
  font-size: 42px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 0.85fr) minmax(560px, 1.15fr);
  gap: clamp(36px, 5vw, 92px);
  align-items: center;
  padding-top: 42px;
}

.hero-grid > *,
.present-grid > *,
.why-grid > *,
.split > * {
  min-width: 0;
}

.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.header-menu {
  display: contents;
}

.menu-toggle {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.brand img {
  width: 180px;
  max-width: 64vw;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: var(--font-bold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  color: #082a24;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: var(--font-bold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-900);
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: var(--font-bold);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 560px;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.08;
}

h1 span {
  color: var(--gold);
}

.hero-title-line {
  display: block;
}

.hero-title .hero-title-light {
  color: var(--white);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 30px;
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: var(--font-bold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-gold {
  color: #082a24;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 24px rgba(219, 176, 91, 0.2);
}

.btn-outline {
  color: var(--white);
  border-color: var(--gold);
}

.btn-green {
  color: var(--white);
  background: var(--green-900);
}

.hero-video-stage {
  display: grid;
  min-height: 560px;
  place-items: center;
}

.hero-video {
  width: min(315px, 100%);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 2px solid rgba(241, 198, 111, 0.82);
  border-radius: 22px;
  background: #001f1a;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.38);
}

.hero-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-card {
  position: absolute;
  display: block;
  width: 295px;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.34));
}

.present {
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at 18% 40%, rgba(221, 180, 100, 0.1), transparent 28%),
    var(--cream);
}

.present-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(360px, 0.85fr) minmax(430px, 1fr);
  gap: clamp(32px, 4vw, 76px);
  align-items: center;
}

.present h2,
.why h2,
.steps h2,
.form-panel h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.present p,
.features p,
.why p,
.steps p,
.form-panel p,
.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.mini-card-wrap {
  display: flex;
  min-height: 455px;
  align-items: center;
  justify-content: center;
}

.card-carousel {
  position: relative;
  display: grid;
  width: 390px;
  min-height: 455px;
  place-items: center;
}

.carousel-track {
  position: relative;
  width: 292px;
  height: 430px;
}

.present-card {
  position: absolute;
  inset: 0;
  width: 280px;
  margin: auto;
  opacity: 0;
  transform: none;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.28));
  transition:
    opacity 360ms ease,
    transform 360ms ease;
  pointer-events: none;
}

.present-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.present-card:not(.is-active) {
  transform: translateX(26px) scale(0.94);
}

.carousel-btn {
  position: absolute;
  top: 43%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0, 61, 51, 0.16);
  border-radius: 50%;
  color: var(--green-900);
  background: rgba(241, 238, 231, 0.92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}

.carousel-prev {
  left: 6px;
}

.carousel-next {
  right: 6px;
}

.carousel-dots {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 61, 51, 0.22);
  padding: 0;
  cursor: pointer;
}

.carousel-dots .is-active {
  width: 24px;
  background: var(--green-900);
}

.mini-card-wrap {
  min-height: 455px;
}

.features article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.features article + article {
  padding-top: 20px;
}

.features span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--gold);
  font-size: 0;
}

.features span::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.features article:nth-child(1) span::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ddb464' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 38h32'/%3E%3Cpath d='M12 34h24l3-20-9 8-6-12-6 12-9-8 3 20z'/%3E%3Cpath d='M18 34l-1.5-12M24 34V18M30 34l1.5-12'/%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='24' cy='6' r='1.5'/%3E%3Ccircle cx='38' cy='10' r='1.5'/%3E%3C/svg%3E");
}

.features article:nth-child(2) span::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ddb464' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='18' width='28' height='22' rx='2'/%3E%3Cpath d='M8 18h32M24 18v22M10 27h28'/%3E%3Cpath d='M24 18c-7-1-11-4-10-8 1-4 8-3 10 8z'/%3E%3Cpath d='M24 18c7-1 11-4 10-8-1-4-8-3-10 8z'/%3E%3C/svg%3E");
}

.features article:nth-child(3) span::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ddb464' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 39S10 30.5 10 19a8 8 0 0 1 14-5.2A8 8 0 0 1 38 19c0 11.5-14 20-14 20z'/%3E%3C/svg%3E");
}

.features article:nth-child(4) span::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ddb464' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 16h28v24H10z'/%3E%3Cpath d='M14 12h20v8H14zM24 12v28M10 25h28'/%3E%3Cpath d='M17 32h14'/%3E%3C/svg%3E");
}

.features h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.features p {
  margin: 0;
  font-size: 14px;
}

.why {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background: linear-gradient(90deg, #002c25 0%, #003d33 55%, #00483d 100%);
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 38%, rgba(221, 180, 100, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(0, 38, 32, 0.98) 0%, rgba(0, 52, 44, 0.94) 42%, rgba(0, 58, 49, 0.78) 64%, rgba(0, 47, 40, 0.34) 100%);
  z-index: 1;
}

.why-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(440px, 1fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: center;
}

.why-copy {
  max-width: 520px;
}

.why p,
.form-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 20px;
  max-width: 520px;
  padding: 0;
  margin: 70px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: var(--font-bold);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps {
  display: grid;
  align-content: start;
  justify-content: center;
  justify-items: center;
  padding: 78px clamp(36px, 5vw, 88px) 72px;
  background: var(--cream);
  text-align: left;
}

.steps > * {
  width: min(100%, 780px);
}

.steps h2 {
  max-width: 780px;
}

.step-row {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 42px minmax(170px, 1fr) 42px minmax(170px, 1fr);
  gap: 10px;
  align-items: start;
  max-width: 780px;
  margin-top: 48px;
  text-align: left;
}

.step-row article {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
}

.step-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  margin: 0 0 18px;
  border-radius: 50%;
  color: var(--gold);
  background: var(--green-900);
  font-size: 42px;
}

.step-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon-whatsapp svg {
  width: 38px;
  height: 38px;
  fill: var(--gold);
  stroke: none;
}

.step-row b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin: -31px 0 20px 40px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  font-size: 12px;
}

.step-row h3 {
  width: min(100%, 180px);
  min-height: 42px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.step-row p {
  width: min(100%, 170px);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.arrow {
  align-self: start;
  padding-top: 40px;
  color: #4c5c57;
  line-height: 1;
}

.arrow svg {
  width: 42px;
  height: 24px;
  fill: none;
  stroke: #4c5c57;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px clamp(36px, 5vw, 88px) 72px;
}

.form-panel > * {
  width: min(100%, 580px);
  margin-right: auto;
  margin-left: auto;
}

/* Card visual do formulario. A integracao e o envio continuam sob controle do RD Station. */
.form-panel > .rd-form-section {
  width: min(100%, 620px);
}

.rd-form-section {
  margin: 0 auto;
}

.rd-form-card {
  isolation: isolate;
  width: 100%;
  min-width: 0;
  overflow: visible;
  border: 1px solid rgba(0, 61, 51, 0.1);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 42px);
  color: var(--ink);
  background: var(--white) !important;
  box-shadow: 0 24px 64px rgba(0, 24, 20, 0.24);
  font-family: var(--font-brand);
}

.rd-form-header {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.rd-form-card .rd-form-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.rd-form-card .rd-form-header h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-brand);
  font-size: clamp(30px, 3.3vw, 42px);
  font-weight: var(--font-bold);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.rd-form-card .rd-form-header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.rd-form-content {
  min-height: 320px;
  margin-top: 26px;
}

.rd-form-card .rd-form-privacy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.rd-form-privacy a {
  color: var(--green-900);
  font-weight: var(--font-bold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Os estilos abaixo alcancam somente os elementos injetados no container oficial. */
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 * {
  box-sizing: border-box;
  font-family: var(--font-brand);
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 form,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__form,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__fieldset {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  background: transparent !important;
  box-shadow: none !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__fieldset {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 16px !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__field,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .field {
  width: 100% !important;
  margin: 0 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 p {
  color: var(--muted) !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 label {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 7px !important;
  overflow: visible !important;
  clip: auto !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: var(--font-bold) !important;
  line-height: 1.4 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 select,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 textarea {
  display: block !important;
  width: 100% !important;
  min-height: 50px !important;
  border: 1px solid #d9e2de !important;
  border-radius: 9px !important;
  padding: 12px 14px !important;
  color: var(--ink) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .iti {
  display: block !important;
  width: 100% !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .iti input:not([type="hidden"]) {
  width: 100% !important;
  padding-left: 58px !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .iti__flag-container,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .iti__country-container {
  z-index: 2;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 textarea {
  min-height: 108px !important;
  resize: vertical;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input::placeholder,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 textarea::placeholder {
  color: #84938e !important;
  opacity: 1;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input:focus,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 select:focus,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 textarea:focus {
  outline: none !important;
  border-color: #007a5a !important;
  box-shadow: 0 0 0 3px rgba(0, 122, 90, 0.12) !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input[type="checkbox"],
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input[type="radio"] {
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 2px 8px 0 0 !important;
  padding: 0 !important;
  accent-color: #007a5a;
  box-shadow: none !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__field__option label,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .checkbox label {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 0 !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: var(--font-book) !important;
  line-height: 1.55 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__submit {
  width: 100% !important;
  margin: 8px 0 0 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 button,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input[type="submit"] {
  width: 100% !important;
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 9px !important;
  padding: 12px 18px !important;
  color: var(--white) !important;
  background: #007a5a !important;
  box-shadow: 0 12px 24px rgba(0, 122, 90, 0.18) !important;
  font: inherit !important;
  font-size: 13px !important;
  font-weight: var(--font-bold) !important;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  cursor: pointer !important;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 button:hover,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input[type="submit"]:hover {
  background: var(--green-900) !important;
  box-shadow: 0 14px 28px rgba(0, 61, 51, 0.22) !important;
  transform: translateY(-1px);
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 button:focus-visible,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input[type="submit"]:focus-visible {
  outline: 3px solid rgba(221, 180, 100, 0.72) !important;
  outline-offset: 3px;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 button:disabled,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input[type="submit"]:disabled {
  cursor: wait !important;
  opacity: 0.7;
  transform: none;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .field-error,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__field__error,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .error-message,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 [role="alert"] {
  display: block !important;
  margin: 7px 0 0 !important;
  color: #a13434 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .telefone-erro-msg {
  display: block !important;
  margin: 7px 0 0 !important;
  color: #a13434 !important;
  font-size: 12px !important;
  font-weight: var(--font-regular) !important;
  line-height: 1.45 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .telefone-invalido {
  border-color: #b94a48 !important;
  box-shadow: 0 0 0 3px rgba(185, 74, 72, 0.1) !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .telefone-campo-invalido label {
  color: #8f302f !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 [aria-invalid="true"] {
  border-color: #b94a48 !important;
  box-shadow: 0 0 0 3px rgba(185, 74, 72, 0.1) !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__label__required,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .required {
  color: #a13434 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__terms,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__privacy,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 small {
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__success,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .success-message {
  border: 1px solid rgba(0, 122, 90, 0.22) !important;
  border-radius: 10px !important;
  padding: 18px !important;
  color: var(--green-900) !important;
  background: rgba(0, 122, 90, 0.08) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .bricks-form__success p,
#formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .success-message p {
  color: var(--green-900) !important;
}

.rd-form-card.is-form-ready {
  border-color: rgba(221, 180, 100, 0.36);
}

.faq {
  color: var(--white);
  padding: 56px 0 70px;
  background: var(--faq-footer-bg);
}

.faq .eyebrow.dark {
  color: var(--gold);
}

.faq .eyebrow,
.faq-grid {
  width: min(100%, 980px);
  margin-right: auto;
  margin-left: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 180, 100, 0.26);
  border-radius: 14px;
  background: rgba(0, 31, 27, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.faq details {
  align-self: start;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  transition: background 180ms ease;
}

.faq details[open] {
  background: rgba(255, 255, 255, 0.07);
}

.faq summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 8px;
  color: var(--white);
  font-weight: var(--font-bold);
  cursor: pointer;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
  font-weight: var(--font-book);
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 900px;
  margin: 0;
  padding: 0 48px 24px 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 34px 0;
  background: var(--faq-footer-bg);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.footer p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer p a:hover {
  color: var(--gold-2);
}

.privacy-body {
  background: var(--cream);
}

.privacy-top {
  position: relative;
  overflow: hidden;
  padding: 28px 0 72px;
}

.privacy-top::after {
  content: "";
  position: absolute;
  top: 128px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(221, 180, 100, 0.3);
  border-radius: 34% 66% 62% 38%;
  transform: rotate(28deg);
  pointer-events: none;
}

.privacy-nav {
  z-index: 2;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.privacy-back {
  min-height: 46px;
  padding-right: 20px;
  padding-left: 20px;
}

.privacy-hero {
  position: relative;
  z-index: 1;
  padding-top: 94px;
}

.privacy-hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.02;
}

.privacy-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.privacy-meta span {
  border: 1px solid rgba(221, 180, 100, 0.34);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 31, 27, 0.35);
  font-size: 12px;
  font-weight: var(--font-regular);
}

.privacy-main {
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 10% 14%, rgba(221, 180, 100, 0.1), transparent 22%),
    var(--cream);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  max-width: 1240px;
}

.privacy-index {
  position: sticky;
  top: 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 24px 24px 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(0, 44, 37, 0.08);
}

.privacy-index > h2 {
  margin: 0 0 16px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.privacy-index ol {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style-position: inside;
  color: var(--gold);
  font-size: 12px;
  font-weight: var(--font-bold);
}

.privacy-index a {
  color: var(--muted);
  font-weight: var(--font-regular);
  line-height: 1.45;
  transition: color 160ms ease;
}

.privacy-index a:hover {
  color: var(--green-900);
}

.privacy-index a:focus-visible,
.privacy-back:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  scroll-margin-top: 24px;
  border: 1px solid rgba(222, 219, 209, 0.9);
  border-radius: 18px;
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 38px rgba(0, 44, 37, 0.05);
}

.privacy-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(221, 180, 100, 0.55);
  border-radius: 50%;
  color: var(--green-900);
  background: rgba(221, 180, 100, 0.12);
  font-size: 11px;
  font-weight: var(--font-bold);
}

.privacy-content article h2 {
  margin: 2px 0 12px;
  color: var(--green-900);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.privacy-content article p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.privacy-content article p + p {
  margin-top: 12px;
}

.privacy-content article a {
  color: var(--green-900);
  font-weight: var(--font-bold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid rgba(221, 180, 100, 0.5);
  border-radius: 18px;
  padding: 32px;
  background:
    radial-gradient(circle at 92% 20%, rgba(221, 180, 100, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.72);
}

.privacy-contact .eyebrow {
  margin-bottom: 10px;
}

.privacy-contact h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.privacy-contact div > p:last-child {
  max-width: 570px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.privacy-contact .btn {
  justify-self: end;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .why-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .steps {
    padding: 64px 24px;
  }

  .step-row {
    margin-right: auto;
    margin-left: auto;
  }

  .form-panel {
    padding: 64px 24px;
  }
}

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

  .hero {
    padding-bottom: 40px;
  }

  .brand {
    margin-bottom: 0;
  }

  .hero-grid {
    padding-top: 34px;
  }

  .hero-video-stage {
    min-height: 560px;
  }

  .mini-card-wrap {
    min-height: 430px;
  }

  .card-carousel {
    width: min(390px, 100%);
    min-height: 430px;
  }

  .carousel-track {
    width: 278px;
    height: 410px;
  }

  .present-card {
    width: 266px;
  }

  .why-media {
    width: 100%;
    opacity: 0.52;
  }

  .why::before {
    background: linear-gradient(90deg, rgba(0, 38, 32, 0.98), rgba(0, 57, 48, 0.86));
  }

  .check-list {
    margin-top: 0;
  }

  .steps,
  .form-panel {
    padding: 58px 24px;
  }

}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .site-header .brand img {
    width: 160px;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 86px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(221, 180, 100, 0.7);
    border-radius: 12px;
    padding: 0 12px;
    color: var(--white);
    background: rgba(0, 31, 27, 0.42);
    font: inherit;
    font-size: 12px;
    font-weight: var(--font-bold);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .menu-toggle-icon {
    position: relative;
    display: grid;
    width: 18px;
    height: 14px;
    align-content: space-between;
  }

  .menu-toggle-icon > span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-menu {
    display: none;
    grid-column: 1 / -1;
    gap: 12px;
    width: 100%;
    border: 1px solid rgba(221, 180, 100, 0.28);
    border-radius: 14px;
    padding: 8px;
    background: rgba(0, 31, 27, 0.78);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  }

  .header-menu.is-open {
    display: grid;
  }

  .site-nav {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }

  .site-nav a {
    min-height: 44px;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a {
    font-size: 12px;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    text-align: center;
  }

  .present h2,
  .why h2,
  .steps h2,
  .form-panel h2 {
    font-size: clamp(30px, 9vw, 36px);
  }

  .hero-video-stage {
    min-height: 0;
    padding-top: 14px;
  }

  .hero-video {
    width: min(300px, 100%);
  }

  .present,
  .why,
  .faq {
    padding: 54px 0;
  }

  .present-grid {
    gap: 32px;
  }

  .mini-card-wrap {
    min-height: 385px;
  }

  .card-carousel {
    width: min(100%, 340px);
    min-height: 385px;
  }

  .carousel-track {
    width: 238px;
    height: 352px;
  }

  .present-card {
    width: 226px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 32px;
  }

  .steps {
    justify-items: stretch;
    padding: 54px 14px 58px;
  }

  .steps > * {
    width: 100%;
  }

  .steps .eyebrow {
    margin-bottom: 12px;
  }

  .step-row article {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 6px;
    align-items: start;
    border: 1px solid rgba(0, 61, 51, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 14px;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(0, 44, 37, 0.07);
  }

  .step-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .step-icon svg {
    width: 27px;
    height: 27px;
  }

  .step-icon-whatsapp svg {
    width: 25px;
    height: 25px;
  }

  .step-row b {
    position: absolute;
    top: 55px;
    left: 55px;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid var(--white);
    color: var(--green-900);
    background: var(--gold);
    box-shadow: 0 5px 12px rgba(0, 44, 37, 0.2);
    font-size: 10px;
  }

  .step-row h3 {
    grid-column: 2;
    width: 100%;
    min-height: 0;
    margin: 2px 0 0;
    font-size: 16px;
    line-height: 1.22;
  }

  .step-row p {
    grid-column: 2;
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }

  .arrow {
    display: none;
  }

}

@media (hover: none) {
  .btn:hover {
    transform: none;
  }
}

@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;
  }
}

@media (max-width: 980px) {
  .privacy-main {
    padding-top: 58px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-index {
    position: static;
  }

  .privacy-index ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
  }

  .privacy-contact {
    grid-template-columns: 1fr;
  }

  .privacy-contact .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .privacy-top {
    padding: 22px 0 54px;
  }

  .privacy-nav {
    gap: 18px;
  }

  .privacy-back {
    width: 100%;
  }

  .privacy-hero {
    padding-top: 52px;
  }

  .privacy-hero h1 {
    font-size: 38px;
  }

  .privacy-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .privacy-meta {
    display: grid;
  }

  .privacy-meta span {
    width: fit-content;
  }

  .privacy-main {
    padding: 44px 0 54px;
  }

  .privacy-index {
    padding: 20px;
  }

  .privacy-index ol {
    grid-template-columns: 1fr;
  }

  .privacy-content article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .privacy-number {
    width: 38px;
    height: 38px;
  }

  .privacy-content article h2 {
    font-size: 22px;
  }

  .privacy-contact {
    padding: 24px 20px;
  }

  .privacy-contact h2 {
    font-size: 26px;
  }

  .privacy-contact .btn {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 24px);
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  h1,
  .privacy-hero h1 {
    font-size: clamp(32px, 10vw, 36px);
  }

  .btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .hero-video {
    width: min(280px, 100%);
  }

  .faq summary {
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }

  .faq details p {
    padding-right: 12px;
  }
}

@media (max-width: 640px) {
  .form-panel {
    padding: 48px 14px;
  }

  .rd-form-card {
    border-radius: 18px;
    padding: 26px 18px;
  }

  .rd-form-header {
    padding-bottom: 22px;
  }

  .rd-form-card .rd-form-header h2 {
    font-size: 30px;
  }

  .rd-form-content {
    margin-top: 22px;
  }

  .rd-form-card .rd-form-privacy {
    text-align: left;
  }

  #formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
  #formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 select,
  #formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 textarea {
    min-height: 48px !important;
    font-size: 16px !important;
  }

  #formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 .iti input:not([type="hidden"]) {
    padding-left: 54px !important;
  }

  #formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 button,
  #formulario-lp-dia-do-amigo-fd95ecaef3b39d3c6ac1 input[type="submit"] {
    min-height: 50px !important;
  }
}

@media (max-width: 380px) {
  .form-panel {
    padding-right: 10px;
    padding-left: 10px;
  }

  .rd-form-card {
    padding-right: 14px;
    padding-left: 14px;
  }
}
