:root{
  --blue:#0B57FF;
  --blue-2:#1f5eff;
  --orange:#FD891A;
  --orange-soft:#fff3e6;

  --text:#23293b;
  --muted:#667085;
  --line:#e6edf7;
  --panel:#f8fbff;
  --panel-2:#eef4ff;
  --white:#ffffff;

  --shadow-sm:0 10px 30px rgba(11,87,255,.08);
  --shadow-md:0 18px 50px rgba(11,87,255,.12);

  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;

  --container:1180px;
}

/* RESET */
*{
  box-sizing:border-box;
}

html,body{
  height:100%;
}

body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

.center{
  text-align:center;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(11,87,255,.08);
}

.header-row{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand-word{
  font-family:"Grandstander",cursive;
  font-size:60px;
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  color:#475069;
  flex-wrap:wrap;
}

.nav-links a{
  padding:8px 2px;
  opacity:.92;
  transition:color .2s ease, opacity .2s ease, transform .2s ease;
}

.nav-links a:hover{
  color:var(--blue);
  opacity:1;
  transform:translateY(-1px);
}

.nav-links a.active{
  color:var(--blue);
  font-weight:700;
  opacity:1;
}

/* GLOBAL TITLES */
.section-head{
  max-width:940px;
  margin:0 auto 34px;
}

.section-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(11,87,255,.10);
  box-shadow:var(--shadow-sm);
  color:var(--blue);
  font-size:13px;
  font-weight:600;
}

.section-title{
  margin:16px 0 12px;
  font-size:46px;
  font-weight:800;
  line-height:1.08;
  color:var(--blue);
}

.section-subtitle{
  margin:0 auto;
  max-width:860px;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.85;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:56px 0 92px;
  background:
    radial-gradient(circle at 8% 18%, rgba(11,87,255,.14) 0, transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(253,137,26,.16) 0, transparent 24%),
    linear-gradient(90deg, #eef5ff 0%, #f7fbff 46%, #fff7ef 100%);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 100%);
  pointer-events:none;
}

.hero-layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  min-height:560px;
}

.hero-content{
  max-width:620px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(11,87,255,.10);
  box-shadow:0 8px 24px rgba(11,87,255,.06);
  color:var(--blue);
  font-size:13px;
  font-weight:600;
  margin-bottom:22px;
}

.hero-title{
  margin:0 0 18px;
  font-size:40px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-1.6px;
  color:var(--blue);
  max-width:640px;
}

.hero-description{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.9;
  max-width:580px;
}

.hero-media{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-media-card{
  position:relative;
  width:100%;
  max-width:900px;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
transform:translateY(-30px);
}

.hero-media-card::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  left:50%;
  top:50%;
  transform:translate(-56%, -44%);
  background:radial-gradient(circle, rgba(11,87,255,.20) 0%, rgba(11,87,255,.10) 28%, rgba(11,87,255,.04) 48%, rgba(11,87,255,0) 72%);
  filter:blur(34px);
  z-index:1;
  pointer-events:none;
}

.hero-media-card::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:20px;
  top:54px;
  background:radial-gradient(circle, rgba(253,137,26,.18) 0%, rgba(253,137,26,.08) 34%, rgba(253,137,26,0) 74%);
  filter:blur(34px);
  z-index:1;
  pointer-events:none;
}

.hero-media-card img{
  position:relative;
  z-index:3;
  width:140%;
  max-width:none;
  height:auto;
  transform:scale(1.25) translateX(40px);
  object-fit:contain;
}

.hero-media::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-20px;
  transform:translateX(-50%);
  width:340px;
  height:36px;
  background:radial-gradient(ellipse at center, rgba(248,251,255,.38) 0%, rgba(248,251,255,.12) 48%, rgba(248,251,255,0) 82%);
  filter:blur(8px);
  z-index:4;
  pointer-events:none;
}

/* DOWNLOAD SHOWCASE */
.download-showcase{
  position:relative;
  z-index:5;
  margin-top:40px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
  align-items:center;
  padding:34px 36px;
  border-radius:34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.70) 100%);
  border:1px solid rgba(11,87,255,.10);
  box-shadow:
    0 22px 60px rgba(11,87,255,.10),
    inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.download-showcase::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(11,87,255,.08) 0, transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(253,137,26,.10) 0, transparent 24%);
  pointer-events:none;
}

.download-showcase-copy,
.download-showcase-actions{
  position:relative;
  z-index:2;
}

.download-showcase-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(11,87,255,.10);
  box-shadow:var(--shadow-sm);
  color:var(--blue);
  font-size:12px;
  font-weight:700;
  margin-bottom:14px;
}

.download-showcase-title{
  margin:0 0 12px;
  font-size:48px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-1.2px;
  color:var(--blue);
  max-width:560px;
}

.download-showcase-text{
  margin:0;
  max-width:560px;
  color:var(--muted);
  font-size:16px;
  line-height:1.85;
}

.download-showcase-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}

.store-badge{
  min-height:108px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(11,87,255,.10);
  box-shadow:0 16px 34px rgba(11,87,255,.08);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.store-badge:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 40px rgba(11,87,255,.14);
  border-color:rgba(11,87,255,.18);
}

.store-icon{
  width:66px;
  height:66px;
  border-radius:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:linear-gradient(180deg, #f3f7ff 0%, #fff4e8 100%);
  border:1px solid rgba(11,87,255,.10);
}

.store-icon i{
  font-size:30px;
  color:var(--blue);
}

.store-badge-apple .store-icon i{
  color:var(--orange);
}

.store-copy{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.store-copy small{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  margin-bottom:6px;
}

.store-copy strong{
  color:var(--text);
  font-size:20px;
  font-weight:800;
}

/* SERVICES */
.services-section{
  padding:78px 0;
}

.services-cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  margin-top:12px;
}

.service-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-sm);
  transition:.25s ease;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(11,87,255,.12);
}

.service-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(180deg, #f3f7ff 0%, #fff4e8 100%);
  border:1px solid rgba(11,87,255,.12);
  color:var(--blue);
  font-size:20px;
  font-weight:700;
  margin-bottom:18px;
}

.service-title{
  margin:0 0 10px;
  color:var(--blue);
  font-size:22px;
  line-height:1.2;
  font-weight:800;
}

.service-text{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

/* WHY */
.why-section{
  padding:24px 0 82px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.why-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.why-column{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:28px;
  padding:26px 24px;
  box-shadow:var(--shadow-sm);
}

.why-column-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.why-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  height:48px;
  padding:0 12px;
  border-radius:999px;
  background:var(--orange-soft);
  border:1px solid rgba(253,137,26,.22);
  color:var(--orange);
  font-size:14px;
  font-weight:700;
}

.why-group-title{
  margin:0;
  color:var(--blue);
  font-size:24px;
  line-height:1.2;
  font-weight:800;
}

.why-list{
  list-style:none;
  display:grid;
  gap:14px;
  padding:0;
  margin:0;
}

.why-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
}

.why-list strong{
  color:var(--text);
}

.check{
  width:22px;
  height:22px;
  border-radius:50%;
  border:2px solid var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-top:3px;
}

.check::after{
  content:"";
  width:9px;
  height:5px;
  border-left:3px solid var(--blue);
  border-bottom:3px solid var(--blue);
  transform:rotate(-45deg);
}

/* HELP */
.help-section{
  padding:0 0 86px;
}

.help-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.help-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-sm);
  text-align:center;
  transition:.25s ease;
}

.help-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(11,87,255,.12);
}

.help-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:44px;
  padding:0 12px;
  border-radius:999px;
  background:var(--panel-2);
  border:1px solid rgba(11,87,255,.12);
  color:var(--blue);
  font-size:14px;
  font-weight:700;
  margin-bottom:16px;
}

.help-h{
  margin:0 0 10px;
  color:var(--orange);
  font-size:24px;
  line-height:1.2;
  font-weight:800;
}

.help-p{
  margin:0 auto 20px;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
  max-width:320px;
}

.help-img{
  display:flex;
  justify-content:center;
}

.help-img img{
  width:110px;
  height:110px;
  object-fit:contain;
}

/* FOOTER */
.site-footer{
  background:var(--orange);
  color:#fff;
  padding:40px 0 8px;
  margin-top:0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:start;
  padding-bottom:16px;
}

.footer-logo{
  font-family:"Grandstander",cursive;
  font-size:40px;
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.2px;
  margin-bottom:8px;
}

.footer-text{
  margin:0 0 12px;
  color:#fff;
  line-height:1.6;
  max-width:420px;
  font-size:14px;
}

.footer-social{
  display:flex;
  gap:10px;
}

.footer-social a{
  width:34px;
  height:34px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.4);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.footer-links{
  display:grid;
  gap:6px;
  justify-items:end;
  text-align:right;
}

.footer-links a{
  color:#fff;
  font-weight:500;
  font-size:14px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.35);
  padding:10px 0;
  color:#fff;
  font-size:12px;
  text-align:left;
}

/* RESPONSIVO */
@media (max-width:1100px){
  .hero-layout{
    grid-template-columns:1fr;
    gap:36px;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-media-card{
    max-width:720px;
    min-height:460px;
    transform:translateY(0);
  }

  .hero-media-card::before{
    width:560px;
    height:560px;
    transform:translate(-54%, -46%);
  }

  .hero-media-card::after{
    width:460px;
    height:460px;
  }

  .hero-media-card img{
    max-width:600px;
  }

  .hero-media::after{
    width:460px;
  }

  .download-showcase{
    margin-top:22px;
    grid-template-columns:1fr;
    padding:30px 28px;
  }

  .download-showcase-actions{
    grid-template-columns:1fr 1fr;
  }

  .help-grid{
    grid-template-columns:1fr;
  }

  .services-cards{
    grid-template-columns:repeat(2, 1fr);
  }

  .why-columns{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-links{
    justify-items:start;
    text-align:left;
  }
}

@media (max-width:980px){
  .header-row{
    min-height:auto;
    padding:16px 0;
    flex-direction:column;
    align-items:center;
    gap:14px;
  }

  .nav-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:12px 16px;
    width:100%;
  }

  .brand-word{
    font-size:40px;
  }

  .hero{
    padding:56px 0 64px;
  }

  .hero-title{
    font-size:56px;
    line-height:1.02;
    letter-spacing:-1px;
  }

  .hero-description{
    font-size:15px;
    line-height:1.8;
  }

  .hero-media-card{
    min-height:400px;
  }

  .section-title{
    font-size:38px;
  }

  .services-section{
    padding:58px 0;
  }

  .services-cards{
    grid-template-columns:1fr;
  }

  .why-section{
    padding:10px 0 62px;
  }

  .help-section{
    padding:0 0 64px;
  }
}

@media (max-width:720px){
  .container{
    width:min(var(--container), calc(100% - 32px));
  }

  .hero{
    padding:42px 0 52px;
  }

  .hero-title{
    font-size:40px;
    line-height:1.06;
    letter-spacing:-.4px;
  }

  .hero-description{
    font-size:14.5px;
  }

  .section-title{
    font-size:32px;
  }

  .section-subtitle{
    font-size:14.5px;
    line-height:1.8;
  }

  .why-group-title{
    font-size:22px;
  }

  .help-h{
    font-size:22px;
  }

  .hero-media-card{
    min-height:360px;
    max-width:100%;
    transform:translateY(0);
  }

  .hero-media-card::before{
    width:360px;
    height:360px;
    top:48%;
  }

  .hero-media-card::after{
    width:300px;
    height:300px;
    right:0;
    top:64px;
  }

  .hero-media-card img{
    width:140%;
    max-width:560px;
    transform:translateX(6px) scale(1.2);
    margin:0 auto;
  }

  .hero-media::after{
    width:300px;
    height:56px;
    bottom:6px;
  }

  .download-showcase{
    padding:22px 18px;
    border-radius:26px;
  }

  .download-showcase-title{
    font-size:34px;
  }

  .download-showcase-text{
    font-size:14px;
  }

  .download-showcase-actions{
    grid-template-columns:1fr;
  }

  .store-badge{
    min-height:96px;
    border-radius:22px;
  }

  .store-icon{
    width:58px;
    height:58px;
    border-radius:18px;
  }

  .store-icon i{
    font-size:26px;
  }

  .store-copy strong{
    font-size:18px;
  }

  .service-card,
  .why-column,
  .help-card{
    border-radius:24px;
  }
}