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

:root {
  --rx-navy: #0B1F4B;
  --rx-blue: #1A3C8F;
  --rx-red: #D91B1B;
  --rx-red-soft: #F03535;
  --rx-gold: #C8902A;
  --rx-cream: #F7F5F0;
  --rx-gray: #6B7280;
  --rx-border: #E5E2DA;
  --rx-text: #1A1A2E;
}

body { font-family: 'DM Sans', sans-serif; background: #F7F5F0; color: #1A1A2E; -webkit-font-smoothing: antialiased; }

#header { display: none !important; }
#box_login { display: none !important; }

#rx_nav_web {
  background: #ffffff;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 0 #E5E2DA, 0 2px 12px rgba(0,0,0,.06);
}

.rx_nav_left { display: flex; align-items: center; gap: 20px; }
.rx_nav_logo { display: flex; align-items: center; text-decoration: none; }
.rx_nav_logo_img { height: 62px; width: auto; object-fit: contain; }
.rx_nav_tabs { display: flex; gap: 4px; }
.rx_nav_tab { padding: 8px 18px; border-radius: 9px; font-size: 18px; font-weight: 500; color: #4B5563; text-decoration: none; transition: all .15s; }
.rx_nav_tab:hover { color: #0B1F4B; background: rgba(11,31,75,.06); }
.rx_nav_right { display: flex; align-items: center; gap: 14px; }
.rx_nav_user { display: flex; align-items: center; gap: 10px; padding: 5px 14px 5px 5px; border-radius: 10px; cursor: pointer; text-decoration: none; transition: background .15s; }
.rx_nav_user:hover { background: rgba(11,31,75,.06); }
.rx_nav_avatar { width: 34px; height: 34px; background: #D91B1B; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: #fff; }
.rx_nav_username { font-size: 15px; color: #0B1F4B; font-weight: 500; }
.rx_nav_logout { color: #9CA3AF; font-size: 22px; text-decoration: none; transition: color .15s; }
.rx_nav_logout:hover { color: #D91B1B; }
.rx_nav_link { font-size: 15px; color: #4B5563; text-decoration: none; }
.rx_nav_link:hover { color: #0B1F4B; }
.rx_nav_btn { background: #D91B1B; color: #fff !important; border-radius: 9px; padding: 9px 20px; font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .15s; }
.rx_nav_btn:hover { background: #F03535; }
.rx_nav_login_icon { color: #4B5563; text-decoration: none; transition: color .15s; display: flex; align-items: center; }
.rx_nav_login_icon:hover { color: #0B1F4B; }

.rx_hero { background: #0B1F4B; padding: 32px 64px 0; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end; min-height: 380px; position: relative; overflow: hidden; }
.rx_hero_content { align-self: start; }
.rx_hero::before { content: ''; position: absolute; top: -120px; right: 0; width: 500px; height: 500px; border-radius: 50%; background: rgba(26,60,143,.35); pointer-events: none; }
.rx_hero_eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 7px 18px; font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 22px; }
.rx_hero_dot { width: 7px; height: 7px; background: #D91B1B; border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.rx_hero_title { font-family: 'Sora', sans-serif !important; font-size: 46px !important; font-weight: 700 !important; color: #fff !important; line-height: 1.12 !important; margin-bottom: 18px !important; letter-spacing: -.5px !important; }
.rx_hero_title em { color: #F03535; font-style: normal; }
.rx_hero_desc { font-size: 17px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 30px; max-width: 420px; }
.rx_hero_actions { display: flex; gap: 14px; align-items: center; padding-bottom: 4px; }
.rx_btn_hero_main { background: #D91B1B; color: #fff !important; border-radius: 11px; padding: 14px 30px; font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 600; text-decoration: none; transition: all .2s; box-shadow: 0 4px 16px rgba(217,27,27,.35); display: inline-block; }
.rx_btn_hero_main:hover { background: #F03535; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(217,27,27,.4); }
.rx_btn_hero_sec { background: transparent; color: rgba(255,255,255,.8) !important; border: 1.5px solid rgba(255,255,255,.2); border-radius: 11px; padding: 13px 26px; font-size: 17px; text-decoration: none; transition: all .2s; display: inline-block; }
.rx_btn_hero_sec:hover { border-color: rgba(255,255,255,.4); color: #fff !important; }
.rx_hero_img { background: rgba(255,255,255,.06); border-radius: 18px 18px 0 0; min-height: 320px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.1); border-bottom: none; overflow: hidden; }
.rx_hero_img_inner { text-align: center; color: rgba(255,255,255,.3); font-size: 14px; }

.rx_benefits { padding: 56px 64px; background: #fff; }
.rx_section_pre { font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #D91B1B; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.rx_section_pre::before { content: ''; width: 20px; height: 2px; background: #D91B1B; border-radius: 1px; }
.rx_section_h2 { font-family: 'Sora', sans-serif !important; font-size: 40px !important; font-weight: 700 !important; color: #0B1F4B !important; margin-bottom: 40px !important; letter-spacing: -.3px !important; }
.rx_benefits_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rx_benefit_card { border: 1.5px solid #E5E2DA; border-radius: 16px; padding: 28px; transition: all .2s; background: #fff; position: relative; overflow: hidden; }
.rx_benefit_card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0; transition: opacity .2s; }
.rx_bc_red::before { background: #D91B1B; } .rx_bc_blue::before { background: #1A3C8F; } .rx_bc_gold::before { background: #C8902A; }
.rx_benefit_card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.rx_benefit_card:hover::before { opacity: 1; }
.rx_benefit_icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 24px; }
.rx_bi_red { background: #FEE2E2; } .rx_bi_blue { background: #DBEAFE; } .rx_bi_gold { background: #FEF3C7; }
.rx_benefit_card h4 { font-family: 'Sora', sans-serif !important; font-size: 24px !important; font-weight: 700 !important; color: #0B1F4B !important; margin-bottom: 12px !important; }
.rx_benefit_card p { font-size: 18px !important; color: #6B7280 !important; line-height: 1.65 !important; }
.rx_new_badge { display: inline-flex; align-items: center; gap: 5px; background: #ECFDF5; color: #065F46; border-radius: 6px; padding: 4px 10px; font-size: 13px; font-weight: 700; margin-top: 12px; letter-spacing: .06em; text-transform: uppercase; }
.rx_benefit_figure { margin: 0; border-radius: 10px; overflow: hidden; }
.rx_benefit_figure img { width: 100%; height: 180px; object-fit: cover; display: block; }

.rx_tutoriales { padding: 56px 64px; background: #F7F5F0; }
.rx_tut_grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.rx_tut_card { background: #fff; border-radius: 14px; border: 1px solid #E5E2DA; overflow: hidden; display: grid; grid-template-columns: 160px 1fr; cursor: pointer; transition: all .2s; }
.rx_tut_card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.rx_tut_thumb { background: #0B1F4B; position: relative; overflow: hidden; min-height: 160px; }
.rx_tut_thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rx_tut_num { position: absolute; bottom: 10px; left: 12px; font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: rgba(255,255,255,.3); }
.rx_tut_info { padding: 20px 22px; }
.rx_tut_tag { font-size: 16px; color: #D91B1B; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.rx_tut_name { font-family: 'Sora', sans-serif !important; font-size: 22px !important; font-weight: 700 !important; color: #0B1F4B !important; margin-bottom: 8px !important; }
.rx_tut_desc { font-size: 17px !important; color: #6B7280 !important; line-height: 1.6 !important; margin-bottom: 16px !important; }
.rx_tut_btn { display: inline-block; background: #0B1F4B; color: #fff !important; border-radius: 8px; padding: 10px 20px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .15s; margin-right: 8px; }
.rx_tut_btn:hover { background: #1A3C8F; color: #fff !important; }

.rx_faq { padding: 56px 64px; background: #fff; }
.rx_faq_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.rx_faq_card { background: #F7F5F0; border-radius: 14px; padding: 22px 24px; cursor: pointer; transition: background .2s; }
.rx_faq_card:hover { background: #ede9e0; }
.rx_faq_num { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: #D91B1B; margin-bottom: 10px; letter-spacing: .08em; }
.rx_faq_q { font-family: 'Sora', sans-serif !important; font-size: 17px !important; font-weight: 600 !important; color: #0B1F4B !important; margin-bottom: 8px !important; }
.rx_faq_a { font-size: 15px !important; color: #6B7280 !important; line-height: 1.65 !important; }

.rx_lightbox { background: rgba(0,0,0,.85); position: fixed; display: none; z-index: 9999; inset: 0; }
.rx_lightbox_inner { position: relative; max-width: 960px; margin: 7% auto; padding: 0 3%; }
.rx_lightbox_close { background: transparent; border: none; color: #fff; font-size: 14px; position: absolute; top: -28px; right: 3%; cursor: pointer; text-transform: uppercase; }
.rx_video_wrap { padding-bottom: 56.25%; position: relative; height: 0; overflow: hidden; }
.rx_video_wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

#rx_footer_web { background: #0B1F4B; padding: 32px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.rx_footer_logo { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rx_footer_copy { font-size: 14px; color: rgba(255,255,255,.4); }
.rx_footer_links { display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; }
.rx_footer_link { font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.rx_footer_link:hover { color: rgba(255,255,255,.8); }
/* ══════════════════════════════════════
   Hero Opción C — Minimalista blanco
════════════════════════════════════════ */
.rx_hero_c {
  background: #fff;
  padding: 56px 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rx_hero_c_left { display: flex; flex-direction: column; }

.rx_hero_c_tag {
  display: inline-flex;
  align-items: center;
  background: #F7F5F0;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 16px;
  color: #0B1F4B;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 22px;
  width: fit-content;
}

.rx_hero_c_h1 {
  font-family: 'Sora', sans-serif !important;
  font-size: 58px !important;
  font-weight: 800 !important;
  color: #0B1F4B !important;
  line-height: 1.08 !important;
  letter-spacing: -1px !important;
  margin-bottom: 20px !important;
}

.rx_h1_accent { color: #D91B1B; }
.rx_h1_light { color: #B0B9C8; font-weight: 400 !important; }

.rx_hero_c_desc {
  font-size: 20px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.rx_hero_c_actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rx_btn_c_main {
  background: #D91B1B;
  color: #fff !important;
  border-radius: 11px;
  padding: 14px 28px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(217,27,27,.3);
  display: inline-block;
}
.rx_btn_c_main:hover { background: #F03535; transform: translateY(-1px); }

.rx_btn_c_note {
  font-size: 13px;
  color: #9CA3AF;
}

.rx_hero_c_right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rx_fc_card {
  background: #E5E2DA; /* Fondo neutro mientras carga imagen */
  border-radius: 16px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.rx_fc_card:hover { transform: translateY(-3px); }

.rx_fc_fb .rx_fc_badge { background: #1877F2; }
.rx_fc_ig .rx_fc_badge { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.rx_fc_wa .rx_fc_badge { background: #25D366; }
.rx_fc_ppt .rx_fc_badge { background: #D24726; }

.rx_fc_badge {
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.rx_fc_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
  transition: opacity .3s, transform .3s;
}

.rx_fc_card:hover .rx_fc_img {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Flat UI classes maintained for Tutorials usage */
.rx_flat_ui {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.2);
}
/* Facebook UI */
.fb_header { height: 12px; background: #1877F2; margin-bottom: 8px; }
.fb_post { padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.fb_post_img { height: 40px; background: #DBEAFE; border-radius: 4px; }
.fb_post_txt { height: 6px; background: #94A3B8; border-radius: 3px; width: 80%; }
/* WhatsApp UI */
.wa_ui { background: #E5DDD5; padding: 10px; gap: 6px; height: 100%; }
.wa_bubble { height: 12px; border-radius: 6px; width: 60%; }
.wa_bubble.left { background: #fff; align-self: flex-start; }
.wa_bubble.right { background: #DCF8C6; align-self: flex-end; }
/* PowerPoint UI */
.ppt_ui { background: #FAF9F8; padding: 12px; justify-content: center; align-items: center; height: 100%; }
.ppt_slide { width: 90%; height: 80%; background: #fff; border: 1px solid #E1DFDD; border-radius: 2px; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.ppt_title { height: 8px; background: #D24726; width: 40%; }
.ppt_content { height: 40px; background: #F3F2F1; }
/* Formatos UI */
.format_ui { background: #F3F4F6; padding: 12px; display: flex; align-items: center; justify-content: center; height: 100%; }
.format_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
.f_icon { background: #fff; border: 1px solid #E5E7EB; border-radius: 4px; font-size: 10px; font-weight: 800; color: #374151; height: 30px; display: flex; align-items: center; justify-content: center; }



/* Stats divider */
.rx_divider_stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 64px;
  background: #F7F5F0;
  border-top: 0.5px solid #E5E2DA;
  border-bottom: 0.5px solid #E5E2DA;
}

.rx_divider_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #0B1F4B;
  font-weight: 700;
  white-space: nowrap;
}

.rx_divider_dot {
  width: 6px;
  height: 6px;
  background: #D91B1B;
  border-radius: 50%;
  flex-shrink: 0;
}

.rx_divider_sep {
  width: 1px;
  height: 18px;
  background: #E5E2DA;
  flex-shrink: 0;
}

/* Testimonials / Reseñas */
.rx_reviews { padding: 80px 64px; background: #fff; }
.rx_reviews_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.rx_review_card { background: #F7F5F0; border-radius: 20px; padding: 32px; border: 1px solid #E5E2DA; transition: all .3s ease; display: flex; flex-direction: column; }
.rx_review_card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.05); border-color: #D91B1B; }
.rx_review_stars { color: #C8902A; font-size: 18px; margin-bottom: 16px; display: flex; gap: 2px; }
.rx_review_text { font-size: 16px; color: #4B5563; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.rx_review_text p { margin-bottom: 12px; }
.rx_review_author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rx_review_avatar { width: 44px; height: 44px; border-radius: 50%; background: #0B1F4B; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.rx_review_info h5 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: #0B1F4B; margin: 0; }
.rx_review_info span { font-size: 13px; color: #9CA3AF; }

/* Benefit cards con número */
.rx_benefit_num {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #E5E2DA;
  line-height: 1;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .rx_hero_c { grid-template-columns: 1fr !important; padding: 32px 24px 28px !important; gap: 32px !important; }
  .rx_hero_c_h1 { font-size: 40px !important; }
  .rx_hero_c_right { grid-template-columns: 1fr 1fr !important; }
  .rx_fc_card { height: 100px !important; }
  .rx_divider_stats { flex-wrap: wrap; gap: 12px; padding: 16px 24px; }
  .rx_hero_c_actions { flex-direction: column !important; align-items: flex-start !important; }
}
