.elementor-2997 .elementor-element.elementor-element-e20edaa{--display:flex;}.elementor-2997 .elementor-element.elementor-element-b6f5b4e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2997 .elementor-element.elementor-element-4918afd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2997 .elementor-element.elementor-element-e39e40a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b7cf775 */:root {
  --primary: #6a2c5a;
  --secondary: #1ea537;
  --secondary-hover: #15802b;
  --dark-gray: #666666;
  --light-gray: #f4f4f4;
  --text-gray: #4b5563;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header.post-header {
    display: none !important;
}

body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  background-color: var(--white);
  color: var(--dark-gray);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.app-header{
    display: none !important;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Component: Button --- */
.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
}

/* --- Header --- */
.app-header {
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
}

.logo-icon {
  color: var(--white);
  padding: 0.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark-gray);
}

/* --- Hero Section --- */
.hero-section {
  padding: 3rem 0;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }
  .hero-wrapper {
    flex-direction: row;
  }
}

.hero-image-col, .hero-content-col {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-image-col, .hero-content-col {
    width: 50%;
  }
}

.hero-image-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-circle-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  transition: transform 0.6s ease;
}

.lampImage{
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  transition: transform 0.6s ease;
  z-index: 55;
}

.hero-image-col:hover .hero-circle-wrapper {
  transform: scale(1.3) rotate(90deg);
}

.hero-image-col:hover .lampImage {
  transform: rotate(-15deg);
  z-index: 55;
}

.hero-circle-wrapper img,
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lampImage {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -50px;
    left: 0px;
}

.lampBright {
    height: 75px;
    width: 100px;
    position: absolute;
    top: 11px;
    left: 295px;
    z-index: 60;
    opacity: 0;
    transition: transform 0.6s ease;
}

.hero-image-col:hover .lampBright{
  opacity: 1;
}

@media (min-width: 768px) {
  .hero-circle-wrapper {
    width: 24rem;
    height: 24rem;
  }
}

.hero-bg-circle {
    position: absolute;
    top: 23px;
    left: 24px;
}

.hero-ring {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 55;
}

.hero-overlay {
  position: absolute;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-gradient {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(to top right, transparent, white);
  opacity: 0.2;
  border-radius: 50%;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #621C4E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 22px; }
}

.hero-text {
  color: var(--text-gray);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.6;
}

.hero-content-col button {
    background-color: #008409;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    border-radius: 16px;
    padding: 12px 40px;
}
.hero-content-col button:hover {
    background-color: #621C4E;
}

@media (min-width: 768px) {
  .hero-text { font-size: 16px; }
}

/* --- Info Bar --- */
.infobar-section {
  background-color: #6f6f6f;
  color: var(--white);
  padding: 4rem 0;
}

.infobar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .infobar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.infobar-item {
  display: flex;
  gap: 1rem;
  position: relative;
}

.elementor-2997 .elementor-element.elementor-element-b6f5b4e {
    background-color: #6f6f6f;
}

.infobar-section:hover .infobar-title{
  transform: scale(1.05);
}

.infobar-section:hover .icon-box-white{
  transform: scale(1.05);
}

.infobar-section:hover .icon-wrapper{
  transform: scale(1.05);
}

.icon-wrapper {
  flex-shrink: 0;
  padding-top: 0.25rem;
  position: absolute;
  top: -5px;
  left: 0px;
  transition: transform 0.6s ease;
}

.icon-box-white {
  color: #6f6f6f;
  padding: 0.25rem;
  border-radius: 0.125rem;
  display: inline-flex;
  transition: transform 0.6s ease;
}

.infobar-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.2;
  margin-left: 85px;
  transition: transform 0.6s ease;
}

.infobar-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #e5e5e5;
}

.infobar-text + .infobar-text {
  margin-top: 0.5rem;
}

/* --- Who Can Use --- */
.who-section {
  padding: 5rem 0;
}

.who-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .who-wrapper {
    flex-direction: row;
  }
}

.who-content, .who-image {
  width: 100%;
}

.who-content button {
    background-color: #008409;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    border-radius: 16px;
    padding: 12px 40px;
}

.who-content button:hover {
    background-color: #621C4E;
}


@media (min-width: 768px) {
  .who-content, .who-image {
    width: 50%;
  }
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.who-subtitle {
  font-weight: 700;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 1rem;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.who-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bullet {
  color: var(--primary);
  font-weight: 700;
}

.sub-list {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  font-size: 20px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.warning-text {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.vr-image-container {
  display: flex;
  justify-content: center;
}

.vr-image-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
}

.vr-ring-dotted {
    position: absolute;
    top: 59px;
    left: 26px;
    height: 450px;
    width: 450px;
    transform-origin: 50% 50%;
    transition: transform 0.6s ease;
    display: flex;
}

.vr-circle {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vr-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vr-image-wrapper:hover .vr-ring-dotted{
  transform: scale(1.2) rotate(90deg);
}

.vr-image-wrapper:hover .vr-img{
  transform: scale(1.2);
}

.vr-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(106, 44, 90, 0.4);
  mix-blend-mode: color;
}

/* --- Benefits --- */
.benefits-section {
  padding: 3rem 0;
}

.benefits-card {
  background-color: #e0e0e0;
  border-radius: 3rem;
  overflow: hidden;
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  position: relative;
}

@media (min-width: 768px) {
  .benefits-card {
    flex-direction: row;
  }
}

.benefits-visual {
  width: 100%;
  position: relative;
  min-height: 300px;
}

@media (min-width: 768px) {
  .benefits-visual {
    width: 41.66%; /* 5/12 */
    min-height: auto;
  }
}

.benefits-curve-bg {
  position: absolute;
  inset: 0;
  display: flex;
  width: 525px;
  overflow: hidden;
}

.diamond-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-top: 5rem;
    padding-right: 2.5rem;
    right: -217px;
}

.benefits-card:hover .diamond-img-box{
  transform: scale(1.2) rotate(15deg);
}

.diamond-img-box {
  width: 350px;
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  display: flex;
  transform-origin: 50% 50%;
  transition: transform 0.6s ease;
}

.diamond-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.diamond-img.diamond-img-example1 {
    width: 85%;
    height: 100%;
    object-fit: contain;
    z-index: 10;
    position: absolute;
    top: -7px;
    left: 13px;
}

img.example-background1 {
    width: 93%;
    margin-left: 3.5%;
}

img.diamond-img.diamond-img-example2 {
    width: 85%;
    height: 100%;
    object-fit: contain;
    z-index: 10;
    position: absolute;
    top: -2px;
    left: 10px;
}

.example-background-box1{
  transition: transform 0.6s ease;
}

.example-background-box2{
  transition: transform 0.6s ease;
}

.example-item-1:hover .example-background-box1{
  transform: rotate(90deg);
}

.example-item-2:hover .example-background-box2{
  transform: rotate(90deg);
}

.benefits-content {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .benefits-content {
    width: 58.33%; /* 7/12 */
    padding: 4rem;
  }
}

.section-header-small {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-title-md {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 16px;
  color: #6C2E4F;
  margin-bottom: 2rem;
}

.bullet-lg {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}

.benefits-note {
  font-size: 16px;
  color: #6C2E4F;
  margin-bottom: 2rem;
  max-width: 28rem;
}

.benefits-content button {
    background-color: #008409;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    border-radius: 16px;
    padding: 12px 40px;
}

.benefits-content button:hover{
  background-color: #6C2E4F;
}

/* --- Examples --- */
.examples-section {
  padding: 5rem 0;
}

.centered-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .examples-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.example-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .example-item {
    flex-direction: row;
    text-align: left;
  }
}

.example-img-box {
  width: 8rem;
  height: 8.3rem;
  flex-shrink: 0;
  position: relative;
}

.example-background-box1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.border-primary { border-color: var(--primary); }
.border-yellow { border-color: #d97706; }

.example-content {
  text-align: center;
}

@media (min-width: 768px) {
  .example-content { text-align: left; }
}

.example-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 20px;
}

.example-text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- Summary --- */
.summary-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
}

.summary-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .summary-wrapper {
    flex-direction: row;
  }
}

.summary-content, .summary-graphic {
  width: 100%;
}

@media (min-width: 768px) {
  .summary-content, .summary-graphic {
    width: 50%;
  }
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.summary-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.summary-content button {
    background-color: #008409;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    border-radius: 16px;
    padding: 12px 40px;
    border: none;
}

.summary-content button:hover{
  background-color: #621c4e;
}

img.money-img {
    position: absolute;
    width: 150px;
    transition: transform 0.6s ease;
    display: flex;
}

img.graphic-img {
    position: absolute;
    width: 200px;
    transition: transform 0.6s ease;
    display: flex;
    left: 50px;
    top: -20px;
}

.summary-section:hover img.money-img{
  transform: scale(1.3) rotate(30deg);
}

.summary-section:hover img.graphic-img{
  transform: scale(1.3) rotate(-10deg);
}


.summary-graphic-container {
  display: flex;
  justify-content: center;
}

.graphic-box {
  position: relative;
  width: 16rem;
  height: 10rem;
}

.graphic-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background-color: #fef08a; /* yellow-200 */
  border-radius: 50%;
  opacity: 0.5;
}

.graphic-square {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  background-color: #bfdbfe; /* blue-200 */
  border-radius: 0.5rem;
  transform: rotate(12deg);
  opacity: 0.5;
}

.graphic-img {
  position: relative;
  z-index: 10;
  border-radius: 0.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* --- Footer --- */
.footer-section {
  background-color: var(--white);
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .footer-title { font-size: 36px; }
}

.footer-title-lg {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-title-lg { font-size: 36px; }
}

.footer-text-sm {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-text-xs {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-wrapper {
  position: relative;
  display: inline-block;
}

.btn-lg {
  padding: 1rem 3rem;
  font-size: 1rem;
  background-color: #008409;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  border-radius: 16px;
  padding: 12px 90px 12px 40px;
  text-align: left;
}

.btn-lg:hover{
  background-color: #621C4E;
}

.gift-overlay {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 5rem;
  height: 5rem;
  background-color: transparent;
}

.posicao-presentes {
    position: relative;
    top: -37px;
}

img.gift-img {
    position: absolute;
    width: 170px;
    max-width: 170px;
    top: 0px;
    left: 0px;
    z-index: 10;
    transition: transform 0.6s ease;
}

img.presente-img {
    position: absolute;
    max-width: 130px;
    width: 130px;
    left: -31px;
    top: -5px;
    transition: transform 0.6s ease;
}

.footer-cta-wrapper:hover .gift-img{
  transform: scale(1.3) rotate(10deg);
}


.footer-cta-wrapper:hover .presente-img{
  transform: scale(1.3) rotate(-10deg);
}

.gift-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
}


@media(max-width: 768px){
  .hero-content-col button {
    font-size: 18px;
    padding: 10px 20px;
  }

  .lampImage {
    width: 80vw;
    height: 80vw;
    top: -6vw;
    left: 7.5vw;
  }

  .hero-circle-wrapper {
      width: 75vw;
      height: 75vw;
  }

  .vr-ring-dotted {
    width: 85vw;
    height: 85vw;
    top: 10vw;
    left: 3vw;
  }

  .vr-image-wrapper {
    height: 90vw;
  }

  .diamond-img-box {
    width: 304px;
    height: 210px;
  }

  img.diamond-img {
      width: 230px;
      object-fit: contain;
  }

  .benefits-visual {
    overflow: hidden;
  }

  .benefits-content button {
    padding: 12px 20px;
  }

  .summary-content button {
      padding: 12px 12px;
  }

  img.presente-img {
      left: -30px;
      top: -24px;
  }

  .gift-overlay {
      position: absolute;
      right: 2.5rem;
      bottom: 0.5rem;
      width: 5rem;
      height: 5rem;
      background-color: transparent;
  }

  .btn-lg {
      padding: 12px 80px 12px 20px;
  }

  .lampBright {
    left: 43vw;
    top: 0.1vw;
  }

  .hero-overlay {
      display: none;
  }

  .footer-cta-wrapper {
    transform: translateX(-15px);
  }

  .hero-image-col:hover .hero-circle-wrapper {
    transform: scale(1.1) rotate(90deg);
  }
}

</style>
<script>
function expandirChatWhatsApp() {
  const chat = document.querySelector(
    ".wa-widget-content.chat-tab.bottom-right"
  );

  if (chat) {
    chat.classList.add("expanded");
  }
}/* End custom CSS */