:root{
  --mr-bg:#f5f7fb;
  --mr-surface:#ffffff;
  --mr-surface-soft:#f8fafc;
  --mr-primary:#1E3A5F;
  --mr-primary-strong:#16304d;
  --mr-accent:#FF6B2C;
  --mr-accent-strong:#e85b20;
  --mr-text:#0f172a;
  --mr-text-soft:#475569;
  --mr-text-fade:#64748b;
  --mr-border:rgba(15,23,42,.08);
  --mr-border-strong:rgba(15,23,42,.14);
  --mr-success:#0f766e;
  --mr-shadow:0 20px 60px rgba(15,23,42,.08);
  --mr-shadow-soft:0 10px 30px rgba(15,23,42,.06);
  --mr-radius-xs:12px;
  --mr-radius-sm:16px;
  --mr-radius-md:22px;
  --mr-radius-lg:28px;
  --mr-radius-xl:34px;
  --mr-container:1180px;
  --mr-header-h:76px;
  --mr-transition:220ms ease;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,107,44,.10), transparent 30%),
    linear-gradient(180deg,#f8fbff 0%,#f5f7fb 38%,#eef3f8 100%);
  color:var(--mr-text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.mr-page-shell{
  min-height:100vh;
}

.mr-container{
  width:min(calc(100% - 32px), var(--mr-container));
  margin:0 auto;
}

.mr-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(15,23,42,.06);
}

.mr-header-inner{
  min-height:var(--mr-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.mr-brand{
  display:inline-flex;
  align-items:center;
  min-width:0;
}

.mr-brand img{
  height:38px;
  width:auto;
  object-fit:contain;
}

.mr-header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  background:var(--mr-primary);
  color:#fff;
  font-size:.92rem;
  font-weight:700;
  box-shadow:0 12px 24px rgba(30,58,95,.18);
  transition:transform var(--mr-transition), background var(--mr-transition), box-shadow var(--mr-transition);
}

.mr-header-cta:hover{
  background:var(--mr-primary-strong);
  transform:translateY(-1px);
}

.mr-hero{
  position:relative;
  padding:28px 0 28px;
}

.mr-hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:start;
}

.mr-hero-copy,
.mr-hero-card{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:var(--mr-shadow);
}

.mr-hero-copy{
  padding:24px 18px 20px;
  border-radius:28px;
}

.mr-kicker,
.mr-section-kicker,
.mr-card-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.76rem;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--mr-primary);
}

.mr-kicker::before,
.mr-section-kicker::before,
.mr-card-eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--mr-accent);
  box-shadow:0 0 0 6px rgba(255,107,44,.14);
  flex:0 0 auto;
}

.mr-hero h1{
  margin:14px 0 14px;
  font-size:clamp(2rem, 6vw, 4.2rem);
  line-height:1.03;
  letter-spacing:-.04em;
  font-weight:800;
  max-width:11ch;
}

@media (min-width: 860px){
  .mr-hero h1{
    font-size:3.15rem;
    line-height:1.08;
    max-width:12ch;
  }
}

.mr-hero-lead{
  margin:0;
  font-size:1rem;
  line-height:1.65;
  color:var(--mr-text-soft);
  max-width:62ch;
}

.mr-hero-points{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin:22px 0 0;
}

.mr-point{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  background:rgba(248,250,252,.92);
  border:1px solid var(--mr-border);
  border-radius:16px;
  font-size:.95rem;
  font-weight:600;
  color:var(--mr-text);
  box-shadow:var(--mr-shadow-soft);
}

.mr-point::before{
  content:"";
  width:20px;
  height:20px;
  flex:0 0 20px;
  margin-top:1px;
  border-radius:999px;
  background:
    radial-gradient(circle at center, #fff 0 26%, transparent 27%),
    linear-gradient(180deg,var(--mr-accent),var(--mr-accent-strong));
  box-shadow:0 8px 16px rgba(255,107,44,.22);
}

.mr-hero-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:22px;
}

.mr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:52px;
  border-radius:16px;
  padding:0 18px;
  font-size:.97rem;
  font-weight:800;
  transition:transform var(--mr-transition), background var(--mr-transition), color var(--mr-transition), border-color var(--mr-transition), box-shadow var(--mr-transition);
}

.mr-btn:hover{
  transform:translateY(-1px);
}

.mr-btn-primary{
  background:linear-gradient(180deg,var(--mr-accent),var(--mr-accent-strong));
  color:#fff;
  box-shadow:0 16px 30px rgba(255,107,44,.24);
}

.mr-btn-primary:hover{
  box-shadow:0 18px 34px rgba(255,107,44,.30);
}

.mr-btn-secondary{
  background:#fff;
  color:var(--mr-primary);
  border:1px solid rgba(30,58,95,.14);
  box-shadow:var(--mr-shadow-soft);
}

.mr-hero-note{
  margin:18px 0 0;
  font-size:.93rem;
  line-height:1.65;
  color:var(--mr-text-fade);
}

.mr-hero-card{
  padding:22px 18px;
  border-radius:24px;
}

.mr-hero-card h2{
  margin:12px 0 10px;
  font-size:1.28rem;
  line-height:1.2;
  letter-spacing:-.03em;
}

.mr-hero-card p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.68;
  font-size:.96rem;
}

.mr-feature-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}

.mr-feature-list li{
  position:relative;
  padding-left:30px;
  color:var(--mr-text);
  font-size:.95rem;
  line-height:1.55;
  font-weight:600;
}

.mr-feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:18px;
  height:18px;
  border-radius:999px;
  background:
    linear-gradient(180deg,var(--mr-primary),var(--mr-primary-strong));
  box-shadow:0 8px 16px rgba(30,58,95,.16);
}

.mr-feature-list li::after{
  content:"";
  position:absolute;
  left:6px;
  top:8px;
  width:6px;
  height:3px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg);
}

.mr-card-price{
  margin-top:22px;
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(30,58,95,.98), rgba(22,48,77,.98));
  color:#fff;
  box-shadow:0 16px 30px rgba(30,58,95,.24);
}

.mr-card-price span,
.mr-card-price small{
  display:block;
}

.mr-card-price span{
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  opacity:.86;
}

.mr-card-price strong{
  display:block;
  margin:6px 0 4px;
  font-size:2rem;
  line-height:1;
  letter-spacing:-.04em;
}

.mr-card-price small{
  font-size:.9rem;
  opacity:.9;
}

.mr-section{
  padding:26px 0;
}

.mr-section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.54), rgba(255,255,255,.74));
  border-top:1px solid rgba(255,255,255,.55);
  border-bottom:1px solid rgba(15,23,42,.04);
}

.mr-section-head{
  max-width:780px;
  margin-bottom:20px;
}

.mr-section-head h2{
  margin:12px 0 10px;
  font-size:clamp(1.55rem, 4vw, 2.8rem);
  line-height:1.08;
  letter-spacing:-.035em;
}

.mr-section-head p{
  margin:0;
  font-size:1rem;
  line-height:1.7;
  color:var(--mr-text-soft);
}

.mr-steps{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-step,
.mr-value-box,
.mr-plan,
.mr-faq-item,
.mr-form-card,
.mr-compare-card{
  background:rgba(255,255,255,.9);
  border:1px solid var(--mr-border);
  box-shadow:var(--mr-shadow-soft);
}

.mr-step{
  padding:18px;
  border-radius:22px;
}

.mr-step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(180deg,var(--mr-accent),var(--mr-accent-strong));
  color:#fff;
  font-weight:800;
  font-size:1rem;
  box-shadow:0 14px 24px rgba(255,107,44,.22);
}

.mr-step h3{
  margin:16px 0 8px;
  font-size:1.08rem;
  line-height:1.25;
  letter-spacing:-.02em;
}

.mr-step p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.68;
  font-size:.96rem;
}

.mr-compare{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-compare-card{
  padding:20px 18px;
  border-radius:24px;
}

.mr-compare-card-muted{
  background:rgba(248,250,252,.94);
}

.mr-compare-card-highlight{
  background:linear-gradient(180deg, rgba(30,58,95,.98), rgba(22,48,77,.98));
  color:#fff;
  border-color:rgba(30,58,95,.4);
  box-shadow:0 20px 36px rgba(30,58,95,.2);
}

.mr-compare-card-highlight .mr-compare-list li{
  color:rgba(255,255,255,.92);
}

.mr-compare-title{
  font-size:1.06rem;
  font-weight:800;
  letter-spacing:-.02em;
}

.mr-compare-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  gap:12px;
}

.mr-compare-list li{
  position:relative;
  padding-left:24px;
  color:var(--mr-text-soft);
  line-height:1.58;
  font-size:.95rem;
}

.mr-compare-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--mr-accent);
}

.mr-value-grid,
.mr-card-showcase,
.mr-cta-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:start;
}

.mr-value-copy h2,
.mr-card-showcase-copy h2,
.mr-cta-copy h2{
  margin:12px 0 12px;
  font-size:clamp(1.55rem, 4vw, 2.65rem);
  line-height:1.08;
  letter-spacing:-.035em;
}

.mr-value-copy p,
.mr-card-showcase-copy p,
.mr-cta-copy p{
  margin:0 0 12px;
  color:var(--mr-text-soft);
  line-height:1.72;
  font-size:1rem;
}

.mr-value-boxes{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-value-box{
  padding:18px;
  border-radius:22px;
}

.mr-value-box h3{
  margin:0 0 8px;
  font-size:1.02rem;
  letter-spacing:-.02em;
}

.mr-value-box p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.64;
  font-size:.95rem;
}

.mr-card-showcase-list{
  background:rgba(255,255,255,.9);
  border:1px solid var(--mr-border);
  border-radius:24px;
  box-shadow:var(--mr-shadow);
  padding:20px 18px;
}

.mr-plans{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-plan{
  position:relative;
  padding:22px 18px 20px;
  border-radius:24px;
  overflow:hidden;
}

.mr-plan::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--mr-accent),var(--mr-accent-strong));
  opacity:.95;
}

.mr-plan-basic::before{
  background:linear-gradient(90deg,#94a3b8,#64748b);
}

.mr-plan-featured{
  border-color:rgba(255,107,44,.28);
  box-shadow:0 22px 40px rgba(255,107,44,.12);
}

.mr-plan-featured::after{
  content:"Recomendado";
  position:absolute;
  top:14px;
  right:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,107,44,.12);
  color:var(--mr-accent-strong);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.mr-plan-tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(30,58,95,.08);
  color:var(--mr-primary);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.mr-plan h3{
  margin:14px 0 8px;
  font-size:1.28rem;
  letter-spacing:-.03em;
}

.mr-plan-price{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin-bottom:12px;
}

.mr-plan-price strong{
  font-size:2.25rem;
  line-height:.95;
  letter-spacing:-.05em;
}

.mr-plan-price span{
  font-size:.95rem;
  color:var(--mr-text-soft);
  font-weight:700;
  margin-bottom:4px;
}

.mr-plan-desc{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.66;
  font-size:.95rem;
}

.mr-plan-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}

.mr-plan-list li{
  position:relative;
  padding-left:24px;
  line-height:1.58;
  font-size:.94rem;
  color:var(--mr-text);
  font-weight:600;
}

.mr-plan-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--mr-success);
}

.mr-pricing-note{
  margin-top:16px;
  padding:16px 18px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--mr-border);
  border-radius:18px;
  color:var(--mr-text-soft);
  line-height:1.65;
  box-shadow:var(--mr-shadow-soft);
}

.mr-pricing-note strong{
  color:var(--mr-text);
}

.mr-specialties{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.mr-specialties span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--mr-border);
  box-shadow:var(--mr-shadow-soft);
  color:var(--mr-text);
  font-size:.92rem;
  font-weight:600;
  line-height:1.3;
}

.mr-faq{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-faq-item{
  padding:18px;
  border-radius:20px;
}

.mr-faq-item h3{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.38;
  letter-spacing:-.02em;
}

.mr-faq-item p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.68;
  font-size:.95rem;
}

.mr-section-cta{
  padding-bottom:34px;
}

.mr-form-card{
  padding:18px;
  border-radius:24px;
  min-height:280px;
}

.mr-form-placeholder{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:4px;
}

.mr-form-placeholder h3{
  margin:0 0 10px;
  font-size:1.16rem;
  letter-spacing:-.02em;
}

.mr-form-placeholder p{
  margin:0 0 10px;
  color:var(--mr-text-soft);
  line-height:1.68;
  font-size:.96rem;
}

.mr-footer{
  padding:20px 0 30px;
}

.mr-footer-inner{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:10px;
  border-top:1px solid rgba(15,23,42,.08);
}

.mr-footer-brand img{
  height:34px;
  width:auto;
}

.mr-footer p{
  margin:0;
  color:var(--mr-text-fade);
  line-height:1.6;
  font-size:.92rem;
}

@media (min-width: 640px){
  .mr-container{
    width:min(calc(100% - 40px), var(--mr-container));
  }

  .mr-hero{
    padding:34px 0 32px;
  }

  .mr-hero-copy{
    padding:28px 24px 24px;
  }

  .mr-hero-card{
    padding:24px;
  }

  .mr-hero-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .mr-btn{
    width:auto;
    min-width:210px;
  }

  .mr-steps,
  .mr-value-boxes,
  .mr-faq{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-plans{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-compare{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-footer-inner{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}

@media (min-width: 860px){
  .mr-header-inner{
    min-height:82px;
  }

  .mr-brand img{
    height:42px;
  }

  .mr-hero{
    padding:42px 0 40px;
  }

  .mr-hero-grid{
    grid-template-columns:minmax(0,1.3fr) minmax(340px,.82fr);
    gap:22px;
  }

  .mr-hero-copy{
    padding:34px 32px 30px;
    border-radius:34px;
  }

  .mr-hero-card{
    padding:28px 24px;
    border-radius:30px;
    position:sticky;
    top:102px;
  }

  .mr-hero-points{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-section{
    padding:42px 0;
  }

  .mr-steps{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .mr-value-grid,
  .mr-card-showcase,
  .mr-cta-grid{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:20px;
  }

  .mr-value-boxes{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-form-card{
    min-height:100%;
  }
}

@media (min-width: 1100px){
  .mr-hero{
    padding:52px 0 48px;
  }

  .mr-hero-grid{
    gap:28px;
  }

  .mr-section{
    padding:52px 0;
  }

  .mr-plans{
    grid-template-columns:repeat(4, minmax(0,1fr));
    align-items:stretch;
  }

  .mr-plan{
    height:100%;
  }

  .mr-section-head{
    margin-bottom:26px;
  }
}

@media (max-width: 420px){
  .mr-container{
    width:min(calc(100% - 24px), var(--mr-container));
  }

  .mr-header-cta{
    padding:0 12px;
    font-size:.84rem;
  }

  .mr-hero-copy,
  .mr-hero-card,
  .mr-step,
  .mr-value-box,
  .mr-compare-card,
  .mr-plan,
  .mr-faq-item,
  .mr-form-card{
    border-radius:20px;
  }

  .mr-hero h1{
    max-width:none;
  }
.mr-form-card{
  background:rgba(255,255,255,.96);
  border:1px solid var(--mr-border);
  border-radius:28px;
  box-shadow:var(--mr-shadow);
  padding:30px 24px;
}

.mr-form-card h3{
  margin:0 0 12px;
  font-size:clamp(1.6rem, 3vw, 2.1rem);
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--mr-text);
}

.mr-form-card p{
  margin:0 0 20px;
  color:var(--mr-text-soft);
  line-height:1.7;
}

.mr-form-card .mr-btn{
  width:100%;
  justify-content:center;
}

@media (min-width: 640px){
  .mr-form-card{
    padding:34px 30px;
  }

  .mr-form-card .mr-btn{
    width:auto;
    min-width:250px;
  }
.mr-form-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:260px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--mr-border);
  border-radius:28px;
  box-shadow:var(--mr-shadow);
  padding:30px 24px;
}

.mr-form-card h3{
  margin:0 0 12px;
  font-size:clamp(1.45rem, 2.6vw, 2rem);
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--mr-text);
}

.mr-form-card p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.72;
}

.mr-cta-copy > .mr-btn{
  margin-top:18px;
}

@media (min-width: 640px){
  .mr-form-card{
    padding:34px 30px;
  }
}