@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   RESET Y BASE
══════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

body.pdps-body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #f7f8fa;
  font-family: 'Outfit', sans-serif;
  color: #12151F;
}

body.pdps-body * {
  box-sizing: border-box;
}

body.pdps-body a {
  text-decoration: none;
}

body.pdps-body img {
  max-width: 100%;
  height: auto;
}

body.pdps-body svg {
  display: block;
}

/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */

.pdps-landing {
  --pdps-gold: #F5A623;
  --pdps-gold-dark: #d88d12;
  --pdps-green: #25D366;
  --pdps-dark: #0f1728;
  --pdps-dark-2: #12151F;
  --pdps-text: #12151F;
  --pdps-muted: #5d6475;
  --pdps-light: #F7F8FA;
  --pdps-white: #ffffff;
  --pdps-border: rgba(16, 24, 40, 0.08);
  --pdps-shadow: 0 14px 40px rgba(14, 20, 33, 0.10);
  --pdps-shadow-soft: 0 6px 22px rgba(14, 20, 33, 0.08);
  background: var(--pdps-light);
}

/* ══════════════════════════════════════
   UTILIDADES
══════════════════════════════════════ */

.pdps-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.pdps-section {
  padding: 88px 0;
}

.pdps-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pdps-gold);
  margin-bottom: 18px;
}

.pdps-section__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pdps-gold);
  border-radius: 999px;
}

.pdps-section__title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--pdps-text);
  margin: 0 0 14px;
}

.pdps-section__desc {
  max-width: 860px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--pdps-muted);
  margin: 0 0 42px;
}

/* ══════════════════════════════════════
   BOTONES
══════════════════════════════════════ */

.pdps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 190px;
  height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  border: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
  cursor: pointer;
}

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

.pdps-btn--primary {
  background: var(--pdps-gold);
  color: #0A0E1A;
  box-shadow: 0 8px 26px rgba(245,166,35,0.34);
}

.pdps-btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 12px 34px rgba(245,166,35,0.42);
}

.pdps-btn--outline {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(4px);
}

.pdps-btn--outline:hover {
  border-color: rgba(255,255,255,0.52);
  box-shadow: 0 0 24px rgba(255,255,255,0.08);
}

.pdps-btn--whatsapp {
  background: var(--pdps-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.24);
}

.pdps-btn--whatsapp:hover {
  filter: brightness(1.06);
  box-shadow: 0 12px 34px rgba(37,211,102,0.34);
}

.pdps-btn--whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */

.pdps-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at top right, rgba(245,166,35,0.16), transparent 28%),
    radial-gradient(circle at top left, rgba(37,211,102,0.08), transparent 24%),
    linear-gradient(180deg, #09101d 0%, #0f1728 55%, #131d31 100%);
}

.pdps-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.pdps-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pdps-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pdps-gold);
  border: 1px solid rgba(245,166,35,0.34);
  background: rgba(245,166,35,0.10);
  padding: 8px 18px;
  border-radius: 999px;
  margin: 0 0 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.pdps-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 8px 32px rgba(0,0,0,0.46);
}

.pdps-hero__line {
  display: block;
}

.pdps-hero__line--accent {
  color: var(--pdps-gold);
}

.pdps-hero__subtitle {
  max-width: 840px;
  margin: 0 auto 28px;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.pdps-hero__subtitle strong {
  color: #fff;
  font-weight: 700;
}

.pdps-hero__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   NAVEGACIÓN ANCLAS
══════════════════════════════════════ */

.pdps-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16,24,40,0.06);
}

.pdps-anchor-nav__inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}

.pdps-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(16,24,40,0.08);
  color: var(--pdps-text);
  font-size: 13px;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pdps-anchor-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(245,166,35,0.40);
  box-shadow: 0 8px 20px rgba(14,20,33,0.08);
}

/* ══════════════════════════════════════
   TRUST
══════════════════════════════════════ */

.pdps-trust {
  padding-top: 28px;
  padding-bottom: 0;
}

.pdps-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pdps-trust__item {
  background: #fff;
  border: 1px solid var(--pdps-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--pdps-shadow-soft);
}

.pdps-trust__item h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--pdps-text);
}

.pdps-trust__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pdps-muted);
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */

.pdps-pricing--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.92) 100%);
  border-top: 1px solid rgba(16,24,40,0.04);
  border-bottom: 1px solid rgba(16,24,40,0.04);
}

.pdps-note {
  max-width: 1120px;
  margin: 0 0 28px;
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.28);
  color: var(--pdps-text);
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.pdps-note strong {
  color: var(--pdps-gold-dark);
}

.pdps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pdps-cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

.pdps-card {
  background: #fff;
  border: 1px solid var(--pdps-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--pdps-shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pdps-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pdps-shadow);
  border-color: rgba(245,166,35,0.24);
}

.pdps-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pdps-text);
}

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

.pdps-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--pdps-muted);
}

.pdps-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.65;
}

.pdps-card ul li:last-child {
  margin-bottom: 0;
}

.pdps-card__price {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.24);
  color: var(--pdps-gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.pdps-card--featured {
  background: linear-gradient(135deg, #131c2f 0%, #0f1728 100%);
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 18px 48px rgba(10,14,26,0.26);
}

.pdps-card--featured h3,
.pdps-card--featured p,
.pdps-card--featured ul,
.pdps-card--featured ul li {
  color: rgba(255,255,255,0.88);
}

.pdps-card--featured h3 {
  color: #fff;
}

.pdps-card__price--featured {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.pdps-card--soft {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.pdps-card--wide {
  grid-column: span 2;
}

.pdps-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--pdps-gold);
  color: #0A0E1A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(245,166,35,0.24);
}

/* ══════════════════════════════════════
   FIT
══════════════════════════════════════ */

.pdps-fit {
  background: #0f1728;
}

.pdps-fit .pdps-section__title,
.pdps-fit .pdps-section__desc {
  color: #fff;
}

.pdps-fit .pdps-section__desc {
  color: rgba(255,255,255,0.72);
}

.pdps-fit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pdps-fit__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.pdps-fit__card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.pdps-fit__card p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 15px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */

.pdps-faq__list {
  display: grid;
  gap: 14px;
}

.pdps-faq__item {
  background: #fff;
  border: 1px solid var(--pdps-border);
  border-radius: 16px;
  padding: 0 22px;
  box-shadow: var(--pdps-shadow-soft);
}

.pdps-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 28px 20px 0;
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: var(--pdps-text);
}

.pdps-faq__item summary::-webkit-details-marker {
  display: none;
}

.pdps-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 24px;
  line-height: 1;
  color: var(--pdps-gold);
  font-weight: 400;
}

.pdps-faq__item[open] summary::after {
  content: "–";
}

.pdps-faq__answer {
  margin: 0;
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--pdps-muted);
}

/* ══════════════════════════════════════
   BANDA
══════════════════════════════════════ */

.pdps-contact-band {
  background: #12151F;
  padding: 62px 0;
  text-align: center;
}

.pdps-contact-band p {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
}

.pdps-contact-band p:last-child {
  margin-bottom: 0;
}

.pdps-contact-band strong {
  color: #fff;
}

/* ══════════════════════════════════════
   CONTACTO
══════════════════════════════════════ */

.pdps-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pdps-contact__pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pdps-contact__pill {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 92px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--pdps-border);
  box-shadow: var(--pdps-shadow-soft);
  color: var(--pdps-text);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

a.pdps-contact__pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--pdps-shadow);
  border-color: rgba(245,166,35,0.24);
}

a.pdps-contact__pill--wa:hover {
  border-color: rgba(37,211,102,0.34);
}

.pdps-contact__pill--email {
  grid-column: span 2;
}

.pdps-contact__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pdps-muted);
}

.pdps-contact__value {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--pdps-text);
}

.pdps-contact__pill--email .pdps-contact__value {
  white-space: nowrap;
  font-size: 15px;
}

.pdps-contact__form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════
   FORMIDABLE
══════════════════════════════════════ */

.pdps-contact__form-card .frm_forms,
.pdps-contact__form-card .frm_form_fields,
.pdps-contact__form-card form {
  width: 100%;
}

.pdps-contact__form-card .frm_form_field {
  margin-bottom: 16px !important;
}

.pdps-contact__form-card .frm_primary_label,
.pdps-contact__form-card label {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--pdps-text) !important;
  margin-bottom: 8px !important;
}

.pdps-contact__form-card input[type="text"],
.pdps-contact__form-card input[type="email"],
.pdps-contact__form-card input[type="tel"],
.pdps-contact__form-card input[type="number"],
.pdps-contact__form-card textarea,
.pdps-contact__form-card select {
  width: 100% !important;
  min-height: 52px !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(16,24,40,0.14) !important;
  background: #fff !important;
  box-shadow: none !important;
  font-size: 15px !important;
  color: var(--pdps-text) !important;
}

.pdps-contact__form-card textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

.pdps-contact__form-card input:focus,
.pdps-contact__form-card textarea:focus,
.pdps-contact__form-card select:focus {
  outline: none !important;
  border-color: rgba(245,166,35,0.62) !important;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.12) !important;
}

.pdps-contact__form-card .frm_submit,
.pdps-contact__form-card .frm_button_submit-wrap {
  margin-top: 10px !important;
}

.pdps-contact__form-card input[type="submit"],
.pdps-contact__form-card button[type="submit"],
.pdps-contact__form-card .frm_button_submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  height: 52px !important;
  padding: 0 22px !important;
  border-radius: 12px !important;
  border: none !important;
  background: var(--pdps-gold) !important;
  color: #0A0E1A !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 8px 24px rgba(245,166,35,0.28) !important;
}

.pdps-contact__form-card input[type="submit"]:hover,
.pdps-contact__form-card button[type="submit"]:hover,
.pdps-contact__form-card .frm_button_submit:hover {
  filter: brightness(1.05) !important;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

.pdps-footer {
  padding: 20px 24px 36px;
  text-align: center;
  background: #f7f8fa;
}

.pdps-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--pdps-muted);
}

.pdps-footer a {
  color: var(--pdps-text);
  font-weight: 700;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1100px) {
  .pdps-cards,
  .pdps-fit__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdps-card--wide {
    grid-column: span 2;
  }

  .pdps-contact__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pdps-container {
    padding: 0 18px;
  }

  .pdps-section {
    padding: 64px 0;
  }

  .pdps-hero {
    padding: 68px 0 52px;
  }

  .pdps-hero__title {
    font-size: clamp(42px, 12vw, 62px);
    line-height: 0.94;
  }

  .pdps-hero__subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .pdps-hero__buttons {
    flex-direction: column;
    align-items: center;
    max-width: 310px;
    margin: 0 auto;
  }

  .pdps-btn {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .pdps-anchor-nav__inner {
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .pdps-anchor-nav a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .pdps-trust__grid,
  .pdps-cards,
  .pdps-cards--2,
  .pdps-fit__grid,
  .pdps-contact__pills {
    grid-template-columns: 1fr;
  }

  .pdps-card--wide,
  .pdps-contact__pill--email {
    grid-column: auto;
  }

  .pdps-card {
    padding: 24px 20px;
  }

  .pdps-section__title {
    font-size: 32px;
  }

  .pdps-contact__pill--email .pdps-contact__value {
    white-space: normal;
    font-size: 16px;
    word-break: break-word;
  }

  .pdps-contact__form-card {
    padding: 22px 18px;
  }

  .pdps-contact__form-card input[type="submit"],
  .pdps-contact__form-card button[type="submit"],
  .pdps-contact__form-card .frm_button_submit {
    width: 100% !important;
    min-width: 0 !important;
  }
}

.pdps-card__micro {
  margin-top: 16px !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #6b7280 !important;
}