/* ============================================================
   SURA CLONE — styles.css
   Primary color: #002B6B (SURA dark navy)
   ============================================================ */

:root {
  --primary:    #002B6B;
  --primary-lt: #003d99;
  --green:      #75FB4C;
  --red:        #EA3323;
  --white:      #ffffff;
  --black:      #000000;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-800:   #1f2937;
  --wa-green:   #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── HEADER ─────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { height: 44px; width: auto; }

#mainNav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

#mainNav a {
  color: var(--white);
  font-weight: 500;
  font-size: .95rem;
  transition: opacity .2s;
}
#mainNav a:hover { opacity: .75; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO / SLIDER ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 5;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: background .3s;
}
.slider-dot.active { background: var(--white); }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 72px;
}

.hero-text {
  max-width: 580px;
  background: rgba(0, 43, 107, .82);
  backdrop-filter: blur(2px);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: .75rem;
  margin: 0 1.25rem;
}

.hero-text h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .92;
  margin-bottom: 1.5rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  padding: .75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-hero:hover { background: var(--gray-100); transform: scale(1.02); }
.play-icon { width: 22px; height: 22px; }

/* ── VIDEO MODAL ─────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.8);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: #000;
  border-radius: .75rem;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: .6rem; right: .75rem;
  z-index: 10;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  padding: .1rem .5rem;
  border-radius: .3rem;
  cursor: pointer;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.3); }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* ── PLANES SECTION (replaced by SURA block) ────────────── */

.section-title {
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 .3rem;
}

.plan-card {
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.plan-card-header {
  background: var(--primary);
  color: var(--white);
  padding: 1.25rem 1.5rem;
}
.plan-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan-card-body p { color: var(--gray-600); font-size: .95rem; flex: 1; }

.plan-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.plan-link {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: .6rem 1.25rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
  transition: background .2s;
  align-self: flex-start;
}
.plan-link:hover { background: var(--primary-lt); }

/* ── COMPARISON TABLE ────────────────────────────────────── */
.comparison-section {
  padding: 4rem 0;
  background: var(--gray-100);
}

.table-wrapper { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--white);
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.comparison-table thead {
  background: var(--primary);
  color: var(--white);
}

.comparison-table thead th {
  padding: .9rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
}
.comparison-table thead th:first-child { text-align: left; }

.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background .15s;
}
.comparison-table tbody tr:hover { background: var(--gray-100); }
.comparison-table tbody tr:last-child { border-bottom: none; }

.comparison-table td {
  padding: .7rem 1rem;
  text-align: center;
  vertical-align: middle;
}
.comparison-table td:first-child {
  text-align: left;
  color: var(--gray-800);
  font-size: .88rem;
}

.check {
  color: #16a34a;
  font-size: 1.1rem;
  font-weight: 700;
}
.cross {
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 700;
}

.diff-row { background: rgba(0,43,107,.04); }
.diff-label {
  color: var(--primary);
  font-weight: 600;
  font-size: .8rem;
}

.table-note {
  margin-top: .75rem;
  color: var(--gray-600);
  font-size: .82rem;
  padding: 0 .25rem;
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 5rem 0;
  background: url('https://cdn.sanity.io/images/9tekvp2z/production/46f6c12416ba4f6545126ed7c28ddea82bae8461-1792x765.webp') center/cover no-repeat;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,43,107,.75);
}
.contact-inner { position: relative; z-index: 1; }

.contact-form-box {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.contact-form-box .section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.form-notice {
  background: var(--gray-100);
  border-left: 4px solid var(--primary);
  padding: .75rem 1rem;
  margin-bottom: .75rem;
  border-radius: 0 .4rem .4rem 0;
}
.form-notice--warning { border-left-color: #f59e0b; }
.form-notice p { font-size: .85rem; color: var(--gray-800); }

.form-subtext {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: .5rem;
  font-size: .95rem;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,43,107,.12);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--red);
}

.field-error {
  display: none;
  color: var(--red);
  font-size: .8rem;
  margin-top: .25rem;
}
.field-error.show { display: block; }

.btn-submit {
  width: 100%;
  padding: .85rem;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: .5rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .1s;
  margin-top: .5rem;
}
.btn-submit:hover { background: var(--primary-lt); }
.btn-submit:active { transform: scale(.98); }

/* ── FORM SUCCESS MESSAGE ────────────────────────────────── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  text-align: center;
  animation: fadeIn .4s ease;
}

.form-success p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.success-icon {
  width: 56px;
  height: 56px;
  color: #16a34a;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WHATSAPP SECTION ────────────────────────────────────── */
.whatsapp-section {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.whatsapp-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.whatsapp-text { flex: 1; min-width: 240px; }
.whatsapp-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .75rem;
}
.whatsapp-text p { color: var(--gray-600); max-width: 520px; }

.whatsapp-action { flex-shrink: 0; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--wa-green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: .9rem 1.75rem;
  border-radius: 2rem;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid var(--gray-200);
}

.footer-inner { display: flex; flex-direction: column; gap: 2.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: .85rem;
  opacity: .8;
  line-height: 1.6;
}
.footer-brand strong { font-weight: 700; opacity: 1; }

.footer-contact h4,
.footer-links h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-contact ul,
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  opacity: .8;
}
.footer-contact a { opacity: 1; transition: opacity .2s; }
.footer-contact a:hover { opacity: .7; }

.contact-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: .85; }

.footer-links a {
  font-size: .88rem;
  opacity: .75;
  transition: opacity .2s;
}
.footer-links a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .82rem;
  opacity: .65;
}

/* ── FLOATING WA BUTTON ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  background: var(--wa-green);
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.55);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.7);
}
.wa-float svg { width: 30px; height: 30px; }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-page {
  padding-top: 72px;
  min-height: 100vh;
  background: var(--white);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.legal-content h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.legal-content p {
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: var(--gray-800);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .4rem;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 2rem;
  transition: opacity .2s;
}
.legal-back:hover { opacity: .7; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  #mainNav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--primary);
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  #mainNav.open { display: flex; }
  #mainNav a { font-size: 1rem; padding: .25rem 0; }

  .hero-text {
    max-width: 100%;
    margin: 0 .75rem;
    padding: 1.75rem 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .whatsapp-inner { flex-direction: column; text-align: center; }
  .whatsapp-text p { max-width: 100%; }
}

@media (max-width: 480px) {
  .contact-form-box { padding: 1.5rem 1rem; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ── SURA COMPARISON BLOCK ───────────────────────────────── */
.sura-block {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--black);
  background: linear-gradient(135deg, #e8edf7 0%, var(--white) 50%, var(--gray-100) 100%);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.sura-block *, .sura-block *::before, .sura-block *::after { box-sizing: border-box; }

.sura-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.sura-header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--green);
}

.sura-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: sura-float 20s infinite ease-in-out;
}

@keyframes sura-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

.sura-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
  animation: sura-slideDown 0.8s ease-out;
}

@keyframes sura-slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.sura-header p {
  font-size: 1.1rem;
  color: #cdd8f0;
  position: relative;
  z-index: 1;
  animation: sura-blockFadeIn 1s ease-out 0.3s backwards;
}

@keyframes sura-blockFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sura-intro-section {
  background: var(--white);
  padding: 50px;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-left: 6px solid var(--primary);
  animation: sura-slideUp 0.8s ease-out;
}

@keyframes sura-slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.sura-intro-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.sura-intro-section p {
  color: var(--gray-600);
  font-size: 1rem;
}

.sura-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.sura-legend-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: var(--gray-100);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sura-legend-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.sura-legend-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.2rem;
}

.sura-badge-global {
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  box-shadow: 0 4px 10px rgba(0, 43, 107, 0.3);
}

.sura-badge-clasica {
  background: linear-gradient(135deg, #27AE60, #2ECC71);
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.sura-legend-text {
  font-weight: 600;
  color: var(--black);
}

.sura-comp-section { margin: 50px 0; }

.sura-category-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
  color: var(--white);
  padding: 25px 40px;
  margin: 40px 0 0 0;
  border-radius: 15px 15px 0 0;
  position: relative;
  overflow: hidden;
}

.sura-category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--primary) 50%, #27AE60 100%);
}

.sura-category-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: var(--white);
}

.sura-category-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.sura-comp-table {
  width: 100%;
  background: var(--white);
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.sura-comp-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid var(--gray-200);
  transition: background-color 0.3s ease;
}

.sura-comp-row:hover { background-color: #e8edf7; }
.sura-comp-row:last-child { border-bottom: none; }

.sura-comp-cell {
  padding: 25px 30px;
  display: flex;
  align-items: center;
}

.sura-feature-name {
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
}

.sura-cov-global {
  background: linear-gradient(135deg, rgba(0, 43, 107, 0.08), rgba(0, 61, 153, 0.12));
  border-left: 5px solid var(--primary);
  font-weight: 500;
}

.sura-cov-clasica {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(46, 204, 113, 0.12));
  border-left: 5px solid #27AE60;
  font-weight: 500;
}

.sura-cov-global::after {
  content: '🌍';
  margin-left: 8px;
  font-size: 0.9rem;
}

.sura-cov-clasica::after {
  content: '🏥';
  margin-left: 8px;
  font-size: 0.9rem;
}

.sura-cov-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.sura-highlight {
  background: linear-gradient(120deg, var(--green) 0%, #a3fc8a 100%);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  color: #1a1a1a;
}

.sura-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 8px;
}

.sura-badge-unlimited {
  background: linear-gradient(135deg, #27AE60, #2ECC71);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

.sura-badge-no {
  background: linear-gradient(135deg, var(--red), #c0392b);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(234, 51, 35, 0.3);
}

.sura-scroll-indicator {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--primary), #27AE60);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 999;
}

@media (max-width: 968px) {
  .sura-comp-row { grid-template-columns: 1fr; }
  .sura-comp-cell { border-bottom: 1px solid var(--gray-200); }
  .sura-feature-name::before { content: '📋 '; }
  .sura-cov-global::before { content: 'Global: '; font-weight: 700; color: var(--primary); }
  .sura-cov-clasica::before { content: 'Clásica: '; font-weight: 700; color: #27AE60; }
  .sura-header h1 { font-size: 2rem; }
  .sura-category-header h3 { font-size: 1.4rem; }
  .sura-intro-section { padding: 30px 20px; }
}

.planes-salud-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f4f6fb;
}

.plan-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 28px 28px;
  flex: 1 1 320px;
  max-width: 420px;
  box-shadow: 0 2px 16px rgba(30, 80, 220, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a4fd6;
  margin: 0;
}

.plan-card-icon {
  background: #1a4fd6;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-card-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.plan-card-description {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.plan-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-card-btn {
  background: #1a4fd6;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.plan-card-btn:hover {
  background: #1340b0;
  color: #fff;
  text-decoration: none;
}

.plan-card-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.plan-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a4fd6;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .planes-salud-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    max-width: 100%;
  }
}