/* ===== TOKENS / RESET ===== */
:root{
  --navy:#00007F;
  --navy-2:#000a8c;
  --yellow:#FFFF00;
  --green:#00AF1B;
  --ink:#333;
  --line:#69727d;
  --radius:18px;
  --maxw:1180px;
  --font-head:"Mulish",sans-serif;
  --font-body:"Roboto",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:#fff;
  line-height:1.5;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* ===== BUTTONS (no shadow anywhere) ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:var(--font-head);
  font-weight:600;
  font-size:15px;
  line-height:1;
  padding:13px 26px;
  border:0;
  border-radius:6px;
  cursor:pointer;
  transition:transform .15s ease,background .2s ease,color .2s ease;
  box-shadow:none !important;
}
.btn:hover{box-shadow:none !important;transform:translateY(-2px)}
.btn--pill{border-radius:40px}
.btn--lg{padding:15px 34px;font-size:16px}
.btn--block{width:100%}
.btn--yellow{background:var(--yellow);color:var(--navy);font-weight:700}
.btn--yellow:hover{background:#ffe600}
.btn--navy{background:var(--navy);color:#fff;font-weight:700}
.btn--navy:hover{background:#0d0db4}
.btn--outline{background:var(--navy);color:var(--yellow);border:1.6px solid var(--yellow);font-weight:700}
.btn--outline:hover{background:#000a99}
.btn--whatsapp{background:var(--green);color:#fff;font-weight:600}
.btn--whatsapp:hover{background:#019b18}

/* ===== TOP BAR ===== */
.topbar{background:#00005B;position:relative;z-index:30}
.topbar__inner{display:flex;align-items:center;justify-content:flex-end;gap:20px;height:30px}
.topbar__speed{display:inline-flex;align-items:center;gap:7px;color:#fff;font-size:13px;font-family:var(--font-head);font-weight:600}
.topbar__speed:hover{color:var(--yellow)}
.topbar__social{display:flex;gap:14px;align-items:center}
.topbar__social a{opacity:.92;transition:opacity .2s}
.topbar__social a:hover{opacity:1}
.topbar__social svg path{fill:var(--yellow)}

/* ===== HEADER ===== */
.header{
  position:relative;z-index:25;
  background:#00007b;
}
.header.is-stuck{box-shadow:0 4px 16px rgba(0,0,0,.18)}
.header__inner{display:flex;align-items:center;gap:24px;height:74px}
.header__logo img{height:42px;width:auto}
.nav{display:flex;gap:30px;margin-left:18px;flex:1}
.nav__link{color:#fff;font-family:var(--font-head);font-weight:600;font-size:15px;position:relative;padding:4px 0}
.nav__link:hover{color:var(--yellow)}
.nav__link::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--yellow);transition:width .25s}
.nav__link:hover::after{width:100%}
.header__actions{display:flex;gap:12px;align-items:center}
.header__burger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:6px}
.header__burger span{width:26px;height:3px;background:#fff;border-radius:3px;display:block}

/* ===== HERO ===== */
.hero{
  position:relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 10px),
    radial-gradient(120% 135% at 88% 50%, #2433d6 0%, #1620bd 42%, #0c1090 72%, #080a72 100%);
  padding:85px 0 0px;
  margin-top:0;
  margin-bottom:-6px;
  overflow:hidden;
}
.hero__inner{display:flex;align-items:center;gap:20px;min-height:482px}
.hero__text{flex:1;max-width:560px;padding-bottom:74px}
.hero__eyebrow{font-family:var(--font-head);font-weight:500;font-size:23px;color:#fff;margin-bottom:6px}
.hero__title{font-family:var(--font-head);font-weight:900;font-size:52px;line-height:1.04;color:var(--yellow);margin-bottom:20px}
.hero__sub{font-family:var(--font-head);font-weight:500;font-size:19px;color:#fff;max-width:475px;margin-bottom:28px}
.hero__media{position:relative;flex:1.15;align-self:flex-end;display:flex;justify-content:flex-end;align-items:flex-end}
.hero__media img{position:relative;z-index:1;width:100%;max-width:660px;display:block}
.hero__img--desktop{transform:translate(54px,32px) scale(1.690,1.690);transform-origin:center;max-width:560px;align-self:center;image-rendering:auto}
.hero__img--mobile{display:none}

/* ===== SECTION TITLE ===== */
.section-title{
  font-family:var(--font-head);
  font-weight:900;
  font-size:40px;
  color:var(--navy);
  text-align:center;
  margin:0 auto 44px;
  line-height:1.15;
}

/* ===== PLANS ===== */
.plans{background:#fff;padding:64px 0 70px}
.carousel{display:flex;align-items:center;gap:10px}
.carousel__viewport{overflow:hidden;flex:1}
.carousel__track{display:flex;gap:24px;transition:transform .45s cubic-bezier(.4,.1,.2,1);will-change:transform}
.carousel__arrow{
  flex:none;width:40px;height:40px;
  background:transparent;border:0;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:opacity .2s,transform .2s;
}
.carousel__arrow:hover{transform:scale(1.15)}
.carousel__arrow:disabled{opacity:.3;cursor:default}
.carousel__dots{display:flex;gap:10px;justify-content:center;margin-top:26px}
.carousel__dots button{width:11px;height:11px;border-radius:50%;border:0;background:#c4c4d8;cursor:pointer;padding:0;transition:background .2s}
.carousel__dots button.active{background:#11114a}

/* PLAN CARD */
.plan{
  flex:0 0 calc((100% - 48px)/3);
  background:#fff;
  border:1.5px solid #d9d9ec;
  border-radius:20px;
  padding:0;
  display:flex;flex-direction:column;
  overflow:hidden;
}
.plan__head{
  background:var(--navy);
  color:#fff;text-align:center;
  padding:20px 16px 16px;
}
.plan__head .ate{font-family:var(--font-head);font-weight:600;font-size:15px;letter-spacing:.5px}
.plan__head .mega{font-family:var(--font-head);font-weight:900;font-size:38px;color:#fff;line-height:1.05}
.plan__head .fibra{font-family:var(--font-head);font-weight:600;font-size:14px;opacity:.9;margin-top:2px}
/* featured (destaque) card */
.plan--compact{align-self:flex-start}
.plan--compact .plan__price{margin-top:0;padding-top:26px}
.plan--featured .plan__head{background:linear-gradient(160deg,#0a0a40 0%,#02021a 100%)}
.plan--featured .plan__head .mega{color:var(--yellow)}
.plan__body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}
.plan__feats{display:flex;flex-direction:column;gap:11px;margin-bottom:16px}
.plan__feats li{display:flex;gap:9px;align-items:flex-start;font-size:14.5px;color:var(--navy);font-weight:500;font-family:var(--font-head)}
.plan__feats li svg{flex:none;margin-top:1px}
.plan__logos{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;margin-bottom:14px;min-height:38px}
.plan__logos .logo{width:auto;object-fit:contain}
.plan__logos .logo--watch{max-height:34px;max-width:96px}
.plan__logos .logo--mediquo{max-height:26px;max-width:96px}
.plan__logos .logo--hbo{max-height:30px;max-width:84px}
.plan__logorow{display:flex;align-items:center;justify-content:center;min-height:38px}
.plan__logorow .logo--exitlag{max-height:30px;max-width:120px;width:auto;object-fit:contain;transform:translate(0px,-27px) scale(2.369,2.368);transform-origin:center}
.plan__ou{font-family:var(--font-head);font-weight:700;color:var(--navy);font-size:14px}
.plan__pills{display:flex;flex-direction:column;gap:9px;margin-bottom:6px}
.plan__pill{
  border:1.5px solid var(--navy);border-radius:11px;padding:9px 12px;
  text-align:center;font-family:var(--font-head);font-weight:700;font-size:13.5px;color:var(--navy);
}
.plan__pill-logo{display:block;margin:9px auto 2px;max-height:26px;max-width:120px;width:auto;object-fit:contain}
.plan__price{margin-top:auto;padding-top:18px;text-align:left}
.plan__price .old{font-family:var(--font-head);color:#9a9aab;font-size:14px;font-weight:600}
.plan__price .old s{text-decoration:line-through}
.plan__price .now{display:flex;align-items:flex-start;gap:4px;color:var(--navy);font-family:var(--font-head);margin-top:2px}
.plan__price .rs{font-size:24px;font-weight:900;margin-top:8px}
.plan__price .big{font-size:56px;font-weight:900;line-height:.95}
.plan__price .per{font-size:14px;font-weight:600;color:#555;align-self:flex-end;margin-bottom:9px}
.plan .btn{margin-top:18px}

/* ===== ONDE ESTAMOS ===== */
.onde{
  background:#0a0acc url("../images/fundo-lc-virtual-net-2-1.png") center 60%/cover no-repeat;
  padding:60px 0;
}
.onde__inner{display:flex;align-items:center;gap:30px}
.onde__map{flex:1;display:flex;justify-content:center}
.onde__map img{max-width:520px;width:100%}
.onde__content{flex:1;max-width:480px}
.onde__title{font-family:var(--font-head);font-weight:900;font-size:40px;color:var(--yellow);margin-bottom:22px}
.onde__cities{display:flex;flex-direction:column;gap:13px;margin-bottom:30px}
.onde__cities li{display:flex;align-items:center;gap:12px;color:#fff;font-family:var(--font-head);font-weight:600;font-size:17px}
.onde__cities li::before{
  content:"";width:18px;height:24px;flex:none;
  background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFF00'%3E%3Cpath d='M12 2C8 2 4.5 5.2 4.5 9.2c0 5.1 6.2 11.6 6.9 12.3a.8.8 0 0 0 1.2 0c.7-.7 6.9-7.2 6.9-12.3C19.5 5.2 16 2 12 2zm0 10a2.8 2.8 0 1 1 0-5.6 2.8 2.8 0 0 1 0 5.6z'/%3E%3C/svg%3E");
}

/* ===== RECOMENDA ===== */
.recomenda{background:#fff;padding:64px 0 70px}
/* bloco de avaliação Google */
.grating{
  display:flex;align-items:center;gap:22px;
  width:fit-content;max-width:100%;margin:-20px auto 46px;
  background:linear-gradient(180deg,#ffffff,#fbfbff);
  border:1.5px solid #e7e7f2;border-radius:20px;
  padding:18px 26px;box-shadow:0 12px 38px rgba(0,0,127,.10);
  transition:transform .25s ease, box-shadow .25s ease;
  animation:gratingIn .5s ease both;
}
.grating:hover{transform:translateY(-3px);box-shadow:0 18px 48px rgba(0,0,127,.16)}
.grating__brand{display:flex;align-items:center;gap:11px}
.grating__g{width:34px;height:34px;flex:none}
.grating__brandtxt{font-family:var(--font-head);font-weight:600;font-size:13px;color:#80869a;line-height:1.2}
.grating__brandtxt strong{display:block;font-weight:800;font-size:18px;color:#3c4043}
.grating__divider{width:1.5px;align-self:stretch;background:#e7e7f2;flex:none}
.grating__main{display:flex;flex-direction:column;gap:5px}
.grating__top{display:flex;align-items:center;gap:12px}
.grating__score{font-family:var(--font-head);font-weight:900;font-size:40px;line-height:1;color:var(--navy)}
.grating__stars{display:flex;gap:3px}
.grating__stars svg{width:20px;height:20px;fill:#FBBC04;transform:scale(0);transition:transform .4s cubic-bezier(.34,1.56,.64,1)}
.grating.is-in .grating__stars svg{transform:scale(1)}
.grating.is-in .grating__stars svg:nth-child(1){transition-delay:.10s}
.grating.is-in .grating__stars svg:nth-child(2){transition-delay:.18s}
.grating.is-in .grating__stars svg:nth-child(3){transition-delay:.26s}
.grating.is-in .grating__stars svg:nth-child(4){transition-delay:.34s}
.grating.is-in .grating__stars svg:nth-child(5){transition-delay:.42s}
.grating__proof{display:flex;align-items:center;gap:10px}
.grating__avatars{display:inline-flex;flex:none}
.grating__avatars i{
  width:25px;height:25px;border-radius:50%;
  background:var(--navy);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-weight:800;font-size:11px;font-style:normal;
  border:2px solid #fff;margin-left:-9px;box-shadow:0 1px 3px rgba(0,0,0,.12);
}
.grating__avatars i:first-child{margin-left:0}
.grating__count{font-family:var(--font-head);font-weight:600;font-size:13.5px;color:#5a5a8a}
.grating__count strong{color:var(--navy);font-weight:800}
.grating__cta{
  display:inline-flex;align-items:center;gap:8px;white-space:nowrap;
  background:var(--yellow);color:var(--navy);
  font-family:var(--font-head);font-weight:800;font-size:14px;
  padding:11px 20px;border-radius:30px;
  transition:background .2s ease, transform .2s ease;
}
.grating__cta:hover{background:#ffe600;transform:scale(1.04)}
.grating__cta svg{width:16px;height:16px;fill:none;stroke:var(--navy);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
@keyframes gratingIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){
  .grating{animation:none}
  .grating__stars svg{transform:scale(1);transition:none}
}
@media (max-width:760px){
  .grating{flex-direction:column;gap:16px;text-align:center;padding:20px 24px}
  .grating__divider{width:64%;height:1.5px;align-self:center}
  .grating__top{justify-content:center}
  .grating__main{align-items:center}
}
.recomenda__card{
  flex:0 0 calc((100% - 48px)/3);
  display:flex;flex-direction:column;
  border:1.5px solid #e7e7f2;border-radius:16px;padding:26px 24px;background:#fafaff;
}
.recomenda__stars{color:var(--yellow);font-size:18px;letter-spacing:2px;margin-bottom:10px;-webkit-text-stroke:.6px #e6b800;text-align:center}
.recomenda__text{font-size:15px;color:#444;font-style:italic;margin-bottom:16px;line-height:1.55;flex:1}
.recomenda__who{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;margin-top:auto}
.recomenda__av{width:44px;height:44px;border-radius:50%;background:var(--navy);color:var(--yellow);display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:900}
.recomenda__name{font-family:var(--font-head);font-weight:800;color:var(--navy);font-size:15px}
.recomenda__city{font-size:13px;color:#888}

/* ===== EMPRESA ===== */
.empresa{background:#fafafa;padding:66px 0;overflow:hidden}
.empresa__inner{display:flex;gap:40px;align-items:center}
.empresa__left{flex:1.1;max-width:600px}
.empresa__title{font-family:var(--font-head);font-weight:900;font-size:38px;color:var(--navy);line-height:1.1;margin-bottom:28px;text-align:center}
.empresa__features{display:grid;grid-template-columns:1fr 1fr;gap:22px 28px;margin-bottom:30px}
.empresa__features li{display:flex;gap:13px;align-items:center;font-family:var(--font-head);font-weight:700;color:var(--navy);font-size:15.5px;line-height:1.25}
.feat-ico{flex:none;display:flex;align-items:center;justify-content:center}
.empresa__right{flex:1;display:flex;justify-content:center;align-items:center}
.empresa__right img{max-width:480px;width:100%;transform:translate(63px,75px) scale(1.400,1.401);transform-origin:center}
/* form (sits on section bg, full width, pill fields) */
.empresa__form{display:flex;flex-direction:column;gap:14px}
.empresa__form input,.empresa__form select{
  width:100%;padding:13px 22px;border:1px solid var(--line);border-radius:30px;
  font-family:var(--font-body);font-size:15px;color:var(--navy);background:#fff;outline:none;
}
.empresa__form select{
  appearance:none;-webkit-appearance:none;-moz-appearance:none;
  padding-right:46px;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300007F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 20px center;background-size:15px;
}
.empresa__form select::-ms-expand{display:none}
.empresa__form input::placeholder{color:#8b93a0}
.empresa__form input:focus,.empresa__form select:focus{border-color:var(--navy)}
.form-row{display:flex;gap:14px}
.form-row select{flex:1}
.empresa__form .btn{margin-top:8px}

/* ===== FOOTER ===== */
.footer{background:var(--navy);color:#fff;padding:26px 0;position:relative;z-index:2}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.footer__brand p{font-size:14px;opacity:.92;font-family:var(--font-head);font-weight:600}
.footer__links{display:flex;gap:28px;flex-wrap:wrap}
.footer__links a{display:inline-flex;align-items:center;gap:8px;font-size:14px;opacity:.92;font-family:var(--font-head);font-weight:600}
.footer__links a:hover{color:var(--yellow);opacity:1}
.footer__links a:hover svg{stroke:var(--yellow)}

/* ===== RESPONSIVE ===== */
@media (max-width:980px){
  .nav,.header__actions{display:none}
  .header__burger{display:flex;margin-left:auto}
  /* fundo escurecido (backdrop) atrás do popup — ancorado abaixo do header, sem mover nada */
  .header.nav-open::before{content:"";position:absolute;top:74px;left:0;right:0;height:100vh;background:rgba(0,0,0,.55);z-index:1}
  .header.nav-open .header__actions{display:flex;position:absolute;top:74px;left:0;right:0;z-index:2;flex-direction:column;background:var(--navy);padding:14px 24px 20px;gap:12px;box-shadow:0 14px 28px rgba(0,0,0,.4)}
  .header.nav-open .header__actions .btn{width:100%;justify-content:center}
  .hero__inner{flex-direction:column;text-align:center}
  .hero__text{max-width:none}
  .hero__sub{margin-left:auto;margin-right:auto}
  .hero__title{font-size:42px}
  .hero__media{justify-content:center}
  .hero__img--desktop{transform:translate(0px,0px) scale(1.441,1.441);transform-origin:center;max-width:330px;margin:0 auto;align-self:center}
  .plan{flex:0 0 calc((100% - 24px)/2)}
  .onde__inner{flex-direction:column;text-align:center}
  .onde__content{max-width:none}
  .onde__cities{display:inline-flex;text-align:left}
  .empresa__inner{flex-direction:column}
  .empresa__left{max-width:none}
  .empresa__right{width:100%;justify-content:center}
  .empresa__right img{max-width:300px;transform:translate(3px, 3px) scale(1.280, 1.280);transform-origin:center;margin-top:16px}
  .empresa__form{max-width:none;width:100%}
  .empresa__features{grid-template-columns:1fr 1fr}
  .recomenda__card{flex:0 0 calc((100% - 24px)/2)}
}
@media (max-width:640px){
  .section-title{font-size:30px}
  .hero{padding:36px 0 50px}
  .hero__title{font-size:36px}
  .hero__eyebrow{font-size:19px}
  .hero__sub{font-size:17px;text-wrap:balance}
  .hero__sub .br-desktop{display:none}
  .plan{flex:0 0 100%}
  .plan__price .big{font-size:48px}
  .plan__price .now{flex-wrap:wrap}
  .empresa__features{grid-template-columns:1fr}
  .empresa__title{font-size:30px}
  .onde__title{font-size:32px}
  .recomenda__card{flex:0 0 100%}
  .footer__inner{flex-direction:column;text-align:center}
}

/* ===== FERRAMENTA DE AJUSTE DE IMAGENS (F2) ===== */
#ieBadge{
  position:fixed;top:0;left:0;right:0;z-index:99999;display:none;
  background:#00007f;color:#fff;font-family:var(--font-head);font-weight:700;
  font-size:14px;text-align:center;padding:8px 12px;letter-spacing:.2px;
}
body.ie-active img{
  outline:2px dashed rgba(0,0,127,.55);outline-offset:2px;cursor:pointer;
}
body.ie-active img.ie-selected{
  outline:3px solid var(--yellow);box-shadow:0 0 0 4px rgba(0,0,127,.35);
}
#imgEditorPanel{
  position:fixed;right:18px;bottom:18px;z-index:100000;display:none;
  width:280px;background:#fff;border-radius:14px;padding:16px;
  box-shadow:0 12px 40px rgba(0,0,0,.28);font-family:var(--font-head);color:#222;
  max-height:calc(100vh - 36px);overflow-y:auto;
}
#imgEditorPanel .ie__title{
  display:flex;justify-content:space-between;align-items:center;
  font-weight:800;font-size:16px;color:#00007f;margin-bottom:10px;
}
#imgEditorPanel .ie__close{
  border:none;background:#eee;border-radius:50%;width:26px;height:26px;
  cursor:pointer;font-size:13px;line-height:1;color:#555;
}
#imgEditorPanel .ie__hint{
  font-size:12px;color:#666;background:#f4f5fb;border-radius:8px;
  padding:8px;margin-bottom:12px;word-break:break-word;
}
#imgEditorPanel .ie__group{margin-bottom:12px}
#imgEditorPanel .ie__group label{
  display:flex;justify-content:space-between;font-size:13px;font-weight:600;margin-bottom:4px;
}
#imgEditorPanel .ie__group output{color:#00007f;font-weight:700}
#imgEditorPanel .ie__row{display:flex;align-items:center;gap:6px}
#imgEditorPanel .ie__row input[type=range]{flex:1;accent-color:#00007f}
#imgEditorPanel .ie__row button{
  border:none;background:#00007f;color:#fff;border-radius:7px;
  width:30px;height:30px;cursor:pointer;font-size:13px;
}
#imgEditorPanel .ie__divider{
  margin:14px 0 10px;font-weight:800;font-size:13px;color:#00007f;
  border-top:1px solid #e6e6f2;padding-top:12px;text-transform:uppercase;letter-spacing:.4px;
}
#imgEditorPanel .ie__sublabel{
  margin:10px 0 6px;font-weight:800;font-size:12px;color:#5a5a8a;
}
#imgEditorPanel .ie__actions{display:flex;gap:8px;margin-top:6px}
#imgEditorPanel .ie__reset-hero{flex:1;border:none;border-radius:8px;padding:9px;cursor:pointer;font-family:var(--font-head);font-weight:700;font-size:13px;background:#f0f0f0;color:#333}
#imgEditorPanel .ie__copy-hero{flex:1;border:none;border-radius:8px;padding:9px;cursor:pointer;font-family:var(--font-head);font-weight:700;font-size:13px;background:var(--yellow);color:#00007f}
#imgEditorPanel .ie__btn{
  flex:1;border:none;border-radius:8px;padding:9px;cursor:pointer;
  font-family:var(--font-head);font-weight:700;font-size:13px;
}
#imgEditorPanel .ie__reset{background:#f0f0f0;color:#333}
#imgEditorPanel .ie__copy{background:var(--yellow);color:#00007f}
