:root{
      --accent:#ff5a1f;
      --footer:#16377b;
      --ink:#16377b;
      --muted:#53627f;
      --bg-soft:#f8fafc;
      --line:#e5e7eb;
      --wa:#25d366;
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans','Liberation Sans',sans-serif;
      color:#111827;background:#fff
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    :target{scroll-margin-top:84px}

    .site-header{
      background:rgba(255,255,255,.96);
      border-bottom:1px solid #e7edf6;
      backdrop-filter:blur(10px);
      position:sticky;
      top:0;
      z-index:1000
    }
    .container{
      max-width:1200px;
      margin:0 auto;
      padding:0 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      height:72px
    }
    .logo img{height:46px;width:auto}
    .nav ul{list-style:none;display:flex;gap:20px;align-items:center}
    .nav a{font-size:16px;color:#16377b;transition:color .2s}
    .nav a:hover{color:var(--accent)}
    .btn-cta{
      background:var(--accent);
      color:#fff !important;
      padding:10px 18px;
      border-radius:10px;
      font-weight:700;
      display:inline-flex;
      align-items:center;
      gap:8px
    }
    .btn-cta:hover{filter:brightness(.96)}
    .menu-toggle{
      display:none;
      font-size:28px;
      background:none;
      border:none;
      cursor:pointer
    }

    @media (max-width:768px){
      .menu-toggle{display:block}
      .nav{
        position:absolute;
        top:72px;left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        border-top:1px solid #eee
      }
      .nav ul{flex-direction:column;gap:0}
      .nav li{width:100%;text-align:center;border-bottom:1px solid #eee}
      .nav a{display:block;padding:15px}
      .nav.active{display:flex}
    }

    .hero-cover{
      position:relative;
      width:100%;
      min-height:calc(100vh - 72px);
      overflow:hidden;
      background:#16377b;
      isolation:isolate
    }
    .hero-cover::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg,rgba(22,55,123,.76) 0%,rgba(22,55,123,.42) 44%,rgba(22,55,123,.12) 100%);
      z-index:1
    }
    .hero-cover__img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center center;
      z-index:0
    }
    .hero-content{
      position:relative;
      z-index:2;
      max-width:1200px;
      min-height:calc(100vh - 72px);
      margin:0 auto;
      padding:0 20px;
      display:flex;
      align-items:center
    }
    .hero-copy{
      width:min(640px,100%);
      color:#fff;
      padding:34px 0
    }
    .hero-title{
      font-size:clamp(36px,5vw,68px);
      line-height:1.02;
      font-weight:300;
      letter-spacing:-.045em;
      text-wrap:balance;
      margin-bottom:14px
    }
    .hero-subtitle{
      font-size:clamp(17px,2vw,25px);
      line-height:1.45;
      font-weight:300;
      letter-spacing:-.015em;
      color:rgba(255,255,255,.92);
      max-width:560px;
      margin-bottom:26px
    }
    .hero-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      background:var(--accent);
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      padding:14px 22px;
      border-radius:14px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.02em;
      box-shadow:0 16px 30px rgba(255,90,31,.34);
      transition:transform .2s ease,filter .2s ease
    }
    .hero-btn:hover{
      transform:translateY(-2px);
      filter:brightness(.98)
    }
    .hero-btn iconify-icon{font-size:21px}
    @media (max-width:767px){
      .hero-cover{
        min-height:calc(100svh - 72px)
      }
      .hero-cover::after{
        background:linear-gradient(180deg,rgba(22,55,123,.22) 0%,rgba(22,55,123,.60) 48%,rgba(22,55,123,.90) 100%)
      }
      .hero-cover__img{
        object-fit:cover;
        object-position:center center
      }
      .hero-content{
        min-height:calc(100svh - 72px);
        align-items:flex-end;
        padding:0 20px 34px
      }
      .hero-copy{
        padding:0;
        text-align:left
      }
      .hero-title{
        font-size:36px;
        letter-spacing:-.04em;
        max-width:330px
      }
      .hero-subtitle{
        font-size:16px;
        max-width:310px;
        margin-bottom:20px
      }
      .hero-btn{
        width:100%;
        max-width:320px;
        padding:13px 18px;
        border-radius:12px
      }
    }

    .features-section{
      background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
      padding:38px 20px;
      border-top:1px solid #e8eef8;
      border-bottom:1px solid #e8eef8
    }
    .features-container{
      max-width:1100px;
      margin:0 auto;
      display:grid;
      gap:18px;
      grid-template-columns:repeat(3,1fr)
    }
    @media (max-width:900px){
      .features-container{grid-template-columns:1fr}
    }
    .feature-card{
      background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
      border:1px solid rgba(226,232,240,.95);
      border-radius:20px;
      box-shadow:0 14px 28px rgba(15,23,42,.07);
      padding:22px 20px;
      display:grid;
      gap:9px;
      transition:transform .2s, box-shadow .2s, border-color .2s
    }
    .feature-card:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 34px rgba(15,23,42,.10);
      border-color:rgba(255,90,31,.22)
    }
    .feature-icon{
      width:48px;height:48px;
      border-radius:16px;
      background:rgba(255,90,31,.10);
      display:grid;
      place-items:center;
      border:1px solid rgba(255,90,31,.24);
      color:var(--accent)
    }
    .feature-icon iconify-icon{font-size:27px;color:var(--accent)}
    .feature-title{font-size:18px;font-weight:800;color:var(--ink)}
    .feature-text{font-size:14px;color:var(--muted);line-height:1.65}

    .plans-section{
      background:#f3f7fd;
      padding:28px 0 42px
    }
    .plans-container{
      max-width:1200px;
      margin:0 auto;
      padding:0 20px
    }
    .section-title{
      text-align:center;
      font-size:28px;
      font-weight:800;
      color:var(--ink);
      margin-bottom:10px
    }
    .section-desc{
      text-align:center;
      max-width:760px;
      margin:0 auto 24px;
      color:var(--muted);
      line-height:1.6;
      font-size:16px
    }
    .plans-slider{position:relative}
    .track{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:calc(100% - 80px);
      gap:18px;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch;
      padding:6px 40px
    }
    .track::-webkit-scrollbar{height:10px}
    .track::-webkit-scrollbar-thumb{background:#d5d6da;border-radius:8px}
    .slide{scroll-snap-align:start}
    .card{
      background:#fff;
      border:1px solid #e8eef8;
      border-radius:12px;
      box-shadow:0 10px 24px rgba(22,55,123,.08);
      overflow:hidden
    }
    .card-img{
      width:100%;
      height:190px;
      object-fit:cover
    }
    .card-body{padding:16px 18px 14px}
    .card-title{
      font-size:18px;
      font-weight:800;
      color:#263238;
      margin-bottom:6px
    }
    .card-text{
      font-size:14px;
      line-height:1.55;
      color:#5b6470;
      min-height:76px
    }
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:8px;
      font-weight:700;
      font-size:14px;
      color:var(--accent)
    }
    .card-link::after{content:"›";font-size:18px;line-height:1}
    .nav-btn{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      width:40px;height:40px;
      border-radius:999px;
      border:1px solid #e0e0e0;
      background:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
      font-size:20px;
      color:#5771a8;
      box-shadow:0 8px 18px rgba(22,55,123,.10)
    }
    .nav-btn:hover{color:var(--accent);border-color:var(--accent)}
    .nav-btn.prev{left:8px}
    .nav-btn.next{right:8px}
    .dots{
      display:flex;
      gap:10px;
      justify-content:center;
      align-items:center;
      margin-top:14px
    }
    .dot{
      width:10px;height:10px;
      border-radius:999px;
      background:#d2d4d9;
      border:none;
      cursor:pointer
    }
    .dot[aria-selected="true"]{background:#334155}
    @media (min-width:992px){
      .track{grid-auto-columns:calc((100% - 80px) / 3)}
      .card-img{height:180px}
    }
    @media (min-width:640px) and (max-width:991px){
      .track{grid-auto-columns:calc((100% - 80px) / 2)}
    }
    @media (max-width:639px){
      .plans-section .track{grid-auto-columns:85%;padding:6px 16px;gap:12px}
      .plans-section .card-img{height:180px}
      .plans-section .card-title{font-size:17px}
      .plans-section .card-text{font-size:13px}
    }

    .rede-section{
      background:#f6f9fe;
      padding:50px 20px 40px
    }
    .rede-container{
      max-width:1100px;
      margin:0 auto
    }
    .rede-title{
      font-size:28px;
      font-weight:800;
      color:var(--ink);
      margin-bottom:12px;
      text-align:center
    }
    .rede-title::after{
      content:"";
      display:block;
      width:60px;height:3px;
      background:var(--accent);
      margin:10px auto 0;
      border-radius:3px
    }
    .rede-desc{
      font-size:16px;
      color:var(--muted);
      max-width:780px;
      margin:0 auto 22px;
      line-height:1.6;
      text-align:center
    }

    .side-hospitals{padding:12px 0 6px}
    .side-hospitals__head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:8px;
      padding:0 4px
    }
    .side-hospitals__head h2{
      font:800 18px/1.2 system-ui,Roboto,Arial;
      color:var(--ink)
    }
    .side-hospitals__controls{display:flex;gap:8px}
    .sh-btn{
      width:34px;height:34px;
      border-radius:10px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--accent);
      font-size:18px;
      cursor:pointer;
      box-shadow:0 1px 4px rgba(0,0,0,.06)
    }
    .side-hospitals__track{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:290px;
      gap:12px;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch;
      padding:6px 2px;
      scrollbar-width:thin
    }
    .side-hospitals__track::-webkit-scrollbar{height:10px}
    .side-hospitals__track::-webkit-scrollbar-thumb{background:rgba(255,90,31,.35);border-radius:8px}
    .sh-card{
      scroll-snap-align:start;
      background:#fff;
      border:1px solid var(--line);
      border-radius:12px;
      overflow:hidden;
      box-shadow:0 6px 12px rgba(0,0,0,.06);
      display:flex;
      flex-direction:column;
      min-height:248px
    }
    .sh-card__img{
      width:100%;
      height:140px;
      object-fit:cover;
      background:#f3f4f6
    }
    .sh-card__body{padding:12px}
    .sh-card__body h3{
      font:800 16px/1.2 system-ui,Roboto,Arial;
      color:var(--accent);
      margin-bottom:6px
    }
    .sh-card__body p{
      font:400 13px/1.5 system-ui,Roboto,Arial;
      color:var(--muted)
    }
    @media (max-width:640px){
      .side-hospitals__track{grid-auto-columns:78vw}
    }

    .clinicas-wrap{margin-top:24px;text-align:center}
    .clinicas-title{
      font-size:22px;
      font-weight:800;
      color:var(--ink);
      margin:8px 0 6px;
      display:inline-block
    }
    .clinicas-title::after{
      content:"";
      display:block;
      width:50px;height:3px;
      background:var(--accent);
      margin:8px auto 0;
      border-radius:3px
    }
    .clinicas-desc{
      font-size:15px;
      color:#6b7280;
      margin:8px auto 18px;
      max-width:700px
    }
    .clinicas-list{
      list-style:none;
      padding:0;margin:0 auto;
      max-width:860px;
      text-align:left;
      display:grid;
      grid-template-columns:1fr;
      gap:10px
    }
    .clinicas-list li{
      background:#fff;
      padding:12px 16px;
      border-radius:8px;
      border:1px solid var(--line);
      font-size:15px;
      color:#374151;
      transition:background .2s,border-color .2s,transform .15s
    }
    .clinicas-list li:hover{
      border-color:var(--accent);
      transform:translateY(-2px)
    }
    @media (min-width:900px){
      .clinicas-list{grid-template-columns:1fr 1fr}
    }

    .quote-section{
      background:#fff;
      padding:42px 20px;
      display:flex;
      justify-content:center;
      align-items:center
    }
    .quote-form{
      display:flex;
      flex-direction:column;
      gap:10px;
      background:#fff;
      border:1px solid #e7edf6;
      border-radius:14px;
      padding:20px;
      max-width:440px;
      width:100%;
      box-shadow:0 16px 32px rgba(22,55,123,.08)
    }
    .quote-form input,.quote-form textarea{
      width:100%;
      padding:11px 12px;
      border:1px solid #d1d5db;
      border-radius:8px;
      font-size:14px;
      outline:none;
      transition:.2s;
      background:#fff
    }
    .quote-form input:focus,.quote-form textarea:focus{
      border-color:var(--accent);
      box-shadow:0 0 0 2px rgba(255,90,31,.18)
    }
    .radio-inline{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      padding:0;border:0;margin:2px 0 0 0
    }
    .radio-inline legend{
      font-size:14px;
      font-weight:700;
      color:#111827;
      margin-right:6px
    }
    .radio-option{
      display:inline-flex;
      align-items:center;
      gap:6px;
      cursor:pointer;
      user-select:none
    }
    .radio-option input{
      margin:0;
      accent-color:var(--accent)
    }
    .radio-option span{font-size:14px;color:#333}
    .form-title{
      font-size:22px;
      font-weight:800;
      color:var(--ink);
      margin:0 0 12px 0;
      text-align:center;
      line-height:1.35
    }
    .btn-submit{
      margin-top:6px;
      padding:12px;
      background:var(--accent);
      color:#fff;
      font-weight:700;
      border:none;
      border-radius:8px;
      cursor:pointer;
      font-size:15px;
      box-shadow:0 8px 20px rgba(22,55,123,.14)
    }
    .btn-submit:hover{filter:brightness(.96)}
    .btn-wa{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 18px;
      background:var(--accent);
      color:#fff;
      border-radius:8px;
      font-weight:700;
      box-shadow:0 8px 20px rgba(22,55,123,.14)
    }
    .btn-wa:hover{filter:brightness(.96)}
    .btn-wa svg,.btn-cta svg{width:18px;height:18px;fill:currentColor;flex:none}

    .site-footer{
      position:relative;
      background:
        radial-gradient(circle at top left,rgba(255,255,255,.18),transparent 34%),
        linear-gradient(135deg,#102a63 0%,#16377b 62%,#0d214d 100%);
      color:#fff;
      padding:44px 20px 22px;
      overflow:hidden
    }
    .site-footer::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(180deg,rgba(255,255,255,.06) 1px,transparent 1px);
      background-size:38px 38px;
      opacity:.22;
      pointer-events:none
    }
    .footer-container{
      position:relative;
      max-width:1100px;
      margin:0 auto;
      display:grid;
      grid-template-columns:1.2fr .9fr .9fr;
      gap:28px;
      align-items:start
    }
    .footer-brand{
      display:grid;
      gap:16px
    }
    .footer-logos{
      display:flex;
      gap:18px;
      align-items:center;
      flex-wrap:wrap
    }
    .footer-logo{
      max-height:58px;
      width:auto;
      object-fit:contain
    }
    .footer-logo.next{
      max-height:70px;
      background:none;
      border-radius:0;
      padding:0;
      box-shadow:none
    }
    .footer-logo.white{
      filter:brightness(0) invert(1);
    }
    .footer-text{
      color:rgba(255,255,255,.88);
      font-size:14px;
      line-height:1.65;
      max-width:430px
    }
    .footer-title{
      font-size:16px;
      font-weight:800;
      margin-bottom:12px
    }
    .footer-list{
      list-style:none;
      display:grid;
      gap:10px
    }
    .footer-list li,
    .footer-contact a{
      color:rgba(255,255,255,.9);
      font-size:14px;
      line-height:1.45
    }
    .footer-list li{
      display:flex;
      align-items:flex-start;
      gap:8px
    }
    .footer-list iconify-icon,
    .footer-contact iconify-icon{
      font-size:18px;
      color:#fff;
      flex:none;
      margin-top:1px
    }
    .footer-contact{
      display:grid;
      gap:10px
    }
    .footer-contact p{
      display:flex;
      gap:8px;
      align-items:flex-start;
      font-size:14px;
      color:rgba(255,255,255,.9);
      line-height:1.45
    }
    .footer-bottom{
      position:relative;
      max-width:1100px;
      margin:28px auto 0;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.18);
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.78);
      font-size:12px
    }
    @media (max-width:900px){
      .footer-container{
        grid-template-columns:1fr;
        text-align:left
      }
      .footer-bottom{
        flex-direction:column
      }
    }

    .whatsapp-button{
      position:fixed;
      bottom:20px;
      right:20px;
      z-index:1000;
      width:64px;height:64px;
      display:flex;
      justify-content:center;
      align-items:center;
      background:none;
      box-shadow:none;
      transition:transform .3s ease, filter .3s ease
    }
    .whatsapp-button img{
      width:100%;
      height:100%;
      object-fit:contain;
      display:block
    }
    .whatsapp-button:hover{
      transform:scale(1.08);
      filter:drop-shadow(0 6px 14px rgba(0,0,0,.28))
    }


/* Ajustes Altaneiros */
.hospitals-info{
  margin-top:24px;
}
.hospital-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.hospital-info-card{
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  border:1px solid rgba(226,232,240,.95);
  border-radius:18px;
  box-shadow:0 12px 26px rgba(15,23,42,.07);
  padding:20px;
  min-height:210px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hospital-info-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,90,31,.24);
  box-shadow:0 16px 30px rgba(15,23,42,.1);
}
.hospital-info-card__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,90,31,.10);
  border:1px solid rgba(255,90,31,.18);
  color:var(--accent);
}
.hospital-info-card__icon iconify-icon{font-size:25px;}
.hospital-info-card h3{
  color:var(--ink);
  font-size:17px;
  font-weight:800;
  line-height:1.25;
}
.hospital-info-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.network-note{
  margin:18px auto 0;
  max-width:900px;
  background:#fff;
  border:1px solid rgba(255,90,31,.18);
  border-left:4px solid var(--accent);
  border-radius:14px;
  padding:15px 18px;
  color:#374151;
  font-size:14px;
  line-height:1.65;
  box-shadow:0 8px 18px rgba(15,23,42,.06);
}
.footer-logo.altaneiros{
  max-height:58px;
  width:auto;
  object-fit:contain;
  background:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
}
@media (max-width:900px){
  .hospital-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:767px){
  .container{padding:0 14px}
  .hero-cover{min-height:calc(100svh - 72px)}
  .hero-cover::after{
    background:linear-gradient(180deg,rgba(22,55,123,.30) 0%,rgba(22,55,123,.60) 42%,rgba(22,55,123,.90) 100%);
  }
  .hero-content{
    min-height:calc(100svh - 72px);
    align-items:flex-start;
    padding:0 20px 30px;
  }
  .hero-copy{
    margin-top:clamp(72px,16vh,130px);
    padding:0;
  }
  .hero-title{
    font-size:clamp(44px,12vw,58px);
    max-width:370px;
    line-height:.98;
    margin-bottom:16px;
  }
  .hero-subtitle{
    font-size:clamp(19px,5vw,23px);
    max-width:360px;
    line-height:1.28;
    margin-bottom:24px;
  }
  .hero-btn{
    width:auto;
    min-width:240px;
    max-width:100%;
    padding:14px 20px;
  }
}
@media (max-width:560px){
  .hospital-grid{grid-template-columns:1fr}
  .hospital-info-card{min-height:auto}
}
