/* Estilos del clone editable — complementa site.css */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body.page-body {
  display: block !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  overflow-x: hidden;
  width: 100%;
}

#progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 6px;
  background: var(--fundo-card, #1a2736);
}

#progress-bar {
  height: 100%;
  background: linear-gradient(to right, #d4af37, #e8c94a);
  width: 0;
  transition: width 0.3s ease;
}

#step-dots {
  position: fixed;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 40;
}

.dot {
  height: 6px;
  width: 6px;
  border-radius: 9999px;
  background: #1a2736;
  transition: all 0.3s;
}

.dot-active {
  background: #d4af37;
  width: 24px;
}

.dot-done {
  background: rgba(212, 175, 55, 0.5);
}

#app {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 5rem;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 640px) {
  #app {
    padding: 3rem 1.5rem 5.5rem;
  }
}

.screen {
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.screen-cover,
.screen-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.logo-wrap {
  position: relative;
  width: 240px;
  height: 172px;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .logo-wrap {
    width: 320px;
    height: 229px;
    margin-bottom: 2rem;
  }
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 1rem;
  filter: blur(40px);
  transform: scale(1.1);
}

.logo-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.title-playfair {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .title-playfair {
    font-size: 1.75rem;
  }
}

.title-montserrat {
  font-family: Montserrat, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .title-montserrat {
    font-size: 1.35rem;
  }
}

.subtitle-gold {
  font-family: Montserrat, sans-serif;
  color: #d4af37;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.question-label {
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  color: rgba(212, 175, 55, 0.7);
  margin-bottom: 1rem;
}

.answers {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.answer-btn {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.answer-btn > span:last-child {
  flex: 1;
  min-width: 0;
}

.answer-letter {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.6);
}

.screen-result {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  overflow-x: hidden;
}

.screen-result .title-playfair,
.screen-result .title-montserrat,
.screen-result h2,
.screen-result h3,
.screen-result h4 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.text-center {
  text-align: center;
}

.profile-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #1a2736;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.icon-gold {
  color: #d4af37;
}

.icon-green {
  color: #4ade80;
}

.icon-red {
  color: #f87171;
}

.profile-badge {
  text-align: center;
  margin-bottom: 0.5rem;
}

.profile-badge span {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 9999px;
  color: #d4af37;
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}

.profile-card {
  background: #1a2736;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #d4af37;
  margin-bottom: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e8e8e8;
}

.profile-card .insight {
  color: #d4af37;
  font-weight: 500;
  margin-top: 0.75rem;
}

.section-center,
.section-block {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: Montserrat, sans-serif;
  color: #e8e8e8;
  line-height: 1.6;
}

.text-muted {
  color: #9ca3af;
}

.text-muted-inline {
  color: #9ca3af;
}

.text-gold {
  color: #d4af37;
}

.text-small-muted {
  font-size: 0.8rem;
  color: #9ca3af;
}

.text-tiny-muted {
  font-size: 10px;
  color: rgba(156, 163, 175, 0.6);
  max-width: 28rem;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

/* Contenedor CTA — evita recorte en móvil y desktop */
.cta-wrap {
  width: 100%;
  max-width: 100%;
  padding: 0 0.25rem;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.cta-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 1rem 1.25rem !important;
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem !important;
  font-weight: 700;
  line-height: 1.35 !important;
  text-align: center;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .cta-btn {
    max-width: 26rem;
    font-size: 1rem !important;
    padding: 1.125rem 1.5rem !important;
  }
}

@media (min-width: 640px) {
  .cta-btn {
    max-width: 28rem;
    font-size: 1.05rem !important;
  }
}

.cta-btn svg {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
}

.mb-section {
  margin-bottom: 2.5rem;
}

.mb-section.cta-wrap {
  margin-bottom: 2.5rem;
}

.mb-grid {
  margin-bottom: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-pain,
.card-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(26, 39, 54, 0.6);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: left;
  font-size: 0.85rem;
}

.card-pain {
  border: 1px solid rgba(127, 29, 29, 0.2);
}

.card-benefit {
  border: 1px solid rgba(212, 175, 55, 0.05);
  align-items: center;
}

.quote-box {
  background: #1a2736;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.quote-box p {
  color: #d4af37;
  font-style: italic;
  font-size: 0.9rem;
}

.quote-box.inline {
  display: block;
  max-width: 100%;
  margin: 1rem auto 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.trust-badges > div {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-note {
  text-align: center;
  margin-bottom: 0.5rem;
}

.card-step {
  background: #1a2736;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  background: #d4af37;
  color: #0f1923;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.card-step h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.card-step p {
  color: #9ca3af;
  font-size: 0.8rem;
}

.italic-quote {
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.grid-listen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .grid-listen {
    grid-template-columns: repeat(3, 1fr);
  }
}

.listen-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.listen-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.listen-label {
  background: #1a2736;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
}

.card-foryou,
.card-deliverable {
  background: #1a2736;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: left;
}

.card-foryou h4,
.card-deliverable h4 {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.card-foryou p,
.card-deliverable p {
  color: #9ca3af;
  font-size: 0.8rem;
  line-height: 1.5;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  background: #1a2736;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  color: #fff;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: start;
}

.accordion-q {
  font-weight: 500;
  font-size: 0.9rem;
  padding-right: 0.5rem;
  line-height: 1.4;
}

.cta-label {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.accordion-icon {
  color: #d4af37;
  transition: transform 0.2s;
}

.accordion-btn.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-a {
  grid-column: 1 / -1;
  display: none;
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.5;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.accordion-btn.open .accordion-a {
  display: block;
}

.card-content {
  background: #1a2736;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.investment-section {
  scroll-margin-top: 1.5rem;
}

.pricing-card {
  background: #1a2736;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 1.5rem 2rem;
  }
}

.pricing-card .cta-wrap {
  padding: 0;
}

.pricing-card .cta-btn {
  max-width: 100%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
}

.stat-label {
  font-size: 0.7rem;
  color: #9ca3af;
}

.price-old {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
  font-family: Montserrat, sans-serif;
}

.price-value {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 12vw, 3.5rem);
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

.price-cents {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 600;
}

.material-details {
  background: rgba(15, 25, 35, 0.5);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  text-align: left;
}

.details-grid > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #e8e8e8;
}

.guarantee-card {
  background: #1a2736;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.guarantee-card h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  margin: 0.75rem 0;
  font-size: 1.15rem;
}

.guarantee-card p {
  font-size: 0.9rem;
  color: #e8e8e8;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid #1a2736;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.font-semibold {
  font-weight: 600;
}

.not-italic {
  font-style: normal;
}
