:root{
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-2: #f1eee8;
  --surface-dark: #101010;
  --surface-dark-2: #181818;

  --text: #171717;
  --text-soft: #66615b;
  --text-light: #d7d7d7;
  --white: #ffffff;

  --accent: #f57c00;
  --accent-strong: #dd6f00;
  --accent-soft: #fff1e4;

  --border: rgba(23,23,23,.08);
  --shadow-sm: 0 10px 26px rgba(16,16,16,.06);
  --shadow-md: 0 20px 54px rgba(16,16,16,.10);
  --shadow-lg: 0 35px 90px rgba(16,16,16,.16);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 38px;

  --container: 1180px;
  --container-narrow: 900px;

  --font-title: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;

  --hero-title: clamp(2.2rem, 4.8vw, 4.7rem);
  --section-title: clamp(1.9rem, 3vw, 3.1rem);
  --card-title: clamp(1.02rem, 1.5vw, 1.24rem);
  --text-lg: clamp(1.02rem, 1.25vw, 1.12rem);
  --text-md: 1rem;
  --text-sm: .92rem;

  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6rem;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

button,input,textarea,select{
  font: inherit;
}

.container{
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section-narrow{
  width: min(100%, var(--container-narrow));
  margin: 0 auto;
}

.section{
  padding: var(--space-10) 0;
}

.section-heading{
  margin-bottom: var(--space-8);
  max-width: 760px;
}

.section-heading.center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker,
.eyebrow{
  display: inline-flex;
  align-items: center;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 1rem;
}

.section-heading h2,
.hero-title{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--text);
}

.hero-title{
  font-size: var(--hero-title);
  max-width: 9.8ch;
}

.section-heading h2{
  font-size: var(--section-title);
  max-width: 14ch;
}

.section-heading.center h2{
  margin-left: auto;
  margin-right: auto;
}

.section-heading p,
.hero-text,
.hero-note,
.story-card p,
.section-closing,
.value-quote,
.plan-note,
.cta-box p,
.branding-copy p,
.catalog-copy p,
.trust-copy p,
.simple-copy p,
.referral-copy p{
  color: var(--text-soft);
  font-size: var(--text-lg);
}

.plan-note{
  margin-bottom: 1.2rem;
}

/* =========================
   HEADER
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(12,12,12,.86);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner{
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo{
  height: 42px;
  width: auto;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a{
  color: rgba(255,255,255,.84);
  font-size: .94rem;
  font-weight: 500;
  transition: .25s ease;
}

.main-nav a:hover{
  color: var(--accent);
}

.header-actions{
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-primary{
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(245,124,0,.20);
}

.btn-primary:hover{
  background: var(--accent-strong);
}

.btn-trial{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .22rem;
  min-height: 78px;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(245,124,0,.22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  max-width: 430px;
  width: 100%;
}

.btn-trial:hover{
  transform: translateY(-1px);
  background: var(--accent-strong);
  box-shadow: 0 20px 38px rgba(245,124,0,.26);
}

.btn-trial__title{
  font-size: 1.02rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: .01em;
}

.btn-trial__sub{
  font-size: .83rem;
  line-height: 1.2;
  font-weight: 500;
  opacity: .97;
}

.btn-trial--basic{
  background: #efe4d6;
  color: #222222;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.btn-trial--basic:hover{
  background: #e6d7c6;
  color: #111111;
}

.btn-trial--basic .btn-trial__sub{
  opacity: .9;
}

.hero-actions--single{
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.btn-secondary{
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover{
  background: #fcfcfc;
}

.btn-login{
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
}

.btn-login:hover{
  background: #f5f5f5;
  color: #111111;
}

/* =========================
   HERO
   ========================= */

.hero-section{
  position: relative;
  overflow: hidden;
  padding: 4.3rem 0 5rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(75, 38, 2, 0.324), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(245, 123, 0, 0.116), transparent 20%),
    linear-gradient(180deg, #111111 0%, #161616 60%, #393939 75%, #6f6f6f 85%,#bcbcbb 90%, #f6f4ef 100%);
}

.hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy{
  padding-top: .5rem;
  max-width: 560px;
  position: relative;
  z-index: 4;
}

.hero-section .eyebrow{
  background: rgba(255,255,255,.08);
  color: #ffd2a0;
}

.hero-section .hero-title,
.hero-section .hero-text,
.hero-section .hero-note{
  color: var(--white);
}

.hero-text{
  max-width: 58ch;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.82);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 1rem;
}

.hero-note{
  margin: 0;
  max-width: 55ch;
  color: rgba(255,255,255,.68);
  font-size: .98rem;
}

.hero-note strong{
  color: var(--white);
}

.hero-visual{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone{
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  background: linear-gradient(180deg, #232323, #0f0f0f);
  padding: 14px;
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06);
}

.hero-phone img{
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 10 / 20;
  object-fit: cover;
}

.hero-floating{
  position: absolute;
  z-index: 3;
  width: 180px;
  background: rgba(255,255,255,.94);
  padding: 9px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16,16,16,.16);
  backdrop-filter: blur(10px);
}

.hero-floating img{
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-floating--catalogo{
  top: 8%;
  left: 6%;
}

.hero-floating--mapa{
  top: 34%;
  right: 1%;
}

.hero-floating--solicitudes{
  bottom: 10%;
  left: 10%;
}

/* =========================
   GENERAL CARDS
   ========================= */

.problem-card,
.value-card,
.step-card,
.benefit-card,
.pricing-card,
.story-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.problem-section{
  background: var(--bg);
}

.problem-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.problem-card{
  padding: 1.35rem;
  min-height: 118px;
  display: flex;
  align-items: flex-start;
}

.problem-card p{
  margin: 0;
  font-weight: 500;
  color: var(--text);
}

.section-closing{
  margin: 1.9rem 0 0;
  text-align: center;
  color: var(--text);
}

.value-section{
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
}

.value-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-visual{
  margin: 0 0 2rem;
  display: flex;
  justify-content: center;
}

.value-visual img{
  width: 100%;
  max-width: 760px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: block;
}


.value-card{
  padding: 1.5rem;
}

.value-card h3,
.step-card h3,
.benefit-card h3,
.pricing-card h3,
.footer-links h3,
.footer-contact h3{
  margin: 0 0 .65rem;
  font-size: var(--card-title);
  line-height: 1.2;
  color: var(--text);
  font-family: var(--font-title);
}

.value-card p,
.step-card p,
.benefit-card p{
  margin: 0;
  color: var(--text-soft);
}

.value-quote{
  margin: 2rem 0 0;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-weight: 600;
}

/* =========================
   STEPS
   ========================= */

.steps-section{
  background: var(--surface-dark);
}

.steps-section .section-heading h2{
  color: var(--white);
}

.steps-section .section-kicker{
  background: rgba(255,255,255,.08);
  color: #ffd2a0;
}

.steps-list{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.step-card{
  padding: 1.3rem;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}

.step-card h3{
  color: var(--white);
}

.step-card p{
  color: rgba(255,255,255,.74);
  font-size: .96rem;
}

.step-number{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* =========================
   TWO COLUMN SECTIONS
   ========================= */

.branding-grid,
.catalog-grid,
.trust-grid,
.referral-grid,
.simple-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.branding-visual img,
.catalog-visual img,
.trust-visual img,
.referral-visual img,
.simple-visual img{
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.benefit-list{
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .8rem;
}

.benefit-list li{
  position: relative;
  padding-left: 1.3rem;
  color: var(--text);
  font-weight: 500;
}

.benefit-list li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: .65rem;
}

.branding-highlight,
.catalog-highlight,
.trust-highlight,
.simple-highlight,
.referral-highlight,
.story-closing{
  margin-top: 1.3rem;
  color: var(--text);
  font-weight: 600;
}

.trust-section{
  background: linear-gradient(180deg, #fff7f0 0%, #ffffff 100%);
}

/* =========================
   BENEFITS
   ========================= */

.benefits-section{
  background: var(--surface-2);
}

.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-card{
  padding: 1.4rem;
}

/* =========================
   REFERRAL
   ========================= */

.referral-section{
  background: var(--surface-dark);
}

.referral-section .section-kicker{
  background: rgba(255,255,255,.08);
  color: #ffd2a0;
}

.referral-section h2,
.referral-section p,
.referral-item strong,
.referral-item span{
  color: var(--white);
}

.referral-item{
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.referral-steps{
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

/* =========================
   PRICING
   ========================= */

.pricing-section{
  background: var(--bg);
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.pricing-card{
  position: relative;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card .btn-trial{
  margin-top: auto;
}

.pricing-card ul{
  margin: 1.15rem 0 1.45rem;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.pricing-card li + li{
  margin-top: .7rem;
}

.plan-name{
  display: inline-block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin-bottom: .5rem;
}

.plan-badge{
  display: inline-flex;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

.pricing-card h3{
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.pricing-card h3 small{
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
}

.pricing-card--featured{
  background: linear-gradient(180deg, #191919 0%, #101010 100%);
  border-color: rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured h3,
.pricing-card--featured li,
.pricing-card--featured .plan-note{
  color: var(--white);
}

.pricing-card--featured h3 small{
  color: rgba(255,255,255,.68);
}

/* =========================
   SIMPLE
   ========================= */

.simple-section{
  background: #ffffff;
}

/* =========================
   STORY
   ========================= */

.story-section{
  background: linear-gradient(180deg, #fcfbf8 0%, #f4f1eb 100%);
}

.story-card{
  padding: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.story-card p{
  margin: 0;
}

.story-card p + p{
  margin-top: 1rem;
}

/* =========================
   CTA
   ========================= */

.cta-section{
  padding-top: 0;
  background: var(--bg);
}

.cta-box{
  background:
    radial-gradient(circle at 10% 10%, rgba(245,124,0,.12), transparent 26%),
    linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-lg);
}

.cta-box .section-kicker{
  background: rgba(255,255,255,.08);
  color: #ffd2a0;
}

.cta-box h2{
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  font-family: var(--font-title);
  max-width: 14ch;
}

.cta-box p,
.cta-box .cta-note{
  color: rgba(255,255,255,.78);
}

.cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.5rem;
}

.cta-note{
  margin: 1rem 0 0;
  font-size: .95rem;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  background: #0d0d0d;
  color: var(--text-light);
  margin-top: 5rem;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-logo{
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-bottom p{
  color: rgba(255,255,255,.72);
}

.footer-links,
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-links h3,
.footer-contact h3{
  color: var(--white);
  font-size: 1rem;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0 1.4rem;
}

.footer-bottom p{
  margin: 0;
  font-size: .92rem;
  text-align: center;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1180px){
  .hero-grid,
  .branding-grid,
  .catalog-grid,
  .trust-grid,
  .referral-grid,
  .simple-grid{
    grid-template-columns: 1fr;
  }

  .hero-visual{
    min-height: 560px;
    max-width: 620px;
    margin: 0 auto;
  }

  .steps-list{
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid,
  .problem-grid,
  .value-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }

  .value-visual{
    margin: 0 0 1.8rem;
  }

  .value-visual img{
    max-width: 680px;
  }
}

@media (max-width: 900px){
  .main-nav{
    display: none;
  }

  .header-inner{
    min-height: 70px;
  }

  .brand-logo{
    height: 38px;
  }

  .hero-section{
    padding: 3.2rem 0 4rem;
    background:
      radial-gradient(circle at 50% 2%, rgba(245,124,0,.18), transparent 24%),
      linear-gradient(180deg, #111111 0%, #171717 68%, #f6f4ef 68%, #f6f4ef 100%);
  }

  .hero-title{
    max-width: 100%;
  }

  .hero-visual{
    min-height: 500px;
  }

  .hero-floating{
    width: 160px;
  }

  .hero-actions--single{
    justify-content: flex-start;
  }

  .btn-trial{
    max-width: 420px;
  }

  .steps-list{
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid{
    grid-template-columns: 1fr;
  }

  .cta-box{
    padding: 2rem;
  }
}

@media (max-width: 640px){
  .container{
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .section{
    padding: 4rem 0;
  }

  .brand-logo{
    height: 34px;
  }

  .header-actions{
    gap: .5rem;
  }

  .hero-actions--single{
    justify-content: flex-start;
  }

  .btn{
    min-height: 44px;
    padding: .8rem .95rem;
    font-size: .92rem;
  }

  .btn-trial{
    max-width: 420px;
  }

  .btn-login{
    display: inline-flex;
    min-height: 42px;
    padding: .72rem .9rem;
    font-size: .9rem;
  }
  
  .hero-actions,
  .cta-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-section{
    padding: 2.6rem 0 3.5rem;
    background:
      radial-gradient(circle at 50% 0%, rgba(245,124,0,.16), transparent 20%),
      linear-gradient(180deg, #111111 0%, #181818 70%, #f6f4ef 70%, #f6f4ef 100%);
  }

  .hero-visual{
    min-height: 390px;
  }

  .hero-phone{
    width: min(100%, 250px);
    padding: 9px;
    border-radius: 28px;
  }

  .hero-phone img{
    border-radius: 20px;
  }

  .hero-floating{
    width: 112px;
    padding: 6px;
    border-radius: 12px;
  }

  .hero-floating img{
    border-radius: 8px;
  }

  .hero-floating--catalogo{
    top: 8%;
    left: 0;
  }

  .hero-floating--mapa{
    top: 36%;
    right: 0;
  }

  .hero-floating--solicitudes{
    bottom: 8%;
    left: 4%;
  }

  .problem-grid,
  .value-grid,
  .benefits-grid,
  .steps-list{
    grid-template-columns: 1fr;
  }

  .value-visual{
    margin: 0 0 1.4rem;
  }

  .value-visual img{
    max-width: 100%;
    border-radius: 20px;
  }

  .story-card{
    padding: 1.35rem;
  }

  .cta-box{
    border-radius: 26px;
    padding: 1.4rem;
  }  
  
  .pricing-grid,
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .footer-grid{
    padding: 2.2rem 0 1.4rem;
    gap: 1.4rem;
  }

  .footer-logo{
    height: 44px;
  }
}

@media (max-width: 1180px){
  .branding-grid,
  .catalog-grid,
  .trust-grid,
  .referral-grid,
  .simple-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .branding-copy,
  .catalog-copy,
  .trust-copy,
  .referral-copy,
  .simple-copy{
    order: 1;
    max-width: 760px;
    margin: 0 auto;
  }

  .branding-visual,
  .catalog-visual,
  .trust-visual,
  .referral-visual,
  .simple-visual{
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .branding-visual img,
  .catalog-visual img,
  .trust-visual img,
  .referral-visual img,
  .simple-visual img{
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 640px){
  .branding-grid,
  .catalog-grid,
  .trust-grid,
  .referral-grid,
  .simple-grid{
    gap: 1.4rem;
  }

  .branding-visual,
  .catalog-visual,
  .trust-visual,
  .referral-visual,
  .simple-visual{
    order: 2;
  }

  .branding-visual img,
  .catalog-visual img,
  .trust-visual img,
  .referral-visual img,
  .simple-visual img{
    max-width: 100%;
    border-radius: 20px;
  }

  .branding-copy,
  .catalog-copy,
  .trust-copy,
  .referral-copy,
  .simple-copy{
    order: 1;
    max-width: 100%;
  }
}

.hidden{
  display: none !important;
}

body.no-scroll{
  overflow: hidden;
}

.legal-overlay{
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 12px;
}

.legal-overlay[aria-hidden="true"]{
  display: none !important;
}

.legal-overlay__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(4px);
}

.legal-overlay__card{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100dvh - 24px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legal-overlay__close{
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-top: 12px;
  margin-right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.legal-overlay__body{
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 18px 18px;
  scroll-behavior: smooth;
}

@media (max-width: 768px){
  .legal-overlay{
    padding: 8px;
  }

  .legal-overlay__card{
    width: 98vw;
    max-width: 98vw;
    max-height: calc(100dvh - 16px);
    border-radius: 14px;
  }

  .legal-overlay__body{
    padding: 4px 10px 12px;
  }

  .legal-overlay__close{
    width: 38px;
    height: 38px;
    margin-top: 10px;
    margin-right: 10px;
  }
}

.section-cta{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-cta .btn-trial{
  width: 100%;
  max-width: 460px;
}

.section-cta--value{
  margin-top: 1.8rem;
}

.section-cta--benefits{
  margin-top: 2rem;
}

@media (max-width: 900px){
  .section-cta--value{
    margin-top: 1.5rem;
  }

  .section-cta--benefits{
    margin-top: 1.6rem;
  }
}

/* =========================================================
   HERO PREMIUM REDESIGN - ENTRE BROKERS
   Solo landing / hero principal
   ========================================================= */

.hero-section{
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 5.8rem;
  background:
    radial-gradient(circle at 12% 12%, rgba(245,124,0,.14), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.70), transparent 28%),
    linear-gradient(135deg, #eef3f3 0%, #f8f5ef 48%, #ffffff 100%);
}

.hero-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.28));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    0 28px 90px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.82);
  pointer-events: none;
}

.hero-section::after{
  content: "";
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(245,124,0,.10);
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid{
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 3rem;
}

.hero-copy{
  max-width: 590px;
  padding: 2.2rem 0;
}

.hero-section .eyebrow{
  background: rgba(255,255,255,.78);
  color: #c86b12;
  border: 1px solid rgba(245,124,0,.16);
  box-shadow: 0 10px 26px rgba(16,16,16,.06);
}

.hero-section .hero-title{
  color: #111827;
  max-width: 10.6ch;
  text-wrap: balance;
}

.hero-section .hero-text{
  color: #5f6872;
  max-width: 47ch;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-actions--single{
  margin-top: 1.8rem;
}

.hero-section .btn-trial{
  max-width: 390px;
  min-height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f59a2f 0%, #f57c00 58%, #de6f00 100%);
  box-shadow:
    0 18px 36px rgba(245,124,0,.24),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.hero-section .btn-trial:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px rgba(245,124,0,.30),
    inset 0 1px 0 rgba(255,255,255,.26);
}

.hero-visual{
  min-height: 610px;
  isolation: isolate;
}

.hero-visual::before{
  content: "";
  position: absolute;
  width: 72%;
  height: 78%;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.95), rgba(15,23,42,.84));
  box-shadow: 0 34px 90px rgba(15,23,42,.22);
  right: 3%;
  top: 8%;
  z-index: 0;
}

.hero-visual::after{
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 999px;
  background: rgba(245,124,0,.22);
  filter: blur(55px);
  right: 9%;
  top: 18%;
  z-index: 0;
}

.hero-phone{
  z-index: 2;
  width: min(100%, 330px);
  padding: 11px;
  border-radius: 38px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 70px rgba(15,23,42,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.hero-phone img{
  border-radius: 28px;
  aspect-ratio: 10 / 19.5;
  object-fit: cover;
}

.hero-floating{
  z-index: 4;
  width: 178px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    0 22px 48px rgba(15,23,42,.16),
    inset 0 1px 0 rgba(255,255,255,.80);
  backdrop-filter: blur(18px);
}

.hero-floating img{
  border-radius: 14px;
}

.hero-floating--catalogo{
  top: 7%;
  left: 4%;
  transform: rotate(-2deg);
}

.hero-floating--mapa{
  top: 38%;
  right: -1%;
  transform: rotate(2deg);
}

.hero-floating--solicitudes{
  bottom: 9%;
  left: 9%;
  transform: rotate(1deg);
}

/* Tablet */
@media (max-width: 1180px){
  .hero-section{
    padding: 4.4rem 0 5rem;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy{
    text-align: center;
    margin: 0 auto;
    padding: 1.4rem 0 0;
  }

  .hero-section .hero-title{
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .hero-text{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions--single{
    justify-content: center;
  }

  .hero-visual{
    min-height: 560px;
    max-width: 680px;
  }

  .hero-visual::before{
    width: 78%;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Móvil */
@media (max-width: 640px){
  .hero-section{
    padding: 2.8rem 0 3.6rem;
  }

  .hero-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .hero-copy{
    text-align: left;
    padding: .6rem .25rem 0;
  }

  .hero-section .eyebrow{
    font-size: .76rem;
    padding: .48rem .72rem;
  }

  .hero-section .hero-title{
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero-section .hero-text{
    max-width: 100%;
    font-size: .98rem;
  }

  .hero-actions--single{
    justify-content: flex-start;
  }

  .hero-section .btn-trial{
    max-width: 100%;
    min-height: 68px;
    border-radius: 18px;
  }

  .hero-visual{
    min-height: 420px;
    margin-top: .8rem;
  }

  .hero-visual::before{
    width: 88%;
    height: 78%;
    border-radius: 30px;
    top: 8%;
  }

  .hero-phone{
    width: min(100%, 235px);
    padding: 8px;
    border-radius: 30px;
  }

  .hero-phone img{
    border-radius: 22px;
  }

  .hero-floating{
    width: 118px;
    padding: 5px;
    border-radius: 14px;
  }

  .hero-floating img{
    border-radius: 10px;
  }

  .hero-floating--catalogo{
    top: 8%;
    left: 0;
  }

  .hero-floating--mapa{
    top: 36%;
    right: 0;
  }

  .hero-floating--solicitudes{
    bottom: 8%;
    left: 3%;
  }
}

/* =========================================================
   HERO PREMIUM - AJUSTE DE PRIMERA VISTA
   Compacta el hero y suaviza el recuadro visual
   ========================================================= */

@media (min-width: 1181px){

  .site-header .header-inner{
    min-height: 66px;
  }

  .site-header .brand-logo{
    height: 36px;
  }

  .site-header .btn-login{
    min-height: 46px;
    padding: .75rem 1.05rem;
    border-radius: 14px;
  }

  .hero-section{
    min-height: calc(100svh - 66px);
    padding: 1.4rem 0 1.8rem;
    display: flex;
    align-items: center;
  }

  .hero-section::before{
    inset: .9rem 1.2rem 1rem;
    border-radius: 34px;
  }

  .hero-grid{
    align-items: center;
    gap: 2.2rem;
  }

  .hero-copy{
    padding: .4rem 0;
  }

  .hero-section .eyebrow{
    margin-bottom: .85rem;
  }

  .hero-section .hero-title{
    font-size: clamp(3.2rem, 4.25vw, 4.25rem);
    max-width: 12.2ch;
    line-height: .98;
    margin-bottom: 1rem;
  }

  .hero-section .hero-text{
    max-width: 44ch;
    font-size: 1.04rem;
    line-height: 1.5;
    margin-bottom: 1.1rem;
  }

  .hero-actions--single{
    margin-top: 1.2rem;
    margin-bottom: 0;
  }

  .hero-section .btn-trial{
    max-width: 360px;
    min-height: 66px;
    border-radius: 18px;
  }

  .hero-section .btn-trial__title{
    font-size: .98rem;
  }

  .hero-section .btn-trial__sub{
    font-size: .78rem;
  }

  .hero-visual{
    min-height: 500px;
  }

  .hero-visual::before{
    width: 50%;
    height: 72%;
    right: 8%;
    top: 14%;
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(15,23,42,.88), rgba(15,23,42,.76));
    box-shadow:
      0 26px 70px rgba(15,23,42,.18),
      inset 0 1px 0 rgba(255,255,255,.10);
  }

  .hero-visual::after{
    width: 46%;
    height: 50%;
    right: 12%;
    top: 18%;
    opacity: .75;
  }

  .hero-phone{
    width: min(100%, 292px);
    border-radius: 34px;
  }

  .hero-phone img{
    border-radius: 24px;
  }

  .hero-floating{
    width: 154px;
  }

  .hero-floating--catalogo{
    top: 8%;
    left: 8%;
  }

  .hero-floating--mapa{
    top: 38%;
    right: 3%;
  }

  .hero-floating--solicitudes{
    bottom: 8%;
    left: 12%;
  }
}

/* =========================================================
   HERO PREMIUM - QUITAR PLACA GRIS DETRÁS DEL MOCKUP
   ========================================================= */

.hero-visual::before{
  display: none !important;
}

.hero-visual::after{
  width: 52%;
  height: 56%;
  right: 12%;
  top: 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(15,23,42,.16) 0%, rgba(15,23,42,.08) 38%, transparent 72%);
  filter: blur(42px);
  opacity: .9;
}

.hero-phone{
  box-shadow:
    0 30px 76px rgba(15,23,42,.20),
    0 12px 34px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.24);
}

@media (max-width: 640px){
  .hero-visual::after{
    width: 70%;
    height: 54%;
    right: 12%;
    top: 20%;
    filter: blur(34px);
  }
}

/* =========================================================
   HEADER PREMIUM CLARO - LANDING ENTRE BROKERS
   Usa logo tipográfico a color
   ========================================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: .72rem 0;
  background: rgba(246,244,239,.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.site-header .header-inner{
  min-height: 68px;
  padding: 0 1rem 0 1.1rem;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow:
    0 18px 42px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.site-header .brand{
  display: inline-flex;
  align-items: center;
}

.site-header .brand-logo{
  height: 38px;
  width: auto;
}

.site-header .main-nav{
  gap: .25rem;
  padding: .32rem;
  border-radius: 999px;
  background: rgba(15,23,42,.045);
  border: 1px solid rgba(15,23,42,.055);
}

.site-header .main-nav a{
  padding: .62rem .9rem;
  border-radius: 999px;
  color: #4b5563;
  font-size: .91rem;
  font-weight: 700;
  line-height: 1;
}

.site-header .main-nav a:hover{
  color: #111827;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
}

.site-header .header-actions{
  gap: .6rem;
}

.site-header .btn-login{
  min-height: 46px;
  padding: .78rem 1.18rem;
  border-radius: 16px;
  background: #111827;
  color: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow:
    0 14px 28px rgba(15,23,42,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.site-header .btn-login:hover{
  background: #f57c00;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow:
    0 16px 32px rgba(245,124,0,.24),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* Ajuste para que header + hero sigan entrando en primera vista */
@media (min-width: 1181px){
  .hero-section{
    min-height: calc(100svh - 92px);
  }
}

/* Tablet */
@media (max-width: 900px){
  .site-header{
    padding: .55rem 0;
  }

  .site-header .header-inner{
    min-height: 62px;
    border-radius: 22px;
  }

  .site-header .brand-logo{
    height: 35px;
  }

  .site-header .btn-login{
    min-height: 42px;
    padding: .68rem .95rem;
    border-radius: 14px;
    font-size: .88rem;
  }
}

/* Móvil */
@media (max-width: 640px){
  .site-header{
    padding: .45rem 0;
  }

  .site-header .header-inner{
    min-height: 58px;
    padding: 0 .75rem;
    border-radius: 20px;
  }

  .site-header .brand-logo{
    height: 32px;
  }

  .site-header .btn-login{
    min-height: 40px;
    padding: .65rem .85rem;
    font-size: 0;
  }

  .site-header .btn-login::after{
    content: "Entrar";
    font-size: .86rem;
    font-weight: 800;
  }
}

/* =========================================================
   HERO BENEFIT BUBBLES - Reemplazo de mini capturas
   ========================================================= */

.hero-bubble{
  width: 210px;
  padding: .95rem 1rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    0 20px 46px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-bubble::before{
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.12);
  left: 1rem;
  top: 1.05rem;
}

.hero-bubble__tag{
  display: block;
  margin-left: 1.45rem;
  margin-bottom: .34rem;
  color: #d36f00;
  font-size: .72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-bubble strong{
  display: block;
  color: #111827;
  font-family: var(--font-title);
  font-size: .98rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.hero-bubble small{
  display: block;
  margin-top: .25rem;
  color: #687280;
  font-size: .78rem;
  line-height: 1.25;
  font-weight: 600;
}

.hero-bubble--branding{
  top: 11%;
  left: 5%;
  transform: rotate(-2deg);
}

.hero-bubble--agenda{
  top: 39%;
  right: 0;
  transform: rotate(2deg);
}

.hero-bubble--reputacion{
  bottom: 8%;
  left: 9%;
  transform: rotate(1deg);
}

/* Variante sutil: la burbuja derecha puede ir un poco más naranja */
.hero-bubble--agenda{
  background:
    linear-gradient(135deg, rgba(255,247,237,.95), rgba(255,255,255,.74));
  border-color: rgba(245,124,0,.16);
}

/* Tablet */
@media (max-width: 1180px){
  .hero-bubble{
    width: 190px;
  }

  .hero-bubble--branding{
    top: 9%;
    left: 4%;
  }

  .hero-bubble--agenda{
    top: 38%;
    right: 1%;
  }

  .hero-bubble--reputacion{
    bottom: 8%;
    left: 8%;
  }
}

/* Móvil */
@media (max-width: 640px){
  .hero-bubble{
    width: 145px;
    padding: .72rem .78rem;
    border-radius: 17px;
  }

  .hero-bubble::before{
    width: 8px;
    height: 8px;
    left: .75rem;
    top: .82rem;
    box-shadow: 0 0 0 5px rgba(245,124,0,.11);
  }

  .hero-bubble__tag{
    margin-left: 1.1rem;
    margin-bottom: .26rem;
    font-size: .58rem;
  }

  .hero-bubble strong{
    font-size: .76rem;
    line-height: 1.12;
  }

  .hero-bubble small{
    font-size: .64rem;
    line-height: 1.16;
  }

  .hero-bubble--branding{
    top: 8%;
    left: 0;
  }

  .hero-bubble--agenda{
    top: 38%;
    right: 0;
  }

  .hero-bubble--reputacion{
    bottom: 7%;
    left: 2%;
  }
}

/* =========================================================
   HERO MOCKUP - MARCO NEGRO MÁS REALISTA
   ========================================================= */

.hero-phone{
  padding: 6px;
  border-radius: 34px;
  background: linear-gradient(180deg, #111827 0%, #05070b 100%);
  border: 1px solid rgba(17,24,39,.82);
  box-shadow:
    0 30px 76px rgba(15,23,42,.20),
    0 12px 34px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.hero-phone img{
  border-radius: 27px;
  overflow: hidden;
}

/* Un brillo muy sutil para que no se vea plano */
.hero-phone::before{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 2;
}

/* Tablet / móvil */
@media (max-width: 640px){
  .hero-phone{
    padding: 5px;
    border-radius: 28px;
  }

  .hero-phone img{
    border-radius: 23px;
  }
}

/* =========================================================
   HEADER RESPONSIVE - Ajuste logo tipográfico en tablet/celular
   ========================================================= */

/* Tablet: menú oculto, logo más controlado */
@media (max-width: 900px){

  .site-header .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
  }

  .site-header .brand{
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .site-header .brand-logo{
    width: min(280px, 56vw);
    max-width: 100%;
    height: auto;
  }

  .site-header .header-actions{
    flex: 0 0 auto;
  }

  .site-header .btn-login{
    white-space: nowrap;
  }
}

/* Celular: logo compacto para que sí quepa el botón */
@media (max-width: 640px){

  .site-header .container{
    width: min(calc(100% - .8rem), var(--container));
  }

  .site-header .header-inner{
    min-height: 56px;
    padding: 0 .55rem 0 .72rem;
    gap: .5rem;
    border-radius: 18px;
  }

  .site-header .brand-logo{
    width: min(205px, 58vw);
    height: auto;
  }

  .site-header .btn-login{
    min-width: 70px;
    min-height: 38px;
    padding: .6rem .75rem;
    border-radius: 13px;
    font-size: 0;
  }

  .site-header .btn-login::after{
    content: "Entrar";
    font-size: .84rem;
    font-weight: 800;
  }
}

/* Celulares muy angostos */
@media (max-width: 380px){

  .site-header .brand-logo{
    width: min(180px, 55vw);
  }

  .site-header .btn-login{
    min-width: 66px;
    padding: .55rem .65rem;
  }

  .site-header .btn-login::after{
    font-size: .8rem;
  }
}

/* =========================================================
   MOBILE HEADER MENU - Hamburguesa para tablet/celular
   ========================================================= */

.mobile-menu-toggle{
  display: none;
}

.mobile-nav-panel{
  display: none;
}

.site-header .header-inner{
  position: relative;
  overflow: visible;
}

/* Tablet y celular */
@media (max-width: 900px){

  .mobile-menu-toggle{
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
    border: 1px solid rgba(15,23,42,.08);
    box-shadow:
      0 10px 22px rgba(15,23,42,.10),
      inset 0 1px 0 rgba(255,255,255,.90);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }

  .mobile-menu-toggle span{
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform .22s ease, opacity .22s ease;
  }

  .mobile-menu-toggle.is-open span:nth-child(1){
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2){
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-panel{
    position: absolute;
    top: calc(100% + .65rem);
    left: 0;
    right: 0;
    z-index: 1001;
    padding: .55rem;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.82));
    border: 1px solid rgba(255,255,255,.92);
    box-shadow:
      0 22px 52px rgba(15,23,42,.16),
      inset 0 1px 0 rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-nav-panel.is-open{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
  }

  .mobile-nav-panel a{
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem .85rem;
    border-radius: 16px;
    background: rgba(15,23,42,.045);
    color: #111827;
    font-size: .9rem;
    font-weight: 800;
    text-align: center;
  }

  .mobile-nav-panel a:hover{
    background: #fff3e6;
    color: #d36f00;
  }
}

/* Celular */
@media (max-width: 640px){

  .mobile-menu-toggle{
    width: 39px;
    height: 39px;
    border-radius: 13px;
  }

  .mobile-menu-toggle span{
    width: 16px;
  }

  .mobile-nav-panel{
    top: calc(100% + .55rem);
    border-radius: 20px;
  }

  .mobile-nav-panel.is-open{
    grid-template-columns: 1fr;
  }

  .mobile-nav-panel a{
    min-height: 44px;
    justify-content: flex-start;
    padding: .72rem .95rem;
  }
}

/* Celulares muy angostos */
@media (max-width: 380px){

  .mobile-menu-toggle{
    width: 37px;
    height: 37px;
  }

  .site-header .brand-logo{
    width: min(166px, 52vw);
  }

  .site-header .btn-login{
    min-width: 62px;
  }
}

/* =========================================================
   PRE-REGISTRO - LANDING ENTRE BROKERS
   ========================================================= */

.preregistro-section{
  background:
    radial-gradient(circle at 12% 18%, rgba(245,124,0,.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(15,23,42,.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.preregistro-grid{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 2rem;
  align-items: center;
}

.preregistro-copy h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #111827;
  max-width: 13ch;
}

.preregistro-copy p{
  color: var(--text-soft);
  font-size: var(--text-lg);
  max-width: 56ch;
}

.preregistro-points{
  display: grid;
  gap: .85rem;
  margin-top: 1.5rem;
  max-width: 620px;
}

.preregistro-points div{
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.07);
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.preregistro-points strong{
  display: block;
  color: #111827;
  font-family: var(--font-title);
  font-size: .98rem;
  margin-bottom: .2rem;
}

.preregistro-points span{
  display: block;
  color: #687280;
  font-size: .9rem;
  line-height: 1.4;
}

.preregistro-form{
  padding: 1.5rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 26px 70px rgba(15,23,42,.14),
    inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.preregistro-form h3{
  margin: 0 0 .35rem;
  font-family: var(--font-title);
  font-size: 1.45rem;
  color: #111827;
}

.preregistro-form > p{
  margin: 0 0 1.2rem;
  color: #687280;
  font-size: .95rem;
}

.form-group{
  display: grid;
  gap: .4rem;
  margin-bottom: .95rem;
}

.form-group label{
  color: #374151;
  font-size: .88rem;
  font-weight: 800;
}

.form-group input{
  width: 100%;
  min-height: 50px;
  padding: .85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  color: #111827;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-group input:focus{
  border-color: rgba(245,124,0,.55);
  box-shadow: 0 0 0 4px rgba(245,124,0,.12);
  background: #ffffff;
}

.btn-preregistro{
  width: 100%;
  min-height: 56px;
  margin-top: .35rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f59a2f 0%, #f57c00 58%, #de6f00 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  box-shadow:
    0 18px 36px rgba(245,124,0,.24),
    inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-preregistro:hover{
  transform: translateY(-1px);
  box-shadow:
    0 22px 44px rgba(245,124,0,.30),
    inset 0 1px 0 rgba(255,255,255,.26);
}

.preregistro-legal{
  display: block;
  margin-top: .9rem;
  color: #7b8491;
  font-size: .76rem;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 900px){
  .preregistro-grid{
    grid-template-columns: 1fr;
  }

  .preregistro-copy{
    text-align: center;
  }

  .preregistro-copy h2,
  .preregistro-copy p,
  .preregistro-points{
    margin-left: auto;
    margin-right: auto;
  }

  .preregistro-form{
    max-width: 620px;
    margin: 0 auto;
  }
}

/* Celular */
@media (max-width: 640px){
  .preregistro-section{
    padding-top: 3.5rem;
  }

  .preregistro-copy{
    text-align: left;
  }

  .preregistro-copy h2{
    max-width: 100%;
  }

  .preregistro-form{
    padding: 1.1rem;
    border-radius: 24px;
  }

  .preregistro-points div{
    border-radius: 18px;
  }
}

/* =========================================================
   PRE-REGISTRO - Mensajes de respuesta
   ========================================================= */

.preregistro-message{
  margin: 0 0 1rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.preregistro-message.is-success{
  background: #ecfdf3;
  color: #166534;
  border: 1px solid rgba(22,101,52,.14);
}

.preregistro-message.is-error{
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid rgba(159,18,57,.14);
}

/* =========================================================
   PRE-REGISTRO - Campo WhatsApp con país
   ========================================================= */

.phone-input-row{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: .55rem;
}

.phone-input-row select,
.phone-input-row input{
  width: 100%;
  min-height: 50px;
  padding: .85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  color: #111827;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.phone-input-row select{
  font-weight: 800;
  color: #374151;
  cursor: pointer;
}

.phone-input-row select:focus,
.phone-input-row input:focus{
  border-color: rgba(245,124,0,.55);
  box-shadow: 0 0 0 4px rgba(245,124,0,.12);
  background: #ffffff;
}

.form-hint{
  display: block;
  margin-top: .15rem;
  color: #7b8491;
  font-size: .78rem;
  line-height: 1.35;
}

@media (max-width: 640px){
  .phone-input-row{
    grid-template-columns: 1fr;
  }
}

.btn-preregistro:disabled{
  opacity: .72;
  cursor: wait;
  transform: none;
}

/* =========================================================
   PROBLEMA REAL - Rediseño premium
   ========================================================= */

.problem-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(245,124,0,.10), transparent 26%),
    linear-gradient(180deg, #f6f4ef 0%, #ffffff 100%);
}

.problem-section .section-narrow{
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.48));
  border: 1px solid rgba(255,255,255,.86);
  box-shadow:
    0 24px 70px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.problem-section .section-heading{
  margin-bottom: 2.2rem;
}

.problem-section .section-heading h2{
  max-width: 15ch;
}

.problem-section .section-heading p{
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.problem-grid{
  gap: .95rem;
}

.problem-card{
  position: relative;
  min-height: 116px;
  padding: 1.15rem 1.15rem 1.15rem 3rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 14px 30px rgba(15,23,42,.065),
    inset 0 1px 0 rgba(255,255,255,.92);
  transition: transform .2s ease, box-shadow .2s ease;
}

.problem-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(15,23,42,.09),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.problem-card::before{
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.12);
}

.problem-card p{
  font-size: .96rem;
  line-height: 1.42;
  color: #1f2937;
  font-weight: 700;
}

.section-closing{
  margin-top: 2rem;
  padding: .95rem 1.2rem;
  border-radius: 999px;
  display: table;
  margin-left: auto;
  margin-right: auto;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15,23,42,.14);
}

.section-closing strong{
  color: #ffffff;
}

/* Tablet */
@media (max-width: 900px){
  .problem-section .section-narrow{
    padding: 2.4rem 1.4rem;
    border-radius: 30px;
  }

  .problem-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 640px){
  .problem-section .section-narrow{
    padding: 2rem 1rem;
    border-radius: 26px;
  }

  .problem-section .section-heading{
    text-align: left;
  }

  .problem-section .section-heading h2,
  .problem-section .section-heading p{
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .problem-grid{
    grid-template-columns: 1fr;
  }

  .problem-card{
    min-height: auto;
    padding: 1rem 1rem 1rem 2.75rem;
  }

  .section-closing{
    display: block;
    border-radius: 18px;
    text-align: center;
  }
}

/* =========================================================
   AGENDA INTELIGENTE - Landing Entre Brokers
   ========================================================= */

.agenda-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(245,124,0,.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.agenda-grid{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr);
  gap: 3rem;
  align-items: center;
}

.agenda-copy h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #111827;
  max-width: 12ch;
}

.agenda-copy p{
  color: var(--text-soft);
  font-size: var(--text-lg);
  max-width: 62ch;
}

.agenda-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-top: 1.6rem;
}

.agenda-card{
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 2.9rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 14px 30px rgba(15,23,42,.065),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.agenda-card::before{
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.12);
}

.agenda-card h3{
  margin: 0 0 .35rem;
  font-family: var(--font-title);
  font-size: .98rem;
  line-height: 1.18;
  color: #111827;
}

.agenda-card p{
  margin: 0;
  color: #687280;
  font-size: .86rem;
  line-height: 1.4;
}

.agenda-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.agenda-visual::before{
  content: "";
  position: absolute;
  width: 82%;
  height: 72%;
  border-radius: 999px;
  background: rgba(245,124,0,.16);
  filter: blur(58px);
  z-index: 0;
}

.agenda-tablet{
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 9px;
  border-radius: 34px;
  background: linear-gradient(180deg, #111827 0%, #05070b 100%);
  border: 1px solid rgba(17,24,39,.86);
  box-shadow:
    0 34px 82px rgba(15,23,42,.22),
    0 14px 34px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.agenda-tablet::before{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 2;
}

.agenda-tablet img{
  width: 100%;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  display: block;
}

/* Tablet */
@media (max-width: 1180px){
  .agenda-grid{
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .agenda-copy{
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .agenda-copy h2,
  .agenda-copy p{
    margin-left: auto;
    margin-right: auto;
  }

  .agenda-visual{
    max-width: 680px;
    margin: 0 auto;
  }
}

/* Celular */
@media (max-width: 640px){
  .agenda-copy{
    text-align: left;
  }

  .agenda-copy h2,
  .agenda-copy p{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .agenda-cards{
    grid-template-columns: 1fr;
  }

  .agenda-card{
    padding: 1rem 1rem 1rem 2.75rem;
  }

  .agenda-tablet{
    width: min(100%, 360px);
    padding: 6px;
    border-radius: 28px;
  }

  .agenda-tablet img{
    border-radius: 22px;
    aspect-ratio: 4 / 5.8;
  }
}

/* =========================================================
   PROPUESTA DE VALOR - Rediseño premium
   ========================================================= */

.value-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(245,124,0,.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.value-section .container{
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .92fr);
  grid-template-areas:
    "heading visual"
    "cards cards"
    "cta cta"
    "quote quote";
  gap: 2rem 3rem;
  align-items: center;
}

.value-section .section-heading{
  grid-area: heading;
  margin-bottom: 0;
  max-width: 680px;
}

.value-section .section-kicker{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.value-section .section-heading h2{
  max-width: 13ch;
  color: #111827;
}

.value-section .section-heading p{
  max-width: 56ch;
  color: #5f6872;
}

.value-visual{
  grid-area: visual;
  position: relative;
  margin: 0;
  padding: 1rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.86);
  box-shadow:
    0 26px 70px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.value-visual::before{
  content: "";
  position: absolute;
  width: 72%;
  height: 70%;
  border-radius: 999px;
  background: rgba(245,124,0,.16);
  filter: blur(52px);
  right: 4%;
  top: 12%;
  z-index: 0;
}

.value-visual img{
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow:
    0 22px 48px rgba(15,23,42,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.value-grid{
  grid-area: cards;
  margin-top: .8rem;
  gap: 1rem;
}

.value-card{
  position: relative;
  min-height: 150px;
  padding: 1.35rem 1.35rem 1.35rem 3.1rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 16px 34px rgba(15,23,42,.065),
    inset 0 1px 0 rgba(255,255,255,.94);
  transition: transform .2s ease, box-shadow .2s ease;
}

.value-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 20px 42px rgba(15,23,42,.09),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.value-card::before{
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.45rem;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.12);
}

.value-card h3{
  color: #111827;
  font-size: 1.04rem;
}

.value-card p{
  color: #687280;
  font-size: .94rem;
  line-height: 1.45;
}

.section-cta--value{
  grid-area: cta;
  margin-top: .6rem;
}

.value-quote{
  grid-area: quote;
  max-width: 860px;
  margin: .2rem auto 0;
  padding: 1.05rem 1.35rem;
  border: 1px solid rgba(245,124,0,.18);
  border-left: 0;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,247,237,.95), rgba(255,255,255,.78));
  color: #111827;
  text-align: center;
  box-shadow:
    0 14px 34px rgba(245,124,0,.08),
    inset 0 1px 0 rgba(255,255,255,.96);
}

/* Tablet */
@media (max-width: 1180px){
  .value-section .container{
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "cards"
      "cta"
      "quote";
  }

  .value-section .section-heading{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .value-section .section-heading h2,
  .value-section .section-heading p{
    margin-left: auto;
    margin-right: auto;
  }

  .value-visual{
    max-width: 760px;
    margin: 0 auto;
  }

  .value-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Celular */
@media (max-width: 640px){
  .value-section .section-heading{
    text-align: left;
  }

  .value-section .section-heading h2,
  .value-section .section-heading p{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .value-visual{
    padding: .65rem;
    border-radius: 26px;
  }

  .value-visual img{
    border-radius: 20px;
  }

  .value-grid{
    grid-template-columns: 1fr;
  }

  .value-card{
    min-height: auto;
    padding: 1rem 1rem 1rem 2.85rem;
    border-radius: 20px;
  }

  .value-card::before{
    left: 1.05rem;
    top: 1.2rem;
  }

  .value-quote{
    border-radius: 20px;
    text-align: left;
  }
}

/* =========================================================
   CÓMO FUNCIONA - Roadmap oscuro premium
   ========================================================= */

.steps-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(245,124,0,.18), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(180deg, #0b101b 0%, #101827 52%, #080b12 100%);
}

.steps-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  pointer-events: none;
}

.steps-section .container{
  position: relative;
  z-index: 1;
}

.steps-section .section-heading{
  margin-bottom: 3rem;
}

.steps-section .section-kicker{
  background: rgba(255,255,255,.08);
  color: #ffbd7a;
  border: 1px solid rgba(255,255,255,.08);
}

.steps-section .section-heading h2{
  color: #ffffff;
  max-width: 13ch;
}

.steps-list{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.steps-list::before{
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 31px;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(245,124,0,.55), rgba(255,255,255,.18), transparent);
  z-index: 0;
}

.step-card{
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  min-height: 245px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 22px 46px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.step-card:hover{
  transform: translateY(-4px);
  border-color: rgba(245,124,0,.35);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
}

.step-number{
  width: 48px;
  height: 48px;
  margin-bottom: 1.15rem;
  background:
    linear-gradient(135deg, #f59a2f 0%, #f57c00 60%, #dc6f00 100%);
  color: #ffffff;
  font-weight: 900;
  box-shadow:
    0 14px 26px rgba(245,124,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.step-card h3{
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.step-card p{
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.48;
}

/* Destacar ligeramente el primer y último paso */
.step-card:first-child,
.step-card:last-child{
  border-color: rgba(245,124,0,.20);
}

.step-card:first-child .step-number,
.step-card:last-child .step-number{
  box-shadow:
    0 16px 34px rgba(245,124,0,.36),
    inset 0 1px 0 rgba(255,255,255,.25);
}

/* Tablet */
@media (max-width: 1180px){
  .steps-list{
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-list::before{
    display: none;
  }

  .step-card{
    min-height: 190px;
  }

  .step-card:last-child{
    grid-column: 1 / -1;
  }
}

/* Celular */
@media (max-width: 640px){
  .steps-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .steps-section .section-heading{
    text-align: left;
    margin-bottom: 2rem;
  }

  .steps-section .section-heading h2{
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .steps-list{
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:last-child{
    grid-column: auto;
  }

  .step-card{
    min-height: auto;
    padding: 1.2rem;
    border-radius: 22px;
  }

  .step-number{
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   TU IDENTIDAD PROFESIONAL - Rediseño premium combinado
   ========================================================= */

.branding-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(245,124,0,.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #f6f4ef 0%, #ffffff 100%);
}

.branding-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.24));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.branding-section .container{
  position: relative;
  z-index: 1;
}

.branding-grid{
  grid-template-columns: minmax(0, .88fr) minmax(460px, .9fr);
  gap: 3.5rem;
  align-items: center;
}

.branding-copy{
  position: relative;
  z-index: 2;
}

.branding-copy .section-kicker{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.branding-copy h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #111827;
  max-width: 13.5ch;
}

.branding-copy p{
  color: #5f6872;
  max-width: 58ch;
}

.branding-features{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.5rem;
}

.branding-features article{
  position: relative;
  padding: 1rem 1rem 1rem 2.85rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 14px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.94);
}

.branding-features article::before{
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.18rem;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.12);
}

.branding-features strong{
  display: block;
  margin-bottom: .25rem;
  color: #111827;
  font-family: var(--font-title);
  font-size: .98rem;
  line-height: 1.18;
}

.branding-features span{
  display: block;
  color: #687280;
  font-size: .86rem;
  line-height: 1.38;
}

.branding-highlight{
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: #111827;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
}

/* Mockup combinado */
.branding-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 690px;
}

.branding-visual::before{
  content: "";
  position: absolute;
  width: 78%;
  height: 72%;
  border-radius: 999px;
  background: rgba(245,124,0,.15);
  filter: blur(58px);
  z-index: 0;
}

.branding-device-combo{
  position: relative;
  width: min(100%, 590px);
  min-height: 660px;
  z-index: 1;
}

.branding-device{
  position: absolute;
  overflow: hidden;
  background: linear-gradient(180deg, #111827 0%, #05070b 100%);
  border: 1px solid rgba(17,24,39,.86);
  box-shadow:
    0 34px 82px rgba(15,23,42,.22),
    0 14px 34px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.branding-device::before{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 2;
}

.branding-device img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.branding-device--tablet{
  width: 420px;
  height: 620px;
  right: 0;
  top: 0;
  padding: 8px;
  border-radius: 34px;
}

.branding-device--tablet img{
  border-radius: 26px;
}

.branding-device--phone{
  width: 218px;
  height: 455px;
  left: 0;
  bottom: 12px;
  padding: 6px;
  border-radius: 30px;
  transform: rotate(-2deg);
}

.branding-device--phone img{
  border-radius: 24px;
}

.branding-bubble{
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: .9rem 1rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.74));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    0 20px 46px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.branding-bubble span{
  display: block;
  margin-bottom: .25rem;
  color: #d36f00;
  font-size: .68rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.branding-bubble strong{
  display: block;
  color: #111827;
  font-family: var(--font-title);
  font-size: .94rem;
  line-height: 1.18;
}

.branding-bubble--one{
  top: 58px;
  left: 18px;
  transform: rotate(-2deg);
}

.branding-bubble--two{
  right: 4px;
  bottom: 80px;
  transform: rotate(2deg);
}

/* Tablet */
@media (max-width: 1180px){
  .branding-grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .branding-copy{
    text-align: center;
  }

  .branding-copy h2,
  .branding-copy p{
    margin-left: auto;
    margin-right: auto;
  }

  .branding-features{
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }

  .branding-visual{
    min-height: 670px;
  }

  .branding-device-combo{
    width: min(100%, 560px);
  }
}

/* Celular */
@media (max-width: 640px){
  .branding-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .branding-copy{
    text-align: left;
  }

  .branding-copy h2,
  .branding-copy p{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .branding-features{
    grid-template-columns: 1fr;
  }

  .branding-highlight{
    border-radius: 20px;
  }

  .branding-visual{
    min-height: 560px;
  }

  .branding-device-combo{
    width: min(100%, 340px);
    min-height: 530px;
  }

  .branding-device--tablet{
    width: 248px;
    height: 415px;
    right: 0;
    top: 0;
    padding: 6px;
    border-radius: 28px;
  }

  .branding-device--tablet img{
    border-radius: 22px;
  }

  .branding-device--phone{
    width: 145px;
    height: 305px;
    left: 0;
    bottom: 18px;
    padding: 5px;
    border-radius: 24px;
  }

  .branding-device--phone img{
    border-radius: 19px;
  }

  .branding-bubble{
    width: 150px;
    padding: .72rem .8rem;
    border-radius: 17px;
  }

  .branding-bubble span{
    font-size: .56rem;
  }

  .branding-bubble strong{
    font-size: .74rem;
  }

  .branding-bubble--one{
    top: 26px;
    left: 2px;
  }

  .branding-bubble--two{
    right: 0;
    bottom: 42px;
  }
}

/* =========================================================
   COLABORACIÓN ÚTIL / CATÁLOGO AMPLIADO - Rediseño premium
   ========================================================= */

.catalog-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(245,124,0,.10), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.catalog-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.24));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.catalog-grid{
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(460px, .95fr) minmax(0, .85fr);
  gap: 3.5rem;
  align-items: center;
}

.catalog-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-visual::before{
  content: "";
  position: absolute;
  width: 82%;
  height: 72%;
  border-radius: 999px;
  background: rgba(245,124,0,.14);
  filter: blur(58px);
  z-index: 0;
}

.catalog-visual::after{
  content: "Catálogo + mapa";
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 3;
  padding: .75rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 18px 38px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.95);
  color: #111827;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: -.01em;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.catalog-visual img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  border-radius: 32px;
  padding: 8px;
  background: linear-gradient(180deg, #111827 0%, #05070b 100%);
  border: 1px solid rgba(17,24,39,.86);
  box-shadow:
    0 34px 82px rgba(15,23,42,.20),
    0 14px 34px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.catalog-copy{
  position: relative;
  z-index: 2;
}

.catalog-copy .section-kicker{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.catalog-copy h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #111827;
  max-width: 13.5ch;
}

.catalog-copy p{
  color: #5f6872;
  max-width: 58ch;
}

.catalog-highlight{
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: #111827;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
}

/* Tablet */
@media (max-width: 1180px){
  .catalog-grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .catalog-copy{
    text-align: center;
    order: 1;
  }

  .catalog-copy h2,
  .catalog-copy p{
    margin-left: auto;
    margin-right: auto;
  }

  .catalog-visual{
    order: 2;
  }

  .catalog-visual img{
    max-width: 760px;
  }
}

/* Celular */
@media (max-width: 640px){
  .catalog-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .catalog-copy{
    text-align: left;
  }

  .catalog-copy h2,
  .catalog-copy p{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .catalog-visual img{
    max-width: 100%;
    border-radius: 26px;
    padding: 6px;
  }

  .catalog-visual::after{
    left: 1rem;
    bottom: 1rem;
    padding: .62rem .85rem;
    font-size: .78rem;
  }

  .catalog-highlight{
    border-radius: 20px;
  }
}

/* =========================================================
   CONFIANZA Y REPUTACIÓN - Rediseño premium
   ========================================================= */

.trust-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(245,124,0,.10), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #f6f4ef 0%, #ffffff 100%);
}

.trust-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.24));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.trust-grid{
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .9fr);
  gap: 3.5rem;
  align-items: center;
}

.trust-copy{
  position: relative;
  z-index: 2;
}

.trust-copy .section-kicker{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.trust-copy h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #111827;
  max-width: 13.5ch;
}

.trust-copy p{
  color: #5f6872;
  max-width: 58ch;
}

.trust-highlight{
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: #111827;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
}

.trust-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-visual::before{
  content: "";
  position: absolute;
  width: 78%;
  height: 70%;
  border-radius: 999px;
  background: rgba(245,124,0,.14);
  filter: blur(58px);
  z-index: 0;
}

.trust-visual img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 590px;
  border-radius: 34px;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow:
    0 30px 74px rgba(15,23,42,.16),
    0 12px 30px rgba(15,23,42,.09),
    inset 0 1px 0 rgba(255,255,255,.96);
}

/* Badge flotante sobre la imagen */
.trust-visual::after{
  content: "Más confianza desde el primer contacto";
  position: absolute;
  left: 1.8rem;
  bottom: 1.8rem;
  z-index: 3;
  max-width: 260px;
  padding: .85rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.76));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    0 18px 38px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.95);
  color: #111827;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.15;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Tablet */
@media (max-width: 1180px){
  .trust-grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .trust-copy{
    text-align: center;
    order: 1;
  }

  .trust-copy h2,
  .trust-copy p{
    margin-left: auto;
    margin-right: auto;
  }

  .trust-visual{
    order: 2;
  }

  .trust-visual img{
    max-width: 620px;
  }
}

/* Celular */
@media (max-width: 640px){
  .trust-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .trust-copy{
    text-align: left;
  }

  .trust-copy h2,
  .trust-copy p{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .trust-highlight{
    border-radius: 20px;
  }

  .trust-visual img{
    max-width: 100%;
    border-radius: 26px;
    padding: 6px;
  }

  .trust-visual::after{
    left: 1rem;
    bottom: 1rem;
    max-width: 220px;
    border-radius: 18px;
    padding: .75rem .85rem;
    font-size: .78rem;
  }
}

/* =========================================================
   DIFERENCIALES - Sección de decisión premium
   ========================================================= */

.benefits-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(245,124,0,.13), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.benefits-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(17,24,39,.96), rgba(8,11,18,.96));
  box-shadow:
    0 34px 90px rgba(15,23,42,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
  pointer-events: none;
}

.benefits-section::after{
  content: "";
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: rgba(245,124,0,.18);
  filter: blur(22px);
  pointer-events: none;
}

.benefits-section .container{
  position: relative;
  z-index: 1;
}

.benefits-section .section-heading{
  margin-bottom: 3rem;
}

.benefits-section .section-kicker{
  background: rgba(255,255,255,.08);
  color: #ffbd7a;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
}

.benefits-section .section-heading h2{
  color: #ffffff;
  max-width: 13ch;
}

.benefits-grid{
  gap: 1rem;
}

.benefit-card{
  position: relative;
  min-height: 190px;
  padding: 1.45rem 1.35rem 1.35rem;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.84));
  border: 1px solid rgba(255,255,255,.84);
  box-shadow:
    0 22px 48px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.96);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 28px 62px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.benefit-card::before{
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.72), transparent 32%),
    linear-gradient(135deg, #f59a2f 0%, #f57c00 62%, #de6f00 100%);
  box-shadow:
    0 14px 26px rgba(245,124,0,.28),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.benefit-card::after{
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(245,124,0,.08);
}

.benefit-card h3{
  color: #111827;
  font-size: 1.12rem;
  line-height: 1.16;
  letter-spacing: -.02em;
}

.benefit-card p{
  color: #5f6872;
  font-size: .95rem;
  line-height: 1.48;
}

/* La primera card se siente como diferencial principal */
.benefit-card:first-child{
  background:
    radial-gradient(circle at 12% 12%, rgba(245,124,0,.18), transparent 36%),
    linear-gradient(145deg, #ffffff, #fff7ed);
  border-color: rgba(245,124,0,.20);
}

.benefit-card:first-child h3{
  color: #111827;
}

/* CTA dentro del panel oscuro */
.section-cta--benefits{
  margin-top: 2.2rem;
}

.benefits-section .section-cta .btn-trial{
  max-width: 430px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 22px 44px rgba(245,124,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

/* Tablet */
@media (max-width: 1180px){
  .benefits-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 640px){
  .benefits-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .benefits-section .section-heading{
    text-align: left;
    margin-bottom: 2rem;
  }

  .benefits-section .section-heading h2{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-grid{
    grid-template-columns: 1fr;
  }

  .benefit-card{
    min-height: auto;
    border-radius: 22px;
    padding: 1.25rem;
  }

  .benefit-card::before{
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .section-cta--benefits{
    margin-top: 1.6rem;
  }
}

/* =========================================================
   REFERIDOS - Rediseño premium claro
   ========================================================= */

.referral-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(245,124,0,.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.referral-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.28));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.referral-grid{
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .85fr) minmax(440px, .95fr);
  gap: 3.5rem;
  align-items: center;
}

.referral-copy{
  position: relative;
  z-index: 2;
}

.referral-section .section-kicker{
  background: rgba(255,255,255,.78);
  color: #d36f00;
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.referral-section h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #111827;
  max-width: 13ch;
}

.referral-section p{
  color: #5f6872;
  max-width: 58ch;
}

.referral-steps{
  gap: .9rem;
  margin-top: 1.5rem;
}

.referral-item{
  position: relative;
  padding: 1.1rem 1.15rem 1.1rem 3.2rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.74));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 16px 34px rgba(15,23,42,.07),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.referral-item::before{
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.28rem;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.12);
}

.referral-item strong{
  color: #111827;
  font-family: var(--font-title);
  font-size: 1.02rem;
  line-height: 1.18;
}

.referral-item span{
  color: #687280;
  font-size: .92rem;
  line-height: 1.4;
}

.referral-highlight{
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: #111827;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
}

.referral-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.referral-visual::before{
  content: "";
  position: absolute;
  width: 78%;
  height: 72%;
  border-radius: 999px;
  background: rgba(245,124,0,.16);
  filter: blur(58px);
  z-index: 0;
}

.referral-visual img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  border-radius: 34px;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.68));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow:
    0 30px 74px rgba(15,23,42,.16),
    0 12px 30px rgba(15,23,42,.09),
    inset 0 1px 0 rgba(255,255,255,.96);
}

/* Badge flotante */
.referral-visual::after{
  content: "Crece tu red y paga menos";
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 3;
  padding: .85rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.76));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    0 18px 38px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.95);
  color: #111827;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.15;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Tablet */
@media (max-width: 1180px){
  .referral-grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .referral-copy{
    text-align: center;
    order: 1;
  }

  .referral-copy h2,
  .referral-copy p{
    margin-left: auto;
    margin-right: auto;
  }

  .referral-steps{
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .referral-visual{
    order: 2;
  }

  .referral-visual img{
    max-width: 680px;
  }
}

/* Celular */
@media (max-width: 640px){
  .referral-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .referral-copy{
    text-align: left;
  }

  .referral-copy h2,
  .referral-copy p{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .referral-item{
    padding: 1rem 1rem 1rem 2.85rem;
    border-radius: 20px;
  }

  .referral-item::before{
    left: 1.05rem;
    top: 1.18rem;
  }

  .referral-highlight{
    border-radius: 20px;
  }

  .referral-visual img{
    max-width: 100%;
    border-radius: 26px;
    padding: 6px;
  }

  .referral-visual::after{
    left: 1rem;
    bottom: 1rem;
    border-radius: 18px;
    padding: .75rem .85rem;
    font-size: .78rem;
  }
}

/* =========================================================
   REFERIDOS - Quitar badge flotante sobre imagen
   ========================================================= */

.referral-visual::after{
  display: none !important;
}

/* =========================================================
   PLANES - Rediseño premium
   ========================================================= */

.pricing-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(245,124,0,.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #f6f4ef 0%, #ffffff 100%);
}

.pricing-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.28));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.pricing-section .container{
  position: relative;
  z-index: 1;
}

.pricing-section .section-heading{
  margin-bottom: 3rem;
}

.pricing-section .section-kicker{
  background: rgba(255,255,255,.78);
  color: #d36f00;
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.pricing-section .section-heading h2{
  color: #111827;
  max-width: 12ch;
}

.pricing-grid{
  gap: 1.35rem;
  align-items: stretch;
}

.pricing-card{
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.76));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 22px 54px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.pricing-card::after{
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(245,124,0,.08);
  pointer-events: none;
}

.plan-name{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(245,124,0,.10);
  color: #d36f00;
  font-size: .84rem;
  font-weight: 900;
}

.pricing-card h3{
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  margin-bottom: .8rem;
  color: #111827;
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  letter-spacing: -.04em;
}

.pricing-card h3 small{
  font-size: 1rem;
  color: #687280;
}

.pricing-card ul{
  position: relative;
  z-index: 1;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  list-style: none;
  color: #5f6872;
}

.pricing-card li{
  position: relative;
  padding-left: 1.65rem;
  line-height: 1.45;
}

.pricing-card li + li{
  margin-top: .8rem;
}

.pricing-card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 5px rgba(245,124,0,.12);
}

.pricing-card .btn-trial{
  position: relative;
  z-index: 1;
  max-width: 100%;
  min-height: 68px;
  border-radius: 18px;
}

.pricing-card--featured{
  transform: translateY(-10px);
  background:
    radial-gradient(circle at 14% 12%, rgba(245,124,0,.18), transparent 34%),
    linear-gradient(180deg, #151a26 0%, #0b101b 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 32px 78px rgba(15,23,42,.24),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.pricing-card--featured::after{
  background: rgba(245,124,0,.16);
}

.pricing-card--featured .plan-name{
  background: rgba(245,124,0,.16);
  color: #ffbd7a;
}

.plan-badge{
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: .65rem;
  background: rgba(255,255,255,.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.pricing-card--featured h3,
.pricing-card--featured li,
.pricing-card--featured .plan-note{
  color: #ffffff;
}

.pricing-card--featured h3 small{
  color: rgba(255,255,255,.68);
}

.pricing-card--featured ul{
  color: rgba(255,255,255,.78);
}

.pricing-card--featured li::before{
  background: #f57c00;
  box-shadow: 0 0 0 5px rgba(245,124,0,.18);
}

.plan-note{
  position: relative;
  z-index: 1;
  margin: .2rem 0 1.3rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  line-height: 1.45;
}

/* Tablet */
@media (max-width: 900px){
  .pricing-grid{
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .pricing-card--featured{
    transform: none;
  }
}

/* Celular */
@media (max-width: 640px){
  .pricing-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .pricing-section .section-heading{
    text-align: left;
  }

  .pricing-section .section-heading h2{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-card{
    padding: 1.35rem;
    border-radius: 24px;
  }

  .pricing-card h3{
    font-size: 2.25rem;
  }
}

/* =========================================================
   SIMPLE Y ÚTIL - Rediseño premium
   ========================================================= */

.simple-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(245,124,0,.10), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.simple-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.28));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.simple-grid{
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .85fr) minmax(420px, .95fr);
  gap: 3.5rem;
  align-items: center;
}

.simple-copy{
  position: relative;
  z-index: 2;
}

.simple-copy .section-kicker{
  background: rgba(255,255,255,.78);
  color: #d36f00;
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.simple-copy h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #111827;
  max-width: 13ch;
}

.simple-copy p{
  color: #5f6872;
  max-width: 58ch;
}

.simple-highlight{
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: #111827;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
}

.simple-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.simple-visual::before{
  content: "";
  position: absolute;
  width: 78%;
  height: 72%;
  border-radius: 999px;
  background: rgba(245,124,0,.15);
  filter: blur(58px);
  z-index: 0;
}

.simple-visual img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  border-radius: 34px;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.68));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow:
    0 30px 74px rgba(15,23,42,.16),
    0 12px 30px rgba(15,23,42,.09),
    inset 0 1px 0 rgba(255,255,255,.96);
}

/* Badge flotante */
.simple-visual::after{
  content: "Sin CRM pesado";
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 3;
  padding: .85rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.76));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    0 18px 38px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.95);
  color: #111827;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.15;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Tablet */
@media (max-width: 1180px){
  .simple-grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .simple-copy{
    text-align: center;
    order: 1;
  }

  .simple-copy h2,
  .simple-copy p{
    margin-left: auto;
    margin-right: auto;
  }

  .simple-visual{
    order: 2;
  }

  .simple-visual img{
    max-width: 640px;
  }
}

/* Celular */
@media (max-width: 640px){
  .simple-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .simple-copy{
    text-align: left;
  }

  .simple-copy h2,
  .simple-copy p{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .simple-highlight{
    border-radius: 20px;
  }

  .simple-visual img{
    max-width: 100%;
    border-radius: 26px;
    padding: 6px;
  }

  .simple-visual::after{
    left: 1rem;
    bottom: 1rem;
    border-radius: 18px;
    padding: .75rem .85rem;
    font-size: .78rem;
  }
}

/* =========================================================
   CASO DE USO - Rediseño premium
   ========================================================= */

.story-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(245,124,0,.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #f6f4ef 0%, #ffffff 100%);
}

.story-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.28));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.story-section .section-narrow{
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.story-section .section-heading{
  margin-bottom: 2rem;
}

.story-section .section-kicker{
  background: rgba(255,255,255,.78);
  color: #d36f00;
  border: 1px solid rgba(245,124,0,.14);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.story-section .section-heading h2{
  color: #111827;
  max-width: 12ch;
}

.story-card{
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 2.2rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.76));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow:
    0 26px 70px rgba(15,23,42,.13),
    inset 0 1px 0 rgba(255,255,255,.96);
  overflow: hidden;
}

.story-card::before{
  content: "Caso de uso";
  display: inline-flex;
  margin-bottom: 1.3rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(245,124,0,.10);
  color: #d36f00;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-card::after{
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(245,124,0,.10);
  pointer-events: none;
}

.story-card p{
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4b5563;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.story-card p + p{
  margin-top: 1rem;
}

.story-closing{
  margin-top: 1.4rem !important;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: #111827;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
}

/* Pequeños puntos de flujo */
.story-card .story-closing::before{
  content: "✓ ";
  color: #f57c00;
}

/* Celular */
@media (max-width: 640px){
  .story-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .story-section .section-heading{
    text-align: left;
  }

  .story-section .section-heading h2{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .story-card{
    padding: 1.35rem;
    border-radius: 24px;
  }

  .story-card::before{
    margin-bottom: 1rem;
  }

  .story-closing{
    border-radius: 20px;
  }
}

/* =========================================================
   CTA FINAL - EMPIEZA HOY / ACCESO ANTICIPADO
   ========================================================= */

.cta-section{
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(245,124,0,.14), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(15,23,42,.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.cta-box{
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 3.4rem;
  background:
    radial-gradient(circle at 14% 14%, rgba(245,124,0,.20), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #111827 0%, #0b101b 58%, #070a10 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 34px 90px rgba(15,23,42,.26),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.cta-box::before{
  content: "";
  position: absolute;
  right: -7rem;
  top: -7rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: rgba(245,124,0,.18);
  filter: blur(20px);
  pointer-events: none;
}

.cta-box::after{
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,124,0,.55), transparent);
  pointer-events: none;
}

.cta-box .section-kicker{
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.08);
  color: #ffbd7a;
  border: 1px solid rgba(255,255,255,.10);
}

.cta-box h2{
  position: relative;
  z-index: 1;
  max-width: 13ch;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  letter-spacing: -.04em;
}

.cta-box p{
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
}

.cta-actions{
  position: relative;
  z-index: 1;
  margin-top: 1.7rem;
}

.cta-box .btn-trial{
  max-width: 420px;
  min-height: 72px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #f59a2f 0%, #f57c00 58%, #de6f00 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 22px 44px rgba(245,124,0,.30),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.cta-box .btn-trial:hover{
  transform: translateY(-2px);
  box-shadow:
    0 26px 54px rgba(245,124,0,.36),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.cta-note{
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  color: rgba(255,255,255,.62) !important;
  font-size: .92rem;
}

/* Celular */
@media (max-width: 640px){
  .cta-section{
    padding-top: 3.5rem;
  }

  .cta-box{
    border-radius: 28px;
    padding: 1.6rem;
  }

  .cta-box h2{
    max-width: 100%;
  }

  .cta-box .btn-trial{
    max-width: 100%;
    min-height: 68px;
  }
}

/* =========================================================
   FOOTER CLARO PREMIUM - Landing Entre Brokers
   Similar al header glass
   ========================================================= */

.site-footer{
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(245,124,0,.10), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(15,23,42,.06), transparent 28%),
    linear-gradient(180deg, #f6f4ef 0%, #ffffff 100%);
  color: #111827;
}

.site-footer::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    0 22px 60px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
  pointer-events: none;
}

.footer-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr .7fr .8fr;
  gap: 1rem;
  padding: 3rem 0 2rem;
}

.footer-brand,
.footer-links,
.footer-contact{
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
  border: 1px solid rgba(15,23,42,.06);
  box-shadow:
    0 16px 36px rgba(15,23,42,.07),
    inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer-brand{
  padding: 1.35rem;
}

.footer-links,
.footer-contact{
  padding: 1.35rem;
}

.footer-logo{
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p{
  max-width: 440px;
  margin: 0;
  color: #5f6872;
  font-size: .96rem;
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3{
  margin: 0 0 .8rem;
  color: #111827;
  font-size: .98rem;
  font-family: var(--font-title);
  letter-spacing: -.01em;
}

.footer-links a,
.footer-contact a{
  width: fit-content;
  color: #5f6872;
  font-size: .93rem;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover{
  color: #d36f00;
  transform: translateX(2px);
}

.footer-bottom{
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(15,23,42,.08);
  padding: 1rem 0 1.3rem;
}

.footer-bottom p{
  margin: 0;
  color: #687280;
  font-size: .88rem;
  text-align: center;
}

/* Tablet */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand{
    grid-column: 1 / -1;
  }
}

/* Celular */
@media (max-width: 640px){
  .site-footer::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: .85rem;
    padding: 2rem 0 1.4rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact{
    border-radius: 22px;
    padding: 1.15rem;
  }

  .footer-logo{
    height: 40px;
  }

  .footer-bottom{
    padding: .9rem 0 1.1rem;
  }

  .footer-bottom p{
    font-size: .82rem;
  }
}

/* =========================================================
   PLAN PROFESIONAL - Precio promocional lanzamiento
   ========================================================= */

.plan-price--promo{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .45rem .7rem;
}

.plan-price__current{
  color: inherit;
}

.plan-price__old{
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.52);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.plan-price__old::after{
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: #f57c00;
  transform: rotate(-8deg);
}

.pricing-card--featured .plan-price__old{
  color: rgba(255,255,255,.50);
}

.pricing-card--featured .plan-note{
  background: rgba(245,124,0,.12);
  border-color: rgba(245,124,0,.22);
  color: rgba(255,255,255,.92);
}

/* Celular */
@media (max-width: 640px){
  .plan-price__old{
    font-size: 1.05rem;
  }
}/* =========================================================
   ACCESO ANTICIPADO - Bloque bajo hero
   ========================================================= */

.founder-strip{
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(245,124,0,.10), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.founder-strip__inner{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow:
    0 24px 70px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.founder-strip__copy h2{
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #111827;
  max-width: 13ch;
}

.founder-strip__copy p{
  color: #5f6872;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.6;
}

.founder-strip__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.founder-strip__cards article{
  position: relative;
  padding: 1rem 1rem 1rem 2.75rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.74));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 14px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.94);
}

.founder-strip__cards article::before{
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.12);
}

.founder-strip__cards strong{
  display: block;
  color: #111827;
  font-family: var(--font-title);
  font-size: .92rem;
  line-height: 1.18;
}

.founder-strip__cards span{
  display: block;
  margin-top: .28rem;
  color: #687280;
  font-size: .82rem;
  line-height: 1.32;
}

.founder-strip__cta{
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 360px;
  margin-top: .5rem;
}

/* =========================================================
   FAQ PREMIUM
   ========================================================= */

.faq-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(245,124,0,.10), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15,23,42,.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.faq-section::before{
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.28));
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.faq-section .section-narrow{
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .95rem;
}

.faq-card{
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 3rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.74));
  border: 1px solid rgba(15,23,42,.065);
  box-shadow:
    0 16px 34px rgba(15,23,42,.07),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.faq-card::before{
  content: "?";
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(245,124,0,.12);
  color: #d36f00;
  font-weight: 900;
}

.faq-card h3{
  margin: 0 0 .45rem;
  font-family: var(--font-title);
  font-size: 1.02rem;
  color: #111827;
  line-height: 1.22;
}

.faq-card p{
  margin: 0;
  color: #687280;
  font-size: .92rem;
  line-height: 1.48;
}

/* =========================================================
   CTA FLOTANTE MÓVIL
   ========================================================= */

.mobile-sticky-cta{
  display: none;
}

@media (max-width: 640px){
  .founder-strip{
    padding: 2rem 0;
  }

  .founder-strip__inner{
    grid-template-columns: 1fr;
    padding: 1.2rem;
    border-radius: 26px;
  }

  .founder-strip__copy h2{
    max-width: 100%;
  }

  .founder-strip__cards{
    grid-template-columns: 1fr;
  }

  .founder-strip__cta{
    width: 100%;
    max-width: 100%;
  }

  .faq-section::before{
    inset: .55rem;
    border-radius: 28px;
  }

  .faq-section .section-heading{
    text-align: left;
  }

  .faq-section .section-heading h2{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .faq-grid{
    grid-template-columns: 1fr;
  }

  .faq-card{
    padding: 1.1rem 1rem 1.1rem 2.85rem;
    border-radius: 20px;
  }

  .mobile-sticky-cta{
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #f59a2f 0%, #f57c00 58%, #de6f00 100%);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    box-shadow:
      0 18px 38px rgba(245,124,0,.30),
      inset 0 1px 0 rgba(255,255,255,.22);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-sticky-cta.is-hidden{
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }
}

/* =========================================================
   DIFERENCIALES - Corrección responsive final
   Aplica a página principal y landing de lanzamiento
========================================================= */

/* Tablet y móvil: abrir el panel oscuro al ancho real disponible */
@media (max-width: 900px){

  .benefits-section{
    padding: 4rem 0 5.5rem;
    overflow: hidden;
  }

  .benefits-section::before{
    inset: 0 !important;
    border-radius: 32px !important;
  }

  .benefits-section .container{
    width: 100% !important;
    max-width: none !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .benefits-section .section-heading{
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-grid{
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .benefit-card{
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

/* Tablet: conservar 2 columnas si cabe bien */
@media (min-width: 641px) and (max-width: 900px){

  .benefits-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .benefit-card{
    min-height: 180px;
  }
}

/* Celular: una columna, full width y sin desbordes */
@media (max-width: 640px){

  .benefits-section{
    padding: 3.4rem 0 6.2rem;
  }

  .benefits-section::before{
    inset: 0 !important;
    border-radius: 28px 28px 0 0 !important;
  }

  .benefits-section .container{
    width: 100% !important;
    max-width: none !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .benefits-section .section-heading{
    text-align: left;
    margin-bottom: 1.8rem;
    padding-left: 0;
    padding-right: 0;
  }

  .benefits-section .section-heading h2{
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.04;
    letter-spacing: -.045em;
  }

  .benefits-grid{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }

  .benefit-card{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 1.35rem 1.25rem;
    border-radius: 24px;
  }

  .benefit-card h3{
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .benefit-card p{
    font-size: .98rem;
    line-height: 1.48;
  }

  .section-cta--benefits{
    margin-top: 1.35rem;
    width: 100%;
  }

  .benefits-section .section-cta .btn-trial{
    width: 100%;
    max-width: 100%;
  }
}