:root {
  --brand-secondary: #202027;
  --brand-primary: #c79f97;
  --whatsappp-bg: #25d366;
  font-family: "Inter", sans-serif;
  color: #d1d5db;
}

html {
  background-color: var(--brand-secondary);
  padding: 0;
  width: 100dvw;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100dvw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

h2 span {
  color: var(--brand-primary);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ml-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(32, 32, 39, 0.9);
  backdrop-filter: blur(10px);
}

.ml-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  max-width: 1200px;
}

.custom-logo-link,
.ml-brand-link {
  display: inline-flex;
}

.ml-brand-header,
.custom-logo {
  height: 45px;
  width: auto;
}

.ml-nav-group {
  display: flex;
  align-items: center;
}

.ml-principal-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.ml-principal-menu li {
  list-style: none;
}

.ml-principal-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}

.ml-principal-menu a:hover {
  color: var(--brand-primary);
}

.ml-menu-toggle {
  display: none;
  border: 1px solid #1f2937;
  background: transparent;
  color: #fff;
  border-radius: 2rem;
  width: 50px;
  height: 50px;
}

.ml-banner-label {
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.ml-banner-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.ml-not-found-title {
  color: #fff;
  font-size: 10rem;
  font-weight: 700;
  margin: 8rem 0 0;
}

.ml-not-found-title span {
  color: var(--brand-primary);
}

.ml-banner-title span {
  color: var(--brand-primary);
}

.ml-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
}

.ml-main section {
  width: 100%;
}

.ml-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.ml-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ml-banner-image {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.ml-banner-media {
  position: relative;
}

.ml-banner-image-overlay {
  background-color: #fff;
  color: var(--brand-secondary);
  padding: 1rem;
  border-radius: 1.5rem;
  position: absolute;
  bottom: -1rem;
  right: -2rem;
}

.ml-banner-image-overlay svg {
  color: var(--brand-primary);
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}

.ml-banner-image-overlay h5 {
  margin: 0;
  color: var(--brand-secondary);
  font-size: 1rem;
  font-weight: 700;
}

.ml-banner-image-overlay span {
  color: var(--brand-secondary);
  font-size: 0.8rem;
}

.ml-banner-blur-left,
.ml-banner-blur-right {
  background-color: #c79f97;
  border-radius: 50%;
  position: absolute;
  width: 268px;
  height: 268px;
  filter: blur(60px);
  opacity: 10%;
  z-index: -1;
}

.ml-banner-blur-right {
  bottom: 0;
  right: 0;
}

.ml-button {
  background-color: var(--brand-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  transition: all 0.6s;
}

.ml-button:hover {
  cursor: pointer;
  opacity: 0.9;
  box-shadow: 0 0 50px #c79f9750;
}

.ml-banner-actions {
  padding-top: 1rem;
  display: flex;
  gap: 1.5rem;
}

.ml-button-outline {
  text-align: center;
  background-color: transparent;
  color: var(--brand-primary);
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--brand-primary);
}

.ml-button-outline:hover {
  background-color: var(--brand-primary);
  color: #fff;
}

.ml-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #1a1a20;
}

.ml-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ml-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  padding: 0;
}

.ml-card-list li {
  color: #fff;
  display: flex;
  background-color: var(--brand-secondary);
  padding: 1.5rem;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid #1f2937;
  transition: all 0.6s;
  list-style: none;
}

.ml-card-list li:hover {
  border-color: var(--brand-primary);
  cursor: pointer;
  transform: scale(1.06);
}

.ml-card-list li p {
  font-size: 0.8rem;
  font-weight: 300;
}

.ml-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background-color: #c79f971a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ml-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand-primary);
}

.ml-card-list li:hover .ml-card-icon {
  background-color: #c79f9733;
}

.ml-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.ml-about-content img {
  width: 100%;
  max-width: 644px;
  border-radius: 1rem;
}

.ml-about-details {
  color: #d1d5db;
}

.ml-about-list {
  padding: 0;
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.ml-about-list li {
  color: #fff;
  display: grid;
  grid-template-columns: 56px auto;
  gap: 1rem;
  transition: all 0.6s;
  list-style: none;
}

.ml-about-list li p {
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0;
}

.ml-about-list h4 {
  margin: 0.2rem 0 0.6rem;
}

.ml-about-list-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background-color: #c79f971a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ml-about-list-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand-primary);
}

.ml-about-list li:hover .ml-about-list-icon {
  background-color: #c79f9733;
}

.ml-about-contact {
  display: flex;
  flex-direction: column;
  background-color: #1a1a20;
  padding: 1.5rem;
  border-radius: 1rem;
  gap: 1rem;
  margin-top: 2rem;
  border: 1px solid #1f2937;
  height: 170px;
}

.ml-about-contact h4 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.ml-about-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ml-about-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
}

.ml-about-contact-item a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 1rem;
}

.ml-about-contact-item a:hover {
  color: var(--brand-primary);
}

.ml-contact {
  background-color: #1a1a20;
}

.ml-contact-list {
  padding: 0;
  display: grid;
  gap: 2rem;
}

.ml-contact-list li {
  color: #fff;
  display: grid;
  grid-template-columns: 56px auto;
  gap: 1rem;
  transition: all 0.6s;
  list-style: none;
}

.ml-contact-list li p {
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0;
}

.ml-contact-list h4 {
  margin: 0.2rem 0 0.6rem;
}

.ml-contact-list-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ml-contact-list-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand-primary);
}

.ml-contact-list li:hover .ml-contact-list-icon {
  background-color: #c79f9733;
}

.ml-contact-why-choose {
  background-color: var(--brand-secondary);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 1rem;
  gap: 1rem;
  border: 1px solid #1f2937;
}

.ml-contact-why-choose h3 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}

.ml-contact-container {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.ml-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--brand-secondary);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #1f2937;
}

.ml-contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ml-contact-form-group label {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.ml-contact-form-group label:after {
  content: " *";
  color: var(--brand-primary);
}

.ml-contact-form-group input,
.ml-contact-form-group textarea,
.ml-contact-form input,
.ml-contact-form textarea,
.ml-contact-form select {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #1f2937;
  background-color: #1a1a20;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.ml-contact-form-group textarea,
.ml-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.ml-contact-form-group input:focus,
.ml-contact-form-group textarea:focus,
.ml-contact-form input:focus,
.ml-contact-form textarea:focus,
.ml-contact-form select:focus {
  outline: 1px solid var(--brand-primary);
}

.ml-contact-form button,
.ml-contact-form input[type="submit"] {
  padding: 1rem;
  border-radius: 2rem;
  border: none;
  background-color: var(--brand-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.ml-contact-form button:hover,
.ml-contact-form input[type="submit"]:hover {
  cursor: pointer;
  background-color: #c79f97;
}

footer {
  padding: 2rem;
  margin: 0 auto;
  position: relative;
}

.ml-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 3rem;
}

.ml-footer-title {
  color: var(--brand-primary);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.ml-footer-reserved {
  padding: 1rem;
  text-align: center;
  background-color: #1a1a20;
  border-top: 1px solid #1f2937;
}

.ml-footer-reserved small {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 300;
}

.ml-footer-logo {
  width: 100%;
  max-width: 90px;
  height: auto;
}

.ml-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ml-footer-contact h4 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
}

.ml-footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ml-footer-links h4 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}

.ml-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ml-footer-links li {
  margin-bottom: 0.5rem;
}

.ml-footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 1rem;
}

.ml-footer-links a:hover {
  color: var(--brand-primary);
}

.ml-default-page {
  width: 100%;
}

.ml-content-card {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  color: #fff;
}

@media (max-width: 1250px) {
  .ml-banner-image-overlay {
    right: 0;
    bottom: 0.3rem;
  }
}

@media (max-width: 960px) {
  .ml-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 868px) {
  .ml-banner-container {
    flex-direction: column;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .ml-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ml-nav {
    flex-wrap: wrap;
  }

  .ml-nav-group {
    display: none;
    width: 100%;
    padding-top: 1rem;
  }

  .ml-nav-group.is-open {
    display: flex;
  }

  .ml-principal-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .ml-contact-container,
  .ml-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ml-banner-actions {
    flex-direction: column;
  }

  .ml-card-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .ml-about-content {
    display: flex;
    flex-direction: column-reverse;
  }
}

.ml-contact-wp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  gap: 1rem;
  background-color: #c79f971a;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #c79f977a;
  height: fit-content;
  text-align: center;
}

.ml-wp-button {
  background-color: var(--whatsappp-bg);
  height: fit-content;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  transition: all 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.ml-wp-button svg {
  width: 31px;
  height: 30px;
}

.ml-wp-button:hover {
  cursor: pointer;
  opacity: 0.9;
  box-shadow: 0 0 50px #25d36650;
}

.ml-not-found-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.ml-404-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ml-not-found-contact {
  display: flex;
  flex-direction: column;
  background-color: #1a1a20;
  padding: 1.5rem;
  border-radius: 1rem;
  gap: 1rem;
  border: 1px solid #1f2937;
  height: 155px;
}

.ml-not-found-contact h4 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

#wpforms-submit-2232 {
  margin-top: 2rem;
  width: 100%;
}

#wpforms-submit-2232:hover {
  cursor: pointer;
  opacity: 0.9;
  box-shadow: 0 0 50px #c79f9750;
}

.wpforms-field-container label {
  margin-bottom: 10px;
}

.wpforms-required-label {
  color: var(--brand-primary) !important;
}

.wpforms-field-required {
  width: 100%;
  max-width: 100% !important;
}

.wpforms-container {
  margin: 0 !important;
}

/* =============================================================================
   PÁGINA REGISTRO DE MARCA
   Estilos fiéis ao landing-lro-v2.html, escopados em .lro-marca-page
   ============================================================================= */

/* Ocultar header padrão do WordPress neste template */
.page-template-page-registro-de-marca .ml-header {
  display: none !important;
}

/* Nav customizada da landing page */
.lro-marca-nav {
  position: sticky;
  top: 0;
  z-index: 998;
  background: #202027;
  border-bottom: 1px solid #2a2a35;
  display: flex;
  justify-content: center;
}
.lro-marca-nav nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
  width: 100%;
  max-width: 900px;
}
.lro-marca-nav img {
  height: 40px;
}
.lro-marca-nav .btn-primary {
  font-size: 14px;
  padding: 12px 24px;
  clip-path: none;
  border-radius: 2rem;
  background-color: var(--brand-primary);
  color: #fff;
  font-weight: 700;
}

.lro-marca-nav .btn-primary:hover {
  cursor: pointer;
  box-shadow: 0 0 50px #c79f9750;
}

/* Barra de alerta */
.sticky-bar {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 997;
  background: #c79f97;
  padding: 10px 24px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  transform: translateY(-300%);
  transition: transform 0.4s ease;
  display: flex;
  justify-content: center;
}
.sticky-bar .sticky-bar-content {
  display: grid;
  text-align: left;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 1rem;
}

.sticky-bar .sticky-bar-content div {
  display: flex;
  gap: 0.5rem;
}

.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-bar a {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sticky-bar .sticky-bar-content div {
    flex-direction: column;
  }

  .sticky-bar a:before {
    content: "";
  }
}

.sticky-bar svg {
  width: 24px;
  height: 24px;
}

/* Variáveis e reset escopados */
.lro-marca-page {
  --black: #202027;
  --deep: #1a1a20;
  --card: #16161c;
  --border: #2a2a35;
  --red: #c79f97;
  --red-dark: #b08880;
  --red-glow: rgba(199, 159, 151, 0.18);
  --amber: #e8c9b0;
  --white: #f5f4f0;
  --muted: #8a8d96;
  --text: #d1d5db;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

.lro-marca-page::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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.lro-marca-page strong,
.lro-marca-page b {
  color: var(--white);
  font-weight: 700;
}
.lro-marca-page em {
  color: var(--amber);
  font-style: normal;
  font-weight: 700;
}

/* Containers */
.lro-marca-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.lro-marca-page .container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Section label */
.lro-marca-page .section-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lro-marca-page .section-label::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--red);
}

/* Section title */
.lro-marca-page .section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

/* Botões */
.lro-marca-page .btn-primary {
  background: var(--red);
  color: var(--black);
  padding: 18px 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  transition:
    background 0.2s,
    transform 0.15s;
}
.lro-marca-page .btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 0 50px #c79f9750;
  color: white;
}
.lro-marca-page .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.lro-marca-page .btn-ghost {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.lro-marca-page .btn-ghost:hover {
  color: var(--white);
}
.lro-marca-page .btn-ghost::before {
  content: "▾";
  font-size: 18px;
}

.lro-marca-page .btn-white {
  background: var(--whatsappp-bg);
  color: white;
  padding: 18px 44px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.lro-marca-page .btn-white:hover {
  transform: scale(1.08);
}

/* Hero */
.lro-marca-page .hero {
  min-height: 100vh;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lro-marca-page .hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lro-marca-page .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.lro-marca-page .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 159, 151, 0.12);
  border: 1px solid rgba(232, 39, 28, 0.3);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lro-marca-page .badge:before {
  content: "⚠";
}

.lro-marca-page .hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.lro-marca-page .hero h1 span {
  display: block;
  color: var(--red);
  -webkit-text-stroke: 1px var(--red);
}
.lro-marca-page .hero h1 .alternative {
  color: var(--brand-secondary);
  -webkit-text-stroke: 1px white;
}
.lro-marca-page .hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.lro-marca-page .hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--text);
  max-width: 620px;
  margin-bottom: 44px;
  font-weight: 500;
  line-height: 1.55;
}

.lro-marca-page .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.lro-marca-page .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.lro-marca-page .stat-item {
  display: flex;
  flex-direction: column;
}
.lro-marca-page .stat-num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.lro-marca-page .stat-num span {
  color: var(--red);
}
.lro-marca-page .stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Fade-up animation */
@keyframes lro-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lro-marca-page .fade-up {
  opacity: 0;
  animation: lro-fadeUp 0.7s ease forwards;
}
.lro-marca-page .fade-up:nth-child(1) {
  animation-delay: 0.1s;
}
.lro-marca-page .fade-up:nth-child(2) {
  animation-delay: 0.25s;
}
.lro-marca-page .fade-up:nth-child(3) {
  animation-delay: 0.4s;
}
.lro-marca-page .fade-up:nth-child(4) {
  animation-delay: 0.55s;
}

/* Pain */
.lro-marca-page .pain {
  padding: 100px 0;
  position: relative;
}

.lro-marca-page .pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 56px;
}
.lro-marca-page .pain-card {
  padding: 2rem 1.75rem;
  background: #16161c;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
  border-radius: 1rem;
  border: 1px solid #1f2937;
  transition: all 0.6s;
}
.lro-marca-page .pain-card:hover {
  border-color: var(--brand-primary);
}

.lro-marca-page .pain-icon {
  font-size: 28px;
  display: block;
  color: var(--brand-primary);
  background-color: #c79f971a;
  border-radius: 1rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lro-marca-page .pain-card h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.lro-marca-page .pain-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Quote break */
.lro-marca-page .quote-break {
  padding: 80px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.lro-marca-page .quote-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(199, 159, 151, 0.06) 0%,
    transparent 70%
  );
}
.lro-marca-page blockquote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4.5vw, 50px);
  color: var(--white);
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}
.lro-marca-page blockquote span {
  color: var(--red);
}

/* How it works */
.lro-marca-page .how {
  padding: 100px 0;
}
.lro-marca-page .steps {
  margin-top: 60px;
  display: grid;
  gap: 2px;
  background: var(--border);
}
.lro-marca-page .step {
  background: var(--card);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  transition: background 0.2s;
}
.lro-marca-page .step:hover {
  background: #1a1d24;
}
.lro-marca-page .step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  opacity: 0.35;
  transition: opacity 0.2s;
}
.lro-marca-page .step:hover .step-num {
  opacity: 1;
}
.lro-marca-page .step-content h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.lro-marca-page .step-content p {
  font-size: 15px;
  color: var(--muted);
}

/* Benefits */
.lro-marca-page .benefits {
  padding: 100px 0;
}
.lro-marca-page .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.lro-marca-page .benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.lro-marca-page .benefit-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.lro-marca-page .benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.lro-marca-page .benefit-card:hover::after {
  transform: scaleX(1);
}
.lro-marca-page .benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--red-glow);
  border: 1px solid rgba(232, 39, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.lro-marca-page .benefit-card h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.lro-marca-page .benefit-card p {
  font-size: 15px;
  color: var(--muted);
}

/* Urgency band */
.lro-marca-page .urgency-band {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lro-marca-page .urgency-band h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.lro-marca-page .urgency-band p {
  color: white;
  font-size: 17px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* Objections */
.lro-marca-page .objections {
  padding: 100px 0;
}
.lro-marca-page .obj-list {
  margin-top: 56px;
  display: grid;
  gap: 2px;
  background: var(--border);
}
.lro-marca-page .obj-item {
  background: var(--card);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  transition: background 0.2s;
}
.lro-marca-page .obj-item:hover {
  background: #1a1d24;
}

.lro-marca-page .obj-item:first-child {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.lro-marca-page .obj-item:last-child {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.lro-marca-page .obj-check {
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 2px;
}
.lro-marca-page .obj-item strong {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.lro-marca-page .obj-item p {
  font-size: 15px;
  color: var(--muted);
}

/* Lead / WhatsApp section */
.lro-marca-page .lead-section {
  padding: 100px 0;
  position: relative;
}
.lro-marca-page .lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(199, 159, 151, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lro-marca-page .form-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 52px 48px;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lro-marca-page .form-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.lro-marca-page .form-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}
.lro-marca-page .form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}
.lro-marca-page .btn-whatsapp {
  width: calc(100% - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--whatsappp-bg);
  color: #fff;
  padding: 20px 32px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  transition:
    opacity 0.2s,
    transform 0.15s;
  position: relative;
  overflow: hidden;
}
.lro-marca-page .btn-whatsapp:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
}
.lro-marca-page .btn-whatsapp svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* FAQ */
.lro-marca-page .faq {
  padding: 100px 0;
}
.lro-marca-page .faq-list {
  margin-top: 56px;
}
.lro-marca-page .faq-item {
  border-bottom: 1px solid var(--border);
}
.lro-marca-page .faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  padding: 24px 0;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.lro-marca-page .faq-q:hover {
  color: var(--red);
}
.lro-marca-page .faq-arrow {
  color: var(--red);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}
.lro-marca-page .faq-item.open .faq-arrow {
  transform: rotate(45deg);
}
.lro-marca-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.lro-marca-page .faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}
.lro-marca-page .faq-a p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Final CTA */
.lro-marca-page .final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lro-marca-page .final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lro-marca-page .final-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.lro-marca-page .final-cta h2 span {
  color: var(--red);
}
.lro-marca-page .final-cta > .container > p {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 1;
}

/* Scroll reveal */
.lro-marca-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.lro-marca-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  border-radius: 1rem;
}

.lro-marca-page .step:first-child {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.lro-marca-page .step:last-child {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

/* WhatsApp float */
.lro-marca-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--whatsappp-bg);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  z-index: 998;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.lro-marca-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}
.lro-marca-wa-float svg {
  width: 30px;
  height: 30px;
}

/* Responsive */
@media (max-width: 640px) {
  .lro-marca-page .hero {
    padding: 80px 0 60px;
  }
  .lro-marca-page .step {
    grid-template-columns: 1fr;
  }
  .lro-marca-page .step-num {
    font-size: 36px;
  }
  .lro-marca-page .form-wrapper {
    padding: 36px 24px;
  }
  .lro-marca-page .hero-stats {
    gap: 24px;
  }
  .lro-marca-page .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================================================================
   PÁGINA DIREITO PREVIDENCIÁRIO
   Estilos fiéis ao landing-previdenciario-lro-v2.html, escopados em .lro-prev-page
   ============================================================================= */

/* Ocultar header padrão do WordPress neste template */
.page-template-page-previdenciario .ml-header {
  display: none !important;
}

/* --- Sticky bar --- */
.prev-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #202027;
  padding: 10px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.prev-sticky-bar.visible {
  transform: translateY(0);
}
.prev-sticky-bar a {
  color: #c79f97;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 800;
}

/* --- Nav customizada --- */
.lro-prev-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5dfd8;
  display: flex;
  justify-content: center;
}
.lro-prev-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  width: 100%;
  max-width: 960px;
}
.lro-prev-nav-logo {
  height: 38px;
}
.lro-prev-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lro-prev-nav-links a {
  text-decoration: none;
  color: #4a4650;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
  font-family: "Nunito", sans-serif;
}
.lro-prev-nav-links a:hover {
  color: #a87d74;
}
.lro-prev-nav-cta {
  background: #c79f97;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(199, 159, 151, 0.3);
  font-family: "Nunito", sans-serif;
}
.lro-prev-nav-cta:hover {
  background: #a87d74;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(199, 159, 151, 0.4);
}
@media (max-width: 640px) {
  .lro-prev-nav-links {
    display: none;
  }
}

/* --- Wrapper e variáveis --- */
.lro-prev-page {
  --prev-bg: #faf8f5;
  --prev-bg2: #f3efe9;
  --prev-bg3: #ede8e0;
  --prev-gold: #c79f97;
  --prev-gold-dk: #a87d74;
  --prev-gold-lt: #f0e4e1;
  --prev-gold-gl: rgba(199, 159, 151, 0.13);
  --prev-gold-bd: rgba(199, 159, 151, 0.35);
  --prev-dark: #202027;
  --prev-dark2: #2e2d36;
  --prev-text: #4a4650;
  --prev-muted: #8f8b96;
  --prev-white: #ffffff;
  --prev-border: #e5dfd8;

  background: var(--prev-bg);
  color: var(--prev-text);
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

.lro-prev-page strong,
.lro-prev-page b {
  color: var(--prev-dark);
  font-weight: 700;
}
.lro-prev-page em {
  color: var(--prev-gold-dk);
  font-style: normal;
  font-weight: 700;
}

.lro-prev-page .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.lro-prev-page .container--wide {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* --- Botões --- */
.lro-prev-page .btn {
  display: inline-block;
  background: var(--prev-gold);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(199, 159, 151, 0.38);
  transition: all 0.25s;
}
.lro-prev-page .btn:hover {
  background: var(--prev-gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(199, 159, 151, 0.45);
}

.lro-prev-page .btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: transparent;
  color: #fff;
  padding: 15px 38px;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  background: var(--whatsappp-bg);
}

.lro-prev-page .btn-outline svg {
  width: 32px;
  height: 32px;
}
.lro-prev-page .btn-outline:hover {
  opacity: 0.9;
  cursor: pointer;
  box-shadow: 0 0 50px #25d36650;
}

/* --- Seções compartilhadas --- */
.lro-prev-page .section {
  padding: 96px 0;
}
.lro-prev-page .section-alt {
  padding: 96px 0;
  background: var(--prev-bg2);
}

.lro-prev-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--prev-gold-gl);
  border: 1px solid var(--prev-gold-bd);
  color: var(--prev-gold-dk);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lro-prev-page .s-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5.5vw, 58px);
  color: var(--prev-dark);
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: 700;
}
.lro-prev-page .s-title em {
  font-style: italic;
  color: var(--prev-gold-dk);
  font-weight: 400;
}
.lro-prev-page .s-sub {
  font-size: 18px;
  color: var(--prev-text);
  max-width: 580px;
  line-height: 1.7;
}

/* --- Hero --- */
.lro-prev-page .hero {
  padding: 80px 0 96px;
  background: var(--prev-bg);
  position: relative;
  overflow: hidden;
}
.lro-prev-page .hero-circle-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lro-prev-page .hero-circle-2 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lro-prev-page .hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--prev-border);
}
.lro-prev-page .hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .lro-prev-page .hero-grid {
    grid-template-columns: 1fr;
  }
}

.lro-prev-page .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--prev-gold-lt);
  border: 1px solid var(--prev-gold-bd);
  color: var(--prev-gold-dk);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.lro-prev-page .hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5.5vw, 66px);
  color: var(--prev-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.lro-prev-page .hero h1 em {
  font-style: italic;
  color: var(--prev-gold-dk);
  font-weight: 400;
}
.lro-prev-page .hero-desc {
  font-size: 18px;
  color: var(--prev-text);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.lro-prev-page .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.lro-prev-page .hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--prev-border);
}
.lro-prev-page .trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--prev-text);
}
.lro-prev-page .trust-pill .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--prev-gold-gl);
  border: 1px solid var(--prev-gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Cartão hero */
.lro-prev-page .hero-card {
  background: var(--prev-white);
  border-radius: 24px;
  border: 1px solid var(--prev-border);
  box-shadow: 0 24px 60px rgba(32, 32, 39, 0.09);
  padding: 36px 32px;
  position: relative;
}
.lro-prev-page .hero-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--prev-gold);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(199, 159, 151, 0.4);
}
.lro-prev-page .hero-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--prev-dark);
  margin: 16px 0 6px;
  font-weight: 600;
}
.lro-prev-page .hero-card > p {
  font-size: 14px;
  color: var(--prev-muted);
  margin-bottom: 24px;
}

.lro-prev-page .benefit-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.lro-prev-page .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--prev-bg);
  border: 1px solid var(--prev-border);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.lro-prev-page .benefit-item:hover {
  border-color: var(--prev-gold-bd);
  background: var(--prev-gold-gl);
}
.lro-prev-page .benefit-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--prev-gold-lt);
  border: 1px solid var(--prev-gold-bd);
  color: var(--prev-gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.lro-prev-page .benefit-item strong {
  display: block;
  color: var(--prev-dark);
  font-size: 14px;
  font-weight: 700;
}
.lro-prev-page .benefit-item span {
  font-size: 13px;
  color: var(--prev-muted);
}

.lro-prev-page .hero-card-cta {
  text-align: center;
  background: var(--prev-gold);
  color: #fff;
  padding: 15px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 6px 22px rgba(199, 159, 151, 0.35);
  transition: all 0.25s;
  font-family: "Nunito", sans-serif;
}
.lro-prev-page .hero-card-cta:hover {
  background: var(--prev-gold-dk);
  transform: translateY(-2px);
}
.lro-prev-page .hero-card-disclaimer {
  font-size: 12px;
  color: var(--prev-muted);
  text-align: center;
  margin-top: 12px;
}

/* --- Stats --- */
.lro-prev-page .stats {
  padding: 56px 0;
  background: var(--prev-dark);
}
.lro-prev-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.lro-prev-page .stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}
.lro-prev-page .stat-item:last-child {
  border-right: none;
}
.lro-prev-page .stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lro-prev-page .stat-val {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: var(--prev-gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.lro-prev-page .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.45;
}
@media (max-width: 640px) {
  .lro-prev-page .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lro-prev-page .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}

/* --- Serviços --- */
.lro-prev-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.lro-prev-page .srv-card {
  background: var(--prev-white);
  border: 1px solid var(--prev-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.lro-prev-page .srv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--prev-gold), var(--prev-gold-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.lro-prev-page .srv-card:hover {
  border-color: var(--prev-gold-bd);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(199, 159, 151, 0.15);
}
.lro-prev-page .srv-card:hover::after {
  transform: scaleX(1);
}
.lro-prev-page .srv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--prev-gold-lt);
  border: 1px solid var(--prev-gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.lro-prev-page .srv-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  color: var(--prev-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.lro-prev-page .srv-card p {
  font-size: 15px;
  color: var(--prev-muted);
  line-height: 1.65;
}
.lro-prev-page .srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.lro-prev-page .srv-tag {
  background: var(--prev-gold-gl);
  border: 1px solid var(--prev-gold-bd);
  color: var(--prev-gold-dk);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
}

/* --- Depoimentos --- */
.lro-prev-page .test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.lro-prev-page .test-card {
  background: var(--prev-white);
  border: 1px solid var(--prev-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
}
.lro-prev-page .test-card:hover {
  border-color: var(--prev-gold-bd);
  box-shadow: 0 12px 36px rgba(199, 159, 151, 0.13);
}
.lro-prev-page .test-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  color: var(--prev-gold);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 8px;
}
.lro-prev-page .test-stars {
  color: var(--prev-gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.lro-prev-page .test-text {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--prev-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 22px;
}
.lro-prev-page .test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--prev-border);
}
.lro-prev-page .test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--prev-gold-lt);
  border: 2px solid var(--prev-gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--prev-gold-dk);
  flex-shrink: 0;
}
.lro-prev-page .test-info strong {
  display: block;
  color: var(--prev-dark);
  font-size: 15px;
  font-weight: 700;
}
.lro-prev-page .test-info span {
  font-size: 13px;
  color: var(--prev-muted);
}
.lro-prev-page .test-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 12px;
}

/* --- Urgência --- */
.lro-prev-page .urgency {
  background: var(--prev-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lro-prev-page .urgency::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lro-prev-page .urgency .container {
  position: relative;
  z-index: 1;
}
.lro-prev-page .urgency .eyebrow {
  background: rgba(199, 159, 151, 0.12);
  border-color: rgba(199, 159, 151, 0.25);
}
.lro-prev-page .urgency h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.lro-prev-page .urgency h2 em {
  font-style: italic;
  color: var(--prev-gold);
}
.lro-prev-page .urgency p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 17px;
}
.lro-prev-page .urgency .eyebrow {
  margin-bottom: 20px;
}

/* --- Como funciona --- */
.lro-prev-page .how-grid {
  display: grid;
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--prev-border);
  border-radius: 20px;
  overflow: hidden;
}
.lro-prev-page .how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--prev-border);
  background: var(--prev-white);
  transition: background 0.2s;
}
.lro-prev-page .how-step:last-child {
  border-bottom: none;
}
.lro-prev-page .how-step:hover {
  background: var(--prev-gold-gl);
}
.lro-prev-page .how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--prev-gold-lt);
  border-right: 1px solid var(--prev-gold-bd);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--prev-gold-dk);
  font-weight: 700;
  flex-shrink: 0;
}
.lro-prev-page .how-content {
  padding: 28px;
}
.lro-prev-page .how-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  color: var(--prev-dark);
  margin-bottom: 6px;
}
.lro-prev-page .how-content p {
  font-size: 15px;
  color: var(--prev-muted);
  line-height: 1.65;
}

/* --- Objeções --- */
.lro-prev-page .obj-grid {
  display: grid;
  gap: 16px;
  margin-top: 52px;
}
.lro-prev-page .obj-item {
  background: var(--prev-white);
  border: 1px solid var(--prev-border);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  transition: all 0.25s;
}
.lro-prev-page .obj-item:hover {
  border-color: var(--prev-gold-bd);
  box-shadow: 0 6px 24px rgba(199, 159, 151, 0.1);
}
.lro-prev-page .obj-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--prev-gold-lt);
  border: 1px solid var(--prev-gold-bd);
  color: var(--prev-gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.lro-prev-page .obj-item strong {
  display: block;
  color: var(--prev-dark);
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 6px;
}
.lro-prev-page .obj-item p {
  font-size: 15px;
  color: var(--prev-text);
  line-height: 1.65;
}

/* --- Formulário --- */
.lro-prev-page .form-section {
  padding: 96px 0;
  background: var(--prev-bg2);
}
.lro-prev-page .form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) {
  .lro-prev-page .form-wrapper {
    grid-template-columns: 1fr;
  }
}

.lro-prev-page .form-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--prev-dark);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lro-prev-page .form-left h2 em {
  font-style: italic;
  color: var(--prev-gold-dk);
  font-weight: 400;
}
.lro-prev-page .form-left > p {
  font-size: 17px;
  color: var(--prev-text);
  margin-bottom: 32px;
  line-height: 1.7;
}
.lro-prev-page .eyebrow {
  margin-bottom: 16px;
}

.lro-prev-page .form-features {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}
.lro-prev-page .form-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lro-prev-page .form-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--prev-gold-lt);
  border: 1px solid var(--prev-gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.lro-prev-page .form-feature strong {
  display: block;
  color: var(--prev-dark);
  font-size: 15px;
  margin-bottom: 2px;
}
.lro-prev-page .form-feature span {
  font-size: 14px;
  color: var(--prev-muted);
}

.lro-prev-page .form-card {
  background: var(--prev-white);
  border: 1px solid var(--prev-border);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 16px 48px rgba(32, 32, 39, 0.07);
}
.lro-prev-page .form-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--prev-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.lro-prev-page .form-card > p {
  font-size: 14px;
  color: var(--prev-muted);
  margin-bottom: 28px;
}

.lro-prev-page .submit-btn {
  margin-top: 6px;
  background: var(--whatsappp-bg);
  color: #fff;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  transition: all 0.25s;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lro-prev-page .submit-btn svg {
  width: 31px;
  height: 30px;
}

.lro-prev-page .submit-btn:hover {
  opacity: 0.9;
  cursor: pointer;
  box-shadow: 0 0 50px #25d36650;
}

.lro-prev-page .form-disclaimer {
  font-size: 12px;
  color: var(--prev-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* --- FAQ --- */
.lro-prev-page .faq-list {
  margin-top: 52px;
}
.lro-prev-page .faq-item {
  background: var(--prev-white);
  border: 1px solid var(--prev-border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.lro-prev-page .faq-item:hover {
  border-color: var(--prev-gold-bd);
}
.lro-prev-page .faq-item.open {
  border-color: var(--prev-gold-bd);
}
.lro-prev-page .faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--prev-dark);
  padding: 20px 24px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.lro-prev-page .faq-q:hover {
  color: var(--prev-gold-dk);
}
.lro-prev-page .faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--prev-gold-lt);
  border: 1px solid var(--prev-gold-bd);
  color: var(--prev-gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
}
.lro-prev-page .faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--prev-gold);
  color: #fff;
  border-color: var(--prev-gold);
}
.lro-prev-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.lro-prev-page .faq-item.open .faq-a {
  max-height: 300px;
}
.lro-prev-page .faq-a-inner {
  padding: 16px 24px 20px;
  font-size: 15px;
  color: var(--prev-text);
  line-height: 1.75;
  border-top: 1px solid var(--prev-border);
}

/* --- CTA Final --- */
.lro-prev-page .final {
  padding: 110px 0;
  text-align: center;
  background: var(--prev-bg);
  position: relative;
  overflow: hidden;
}
.lro-prev-page .final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.lro-prev-page .final .container {
  position: relative;
  z-index: 1;
}
.lro-prev-page .final h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 68px);
  color: var(--prev-dark);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}
.lro-prev-page .final h2 em {
  font-style: italic;
  color: var(--prev-gold-dk);
  font-weight: 400;
}
.lro-prev-page .final > .container > p {
  font-size: 18px;
  color: var(--prev-text);
  max-width: 500px;
  margin: 0 auto 40px;
}
.lro-prev-page .final-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Reveal --- */
.lro-prev-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.lro-prev-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- WhatsApp flutuante --- */
.prev-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  background: var(--whatsappp-bg);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.prev-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

/* --- Responsivo --- */
@media (max-width: 640px) {
  .lro-prev-page .hero-ctas,
  .lro-prev-page .final-ctas {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .lro-prev-page .hero-trust {
    flex-direction: column;
    gap: 12px;
  }
  .lro-prev-page .how-step {
    grid-template-columns: 60px 1fr;
  }
  .lro-prev-page .how-num {
    font-size: 24px;
  }
  .lro-prev-page .form-card {
    padding: 28px 20px;
  }
  .lro-prev-page .hero {
    padding: 80px 0 60px;
  }
}

/* =============================================================================
   PÁGINA RECUPERAÇÃO DE CONTAS
   Estilos fiéis ao landing-redes-sociais-lro.html, escopados em .lro-recup-page
   ============================================================================= */

/* Ocultar header padrão do WordPress neste template */
.page-template-page-recuperacao-de-contas .ml-header {
  display: none !important;
}

/* --- Scan line animação --- */
@keyframes recup-scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}
.recup-scan {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 159, 151, 0.15),
    transparent
  );
  animation: recup-scanline 6s linear infinite;
  pointer-events: none;
}

/* --- Sticky bar --- */
.recup-sticky-bar {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 998;
  background: #c79f97;
  padding: 9px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #0e0e12;
  letter-spacing: 0.02em;
  transform: translateY(-110px);
  transition: transform 0.4s ease;
}
.recup-sticky-bar.visible {
  transform: translateY(0);
}
.recup-sticky-bar a {
  color: #0e0e12;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 800;
}

/* --- Nav customizada --- */
.lro-recup-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(14, 14, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #2a2a38;
  display: flex;
  justify-content: center;
}
.lro-recup-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  width: 100%;
  max-width: 960px;
}
.lro-recup-nav-logo {
  height: 36px;
}
.lro-recup-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lro-recup-nav-links a {
  text-decoration: none;
  color: #7a7888;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  font-family: "Quantico", sans-serif;
}
.lro-recup-nav-links a:hover {
  color: #c79f97;
}
.lro-recup-nav-cta {
  background: #c79f97;
  color: #0e0e12;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
  font-family: "Quantico", sans-serif;
}
.lro-recup-nav-cta:hover {
  background: transparent;
  color: #c79f97;
  border-color: rgba(199, 159, 151, 0.25);
}
@media (max-width: 640px) {
  .lro-recup-nav-links {
    display: none;
  }
}

/* --- Wrapper e variáveis --- */
.lro-recup-page {
  --recup-bg: #0e0e12;
  --recup-bg2: #13131a;
  --recup-bg3: #18181f;
  --recup-card: #1c1c26;
  --recup-border: #2a2a38;
  --recup-gold: #c79f97;
  --recup-gold-dk: #a87d74;
  --recup-gold-gl: rgba(199, 159, 151, 0.12);
  --recup-gold-bd: rgba(199, 159, 151, 0.25);
  --recup-teal: #7dd3c8;
  --recup-teal-gl: rgba(125, 211, 200, 0.08);
  --recup-teal-bd: rgba(125, 211, 200, 0.2);
  --recup-white: #f0eeec;
  --recup-muted: #7a7888;
  --recup-text: #b8b5c0;

  background: var(--recup-bg);
  color: var(--recup-text);
  font-family: "Epilogue", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture */
.lro-recup-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.7;
}

.lro-recup-page strong,
.lro-recup-page b {
  color: var(--recup-white);
  font-weight: 700;
}
.lro-recup-page em {
  color: var(--recup-gold);
  font-style: normal;
  font-weight: 600;
}

.lro-recup-page .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.lro-recup-page .container--wide {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* --- Botões --- */
.lro-recup-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--recup-gold);
  color: var(--recup-bg);
  padding: 15px 36px;
  border-radius: 6px;
  font-family: "Quantico", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.lro-recup-page .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.lro-recup-page .btn:hover {
  background: var(--recup-gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199, 159, 151, 0.3);
}

.lro-recup-page .btn-ghost {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsappp-bg);
  color: #fff;
  padding: 14px 34px;
  border-radius: 6px;
  font-family: "Quantico", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.lro-recup-page .btn-ghost:hover {
  background: var(--recup-gold-gl);
  border-color: var(--recup-gold);
}

.lro-recup-page .btn-ghost svg {
  width: 32px;
  height: 32px;
}

.lro-recup-page .btn-invert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--recup-bg);
  color: var(--recup-gold);
  padding: 15px 36px;
  border-radius: 6px;
  font-family: "Quantico", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.lro-recup-page .btn-invert:hover {
  background: var(--recup-bg2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* --- Seções compartilhadas --- */
.lro-recup-page .section {
  padding: 96px 0;
}
.lro-recup-page .section-alt {
  padding: 96px 0;
  background: var(--recup-bg2);
}

.lro-recup-page .s-eyebrow {
  font-family: "Syne Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--recup-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lro-recup-page .s-eyebrow::before {
  content: "//";
  opacity: 0.5;
}

.lro-recup-page .s-title {
  font-family: "Quantico", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--recup-white);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.lro-recup-page .s-title span {
  color: var(--recup-gold);
}
.lro-recup-page .s-title .teal {
  color: var(--recup-teal);
}
.lro-recup-page .s-sub {
  font-size: 17px;
  color: var(--recup-text);
  max-width: 580px;
  line-height: 1.7;
}

/* --- Hero --- */
.lro-recup-page .hero {
  min-height: 100vh;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lro-recup-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 159, 151, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 159, 151, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.lro-recup-page .hero-orb-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.lro-recup-page .hero-orb-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 211, 200, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.lro-recup-page .hero-content {
  position: relative;
  z-index: 1;
}

.lro-recup-page .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--recup-border);
  background: var(--recup-bg2);
  color: var(--recup-muted);
  padding: 7px 16px;
  border-radius: 4px;
  font-family: "Syne Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.lro-recup-page .hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--recup-gold);
  display: inline-block;
  box-shadow: 0 0 8px var(--recup-gold);
  animation: recup-pulse 2s ease-in-out infinite;
}
@keyframes recup-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.lro-recup-page .hero h1 {
  font-family: "Quantico", sans-serif;
  font-size: clamp(46px, 7.5vw, 88px);
  color: var(--recup-white);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.lro-recup-page .hero h1 .line-accent {
  color: var(--recup-gold);
  display: block;
}
.lro-recup-page .hero h1 .line-teal {
  color: var(--recup-teal);
  display: block;
}

.lro-recup-page .hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--recup-text);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.lro-recup-page .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.lro-recup-page .hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--recup-border);
}
.lro-recup-page .platform-label {
  font-size: 12px;
  color: var(--recup-muted);
  font-family: "Syne Mono", monospace;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.lro-recup-page .platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--recup-bg2);
  border: 1px solid var(--recup-border);
  color: var(--recup-text);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.lro-recup-page .platform-badge:hover {
  border-color: var(--recup-gold-bd);
  color: var(--recup-gold);
}
.lro-recup-page .platform-badge .ico {
  font-size: 14px;
}

/* --- Problema --- */
.lro-recup-page .problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--recup-border);
  margin-top: 56px;
}
.lro-recup-page .problem-cell {
  background: var(--recup-bg2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.lro-recup-page .problem-cell:hover {
  background: var(--recup-card);
}
.lro-recup-page .problem-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--recup-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.lro-recup-page .problem-cell:hover::before {
  opacity: 1;
}

.lro-recup-page .p-num {
  font-family: "Syne Mono", monospace;
  font-size: 11px;
  color: var(--recup-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.lro-recup-page .p-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.lro-recup-page .problem-cell h3 {
  font-family: "Quantico", sans-serif;
  font-size: 18px;
  color: var(--recup-white);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.lro-recup-page .problem-cell p {
  font-size: 14px;
  color: var(--recup-muted);
  line-height: 1.65;
}

.lro-recup-page .quote-block {
  margin: 56px 0 0;
  padding: 40px 44px;
  border: 1px solid var(--recup-border);
  border-left: 3px solid var(--recup-gold);
  background: var(--recup-bg2);
  position: relative;
}
.lro-recup-page .quote-block blockquote {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--recup-white);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}
.lro-recup-page .quote-block blockquote strong {
  color: var(--recup-gold);
  font-style: normal;
}

/* --- Serviços --- */
.lro-recup-page .srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--recup-border);
  margin-top: 56px;
}
.lro-recup-page .srv-cell {
  background: var(--recup-bg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.lro-recup-page .srv-cell:hover {
  background: var(--recup-bg3);
}
.lro-recup-page .srv-cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--recup-gold), var(--recup-teal));
  transition: width 0.4s ease;
}
.lro-recup-page .srv-cell:hover::after {
  width: 100%;
}
.lro-recup-page .srv-tag {
  font-family: "Syne Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--recup-teal);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.lro-recup-page .srv-cell h3 {
  font-family: "Quantico", sans-serif;
  font-size: 21px;
  color: var(--recup-white);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.lro-recup-page .srv-cell p {
  font-size: 14px;
  color: var(--recup-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.lro-recup-page .srv-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lro-recup-page .s-badge {
  background: var(--recup-bg2);
  border: 1px solid var(--recup-border);
  color: var(--recup-text);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  transition: border-color 0.2s;
}
.lro-recup-page .srv-cell:hover .s-badge {
  border-color: var(--recup-gold-bd);
  color: var(--recup-gold);
}

/* --- Urgência --- */
.lro-recup-page .urgency {
  padding: 80px 0;
  background: var(--recup-gold);
  position: relative;
  overflow: hidden;
}
.lro-recup-page .urgency::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.04) 20px,
    rgba(0, 0, 0, 0.04) 40px
  );
}
.lro-recup-page .urgency::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 60%
  );
}
.lro-recup-page .urgency .container {
  position: relative;
  z-index: 1;
}
.lro-recup-page .urgency h2 {
  font-family: "Quantico", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  color: var(--recup-bg);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.lro-recup-page .urgency p {
  color: rgba(14, 14, 18, 0.75);
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 36px;
}

/* --- Como funciona (timeline) --- */
.lro-recup-page .how-timeline {
  margin-top: 56px;
  position: relative;
}
.lro-recup-page .how-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--recup-gold),
    var(--recup-teal),
    transparent
  );
  opacity: 0.3;
}
.lro-recup-page .how-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--recup-border);
  position: relative;
}
.lro-recup-page .how-step:last-child {
  border-bottom: none;
}
.lro-recup-page .how-dot {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--recup-bg2);
  border: 1px solid var(--recup-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne Mono", monospace;
  font-size: 14px;
  color: var(--recup-gold);
  position: relative;
  z-index: 1;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.lro-recup-page .how-step:hover .how-dot {
  border-color: var(--recup-gold-bd);
  background: var(--recup-gold-gl);
}
.lro-recup-page .how-body h3 {
  font-family: "Quantico", sans-serif;
  font-size: 19px;
  color: var(--recup-white);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  padding-top: 14px;
}
.lro-recup-page .how-body p {
  font-size: 15px;
  color: var(--recup-muted);
  line-height: 1.65;
}

/* --- Diferenciais --- */
.lro-recup-page .diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.lro-recup-page .diff-card {
  background: var(--recup-card);
  border: 1px solid var(--recup-border);
  padding: 32px 26px;
  border-radius: 2px;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.lro-recup-page .diff-card:hover {
  border-color: var(--recup-gold-bd);
  transform: translateY(-4px);
}
.lro-recup-page .diff-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Syne Mono", monospace;
  font-size: 11px;
  color: var(--recup-border);
  letter-spacing: 0.1em;
}
.lro-recup-page .diff-icon {
  width: 48px;
  height: 48px;
  background: var(--recup-gold-gl);
  border: 1px solid var(--recup-gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  border-radius: 2px;
}
.lro-recup-page .diff-card h3 {
  font-family: "Quantico", sans-serif;
  font-size: 17px;
  color: var(--recup-white);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.lro-recup-page .diff-card p {
  font-size: 14px;
  color: var(--recup-muted);
  line-height: 1.65;
}

/* --- Objeções --- */
.lro-recup-page .obj-grid {
  display: grid;
  gap: 1px;
  background: var(--recup-border);
  margin-top: 56px;
}
.lro-recup-page .obj-row {
  background: var(--recup-bg2);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  transition: background 0.2s;
}
.lro-recup-page .obj-row:hover {
  background: var(--recup-card);
}
.lro-recup-page .obj-q {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--recup-muted);
}
.lro-recup-page .obj-q::before {
  content: '"';
  color: var(--recup-gold);
  opacity: 0.5;
  font-size: 24px;
  line-height: 0;
  vertical-align: -4px;
  margin-right: 4px;
}
.lro-recup-page .obj-a {
  font-size: 15px;
  color: var(--recup-text);
  line-height: 1.65;
}
.lro-recup-page .obj-a strong {
  color: var(--recup-gold);
}

/* --- Formulário / Terminal --- */
.lro-recup-page .form-section {
  padding: 96px 0;
}
.lro-recup-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .lro-recup-page .form-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.lro-recup-page .form-left {
  padding-top: 8px;
}
.lro-recup-page .form-left .s-title {
  font-size: clamp(30px, 4vw, 46px);
}
.lro-recup-page .form-left > p {
  font-size: 16px;
  color: var(--recup-text);
  margin: 16px 0 36px;
  line-height: 1.7;
}

.lro-recup-page .form-checks {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}
.lro-recup-page .form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--recup-bg2);
  border: 1px solid var(--recup-border);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.lro-recup-page .form-check:hover {
  border-color: var(--recup-gold-bd);
}
.lro-recup-page .fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: var(--recup-gold-gl);
  border: 1px solid var(--recup-gold-bd);
  color: var(--recup-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.lro-recup-page .form-check strong {
  display: block;
  color: var(--recup-white);
  font-size: 14px;
  margin-bottom: 2px;
}
.lro-recup-page .form-check span {
  font-size: 13px;
  color: var(--recup-muted);
}

.lro-recup-page .terminal {
  background: var(--recup-bg2);
  border: 1px solid var(--recup-border);
  border-radius: 2px;
  overflow: hidden;
}
.lro-recup-page .terminal-bar {
  background: var(--recup-bg3);
  border-bottom: 1px solid var(--recup-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lro-recup-page .t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lro-recup-page .t-dot-r {
  background: #ff5f57;
}
.lro-recup-page .t-dot-y {
  background: #ffbd2e;
}
.lro-recup-page .t-dot-g {
  background: #28c840;
}
.lro-recup-page .t-title {
  font-family: "Syne Mono", monospace;
  font-size: 11px;
  color: var(--recup-muted);
  margin-left: 8px;
  letter-spacing: 0.06em;
}
.lro-recup-page .terminal-body {
  padding: 32px 28px;
}

/* .lro-recup-page .t-submit {
  margin-top: 6px;
  background: var(--whatsappp-bg);
  color: var(--recup-bg);
  padding: 15px;
  border: none;
  cursor: pointer;
  font-family: "Quantico", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
} */

.lro-recup-page .t-submit {
  background-color: var(--whatsappp-bg);
  font-family: "Quantico", sans-serif;
  height: fit-content;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  transition: all 0.6s;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.lro-recup-page .t-submit svg {
  width: 31px;
  height: 30px;
}

.lro-recup-page .t-submit:hover {
  cursor: pointer;
  opacity: 0.9;
  box-shadow: 0 0 50px #25d36650;
}

.lro-recup-page .t-disclaimer {
  font-size: 12px;
  color: var(--recup-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* --- FAQ --- */
.lro-recup-page .faq-grid {
  display: grid;
  gap: 0;
  margin-top: 52px;
}
.lro-recup-page .faq-item {
  border-bottom: 1px solid var(--recup-border);
}
.lro-recup-page .faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--recup-white);
  padding: 22px 0;
  font-family: "Quantico", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.lro-recup-page .faq-q:hover {
  color: var(--recup-gold);
}
.lro-recup-page .faq-arr {
  font-family: "Syne Mono", monospace;
  color: var(--recup-gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.lro-recup-page .faq-item.open .faq-arr {
  transform: rotate(45deg);
}
.lro-recup-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.lro-recup-page .faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}
.lro-recup-page .faq-a p {
  font-size: 15px;
  color: var(--recup-muted);
  line-height: 1.75;
}

/* --- CTA Final --- */
.lro-recup-page .final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--recup-bg2);
}
.lro-recup-page .final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 159, 151, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 159, 151, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.lro-recup-page .final::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 159, 151, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.lro-recup-page .final .container {
  position: relative;
  z-index: 1;
}
.lro-recup-page .final h2 {
  font-family: "Quantico", sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  color: var(--recup-white);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 22px;
}
.lro-recup-page .final h2 span {
  color: var(--recup-gold);
}
.lro-recup-page .final h2 .teal {
  color: var(--recup-teal);
}
.lro-recup-page .final > .container > p {
  font-size: 18px;
  color: var(--recup-text);
  max-width: 480px;
  margin: 0 auto 44px;
}
.lro-recup-page .final-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Reveal --- */
.lro-recup-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.lro-recup-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.lro-recup-page .reveal-l {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.lro-recup-page .reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- WhatsApp flutuante --- */
.recup-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  background: var(--whatsappp-bg);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.recup-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* --- Responsivo --- */
@media (max-width: 640px) {
  .lro-recup-page .hero-ctas,
  .lro-recup-page .final-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .lro-recup-page .obj-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lro-recup-page .quote-block {
    padding: 28px 24px;
  }
  .lro-recup-page .how-step {
    grid-template-columns: 44px 1fr;
  }
}
