:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #8b6914;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gray: #888888;
  --white: #f5f0e8;
  --accent: #ff5c35;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
}

.nav-logo {
  background: url(/img/logo_palco_permanente.png);
  width: 290px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  /*   font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase; */
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: row;
}

.hero-container::before {
  content: url(/img/img_hero02.png); /* Insere a imagem */
  position: absolute;
  top: -20px;
  left: 550px;
  width: 100%;
  height: 100%;
  transform: scale(0.8);
  filter: drop-shadow(0px 0px 20px #000000);
  z-index: -1; /* Coloca a imagem atrás do texto */

  /* Ajustes para a imagem inserida */
  object-fit: contain;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 50%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 60%
    );
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Spotlight effect */
.spotlight {
  position: absolute;
  top: -100px;
  right: 15%;
  width: 3px;
  height: 120vh;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.4) 20%,
    rgba(201, 168, 76, 0.15) 60%,
    transparent
  );
  transform: rotate(8deg);
  animation: spotMove 6s ease-in-out infinite alternate;
}
.spotlight2 {
  position: absolute;
  top: -100px;
  right: 25%;
  width: 2px;
  height: 110vh;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.2) 20%,
    rgba(201, 168, 76, 0.08) 60%,
    transparent
  );
  transform: rotate(5deg);
  animation: spotMove 8s ease-in-out infinite alternate-reverse;
}
@keyframes spotMove {
  from {
    transform: rotate(6deg);
    opacity: 0.6;
  }
  to {
    transform: rotate(12deg);
    opacity: 1;
  }
}

.hero-tag {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 32px;
  position: relative;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.02;
  max-width: 800px;
  position: relative;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-price-block {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s 0.45s ease both;
}

.price-tag {
  display: flex;
  flex-direction: column;
}

.price-old {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: line-through;
  letter-spacing: 0.05em;
}

.price-main {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price-note {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 18px 40px;
  border: none;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-primary .arrow {
  transition: transform 0.3s ease;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.hero-guarantee {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.05em;
  text-align: center;
}

/* .hero-image img {
  width: 1000px;
  height: 750px;
} */

.hero-badge {
  position: absolute;
  bottom: 60px;
  right: 80px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-badge-inner {
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 500;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DIVIDER */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 80px;
  margin: 20px 0;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
}
.divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* PROBLEMS SECTION */
.section {
  padding: 100px 80px;
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* PROBLEMS GRID */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.problem-card {
  background: var(--dark2);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.problem-card:hover {
  background: var(--dark3);
}
.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.problem-card:hover::before {
  height: 100%;
}

.problem-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.problem-card:hover .problem-number {
  color: rgba(201, 168, 76, 0.15);
}

.problem-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--white);
}

.problem-desc {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

/* SOLUTION SECTION */
.solution-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 60% at 0% 50%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 60%
  );
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.solution-features1 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.solution-features2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.3s ease;
}
.feature-item:last-child {
  border-bottom: none;
}
.feature-item:hover {
  padding-left: 8px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.feature-item:hover .feature-icon {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

.feature-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}
.feature-content p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.65;
  font-weight: 300;
}

/* CHAPEU DIGITAL HIGHLIGHT */
.chapeu-highlight {
  grid-column: 1/3;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  padding: 40px;
  position: sticky;
  top: 100px;
}

.chapeu-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.chapeu-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.chapeu-desc {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
}

.chapeu-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chapeu-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.step-text {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.6;
}

/* PRICING SECTION */
.pricing-section {
  padding: 100px 80px;
  text-align: center;
  position: relative;
}

.pricing-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.3);
  max-width: 640px;
  margin: 60px auto 0;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.pricing-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  display: inline-block;
  margin-bottom: 32px;
}

.pricing-header {
  padding: 48px 48px 0;
}

.pricing-old-price {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.pricing-main-price {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.pricing-period {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.pricing-description {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  margin-top: 16px;
  padding: 0 48px;
  font-style: italic;
}

.pricing-features {
  padding: 40px 48px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.5;
}

.pricing-feature::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.pricing-footer {
  padding: 0 48px 48px;
}

.btn-pricing {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 20px;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.btn-pricing:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 50px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}

.pricing-security {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* FAQ */
.faq-section {
  padding: 80px 80px;
  background: var(--dark2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.faq-item {
  background: var(--dark);
  padding: 32px 36px;
  transition: all 0.3s ease;
  cursor: default;
}
.faq-item:hover {
  background: var(--dark3);
}

.faq-q {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq-q::before {
  content: "P:";
  font-weight: 700;
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.83rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
  font-weight: 300;
  padding-left: 22px;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

/* FINAL CTA */
.final-section {
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 50% 50%,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
}

.final-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.final-title em {
  font-style: italic;
  color: var(--gold);
}

.final-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 500px;
  margin: 24px auto 56px;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
}

.final-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.btn-final {
  background: var(--gold);
  color: var(--black);
  padding: 22px 60px;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-final:hover {
  background: var(--gold-light);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

.final-note {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  padding: 40px 80px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
} */
.footer-logo {
  background: url(/img/logo_palco_permanente.png);
  width: 290px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.footer-note {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.05em;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FLOATING WPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulseWpp 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}
@keyframes pulseWpp {
  0%,
  100% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 6px 40px rgba(37, 211, 102, 0.7),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

@media (max-width: 1180px) {
  .hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 1.02;
    max-width: 450px;
    position: relative;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-container::before {
    content: url(/img/img_hero02.png); /* Insere a imagem */
    position: absolute;
    top: -40px;
    left: 170px;
    width: 100%;
    height: 100%;
    transform: scale(0.4);
    filter: drop-shadow(0px 0px 20px #000000);
    z-index: -1; /* Coloca a imagem atrás do texto */

    /* Ajustes para a imagem inserida */
    object-fit: contain;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .hero {
    padding: 100px 24px 60px;
  }
  .section {
    padding: 70px 24px;
  }
  .solution-section {
    padding: 70px 24px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr auto;
    gap: 0px;
  }
  .solution-features1 {
    grid-column: 1/2;
    grid-row: 1;
  }
  .solution-features2 {
    grid-column: 1/2;
    grid-row: 2;
  }
  .chapeu-highlight {
    position: static;
  }
  .pricing-section {
    padding: 70px 24px;
  }
  .pricing-features {
    grid-template-columns: 1fr;
  }
  .pricing-header,
  .pricing-features,
  .pricing-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .faq-section {
    padding: 70px 24px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .final-section {
    padding: 80px 24px;
  }
  footer {
    padding: 30px 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .divider {
    padding: 0 24px;
  }
  .hero-badge {
    display: none;
  }
}
@media (max-width: 755px) {
  .hero-container::before {
    display: none;
  }
  .hero-container {
    display: flex;
    flex-flow: column;
    align-items: center; /* Centraliza horizontalmente (Eixo X no column) */
    justify-content: center; /* Centraliza verticalmente (Eixo Y no column) */
    min-height: 100vh; /* Garante altura para o alinhamento vertical ser visível */
    text-align: left;
  }

  .hero-container::after {
    content: "";
    background-image: url(/img/img_hero03.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0px 0px 20px #000000);
    z-index: 1;
    order: 2; /* Garante que ele fique abaixo de qualquer texto/conteúdo */
    transition: all 0.3s ease;
  }

  .hero-container::after {
    /* Reduz proporcionalmente para mobile */
    width: 360px;
    height: 640px;

    /* O Flexbox do pai já mantém a centralização, 
           mas você pode ajustar margens se necessário */
    margin-top: 40px;
  }
}

@media (max-width: 521px) {
  .nav-cta {
    display: none;
  }
}
