:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5b6b82;

  --blue:#4FB6FF;
  --blue2:#F1FAFF;

  --line:#E9EFF7;

  --shadow: 0 18px 55px rgba(11,18,32,.12);
  --shadow2: 0 10px 26px rgba(11,18,32,.08);

  --radius: 14px;
  --radius2: 20px;

  --container: 1140px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.muted{ color: var(--muted); }
.small{ font-size:.92rem; }

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 4px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand__logo{
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  padding: 7px;
}
.brand__text{ line-height: 1.05; }
.brand__text span{ display:block; color: var(--muted); font-weight: 650; }

.nav{ position:relative; }
.nav__btn{
  display:none;
  border: 1px solid var(--line);
  background:#fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 850;
  cursor:pointer;
}
.nav__menu{
  display:flex;
  gap: 8px;
  align-items:center;
  flex-wrap:wrap;
}
.nav__menu a{
  padding: 10px 12px;
  border-radius: 12px;
  color: #13233a;
  font-weight: 750;
}
.nav__menu a:hover{
  background: var(--blue2);
  border: 1px solid rgba(79,182,255,.25);
}

/* HERO */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__bg{
  position:absolute;
  inset:-90px -90px auto -90px;
  height: 430px;
  background:
    radial-gradient(980px 360px at 20% 20%, var(--blue2), transparent 90%),
    radial-gradient(760px 330px at 86% 8%, rgba(79,182,255,.22), transparent 90%),
    linear-gradient(180deg, #fff, rgba(241,250,255,.22));
  pointer-events:none;
}

.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr; /* texto | horários */
  gap: 24px;
  padding: 38px 0 30px;
  align-items: center;
}

h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero__lead{
  margin:0;
  color: var(--muted);
  font-size: 1.10rem;
  line-height: 1.65;
  max-width: 58ch;
}

/* HORÁRIOS */
.hero__schedule{
  display: flex;
  justify-content: flex-end;
}

.schedule__card{
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow2);
}

.schedule__card h3{
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.list{ margin:0; padding-left: 18px; }
.list li{ margin: 6px 0; }

.schedule__card .list li{
  color: var(--muted);
  line-height: 1.6;
}

/* Botões */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-weight: 900;
  cursor:pointer;
  background:#fff;
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--blue);
  border-color: rgba(79,182,255,.55);
  color: #06243a;
  box-shadow: 0 16px 30px rgba(79,182,255,.22);
}
.btn--soft{
  background: var(--blue2);
  border-color: rgba(79,182,255,.22);
}
.btn--ghost:hover, .btn--soft:hover{ filter: brightness(.985); }
.btn--primary:hover{ filter: brightness(.98); }

/* Sections */
.section--soft{}
.section{ padding: 50px 0; }
	
.section--final{
  background: linear-gradient(180deg, #fff, rgba(241,250,255,.75));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head{ margin-bottom: 18px; }
.section__head h2{
  margin:0 0 6px;
  font-size: 2.0rem;
  letter-spacing: -0.02em;
}
.section__head p{ margin:0; color: var(--muted); line-height: 1.65; }

/* Timeline */
.timeline{ display:grid; gap: 14px; }
.timeline__item{
  position:relative;
  display:grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items:start;
}
.timeline__dot{
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--blue);
  margin-top: 18px;
  box-shadow: 0 0 0 7px rgba(79,182,255,.18);
}
.timeline__card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px;
  background:#fff;
  box-shadow: var(--shadow2);
}
.timeline__year{
  display:inline-block;
  font-weight: 1000;
  color: #06243a;
  border: 1px solid rgba(79,182,255,.55);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.timeline__card h3{ margin: 0 0 8px; }
.timeline__card p{ margin: 0; color: var(--muted); line-height: 1.7; }

/* Grid cards */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px;
  background:#fff;
  box-shadow: var(--shadow2);
}
.card__cap{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  color: #06243a;
  border: 1px solid rgba(79,182,255,.55);
  font-weight: 1000;
  margin-bottom: 8px;
}
.card h3{ margin: 0 0 8px; }
.card p, .card li{ color: var(--muted); line-height: 1.7; margin:0; }

/* Note */
.note{
  margin-top: 14px;
  border: 1px dashed rgba(79,182,255,.55);
  border-radius: var(--radius2);
  padding: 14px;
  background: rgba(241,250,255,.85);
}

/* Message */
.message{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.message__header{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:flex-start;
  padding: 16px;
  background: linear-gradient(180deg, rgba(241,250,255,.95), #fff);
  border-bottom: 1px solid var(--line);
}
.message__tag{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 30px;
  border: 1px solid rgba(79,182,255,.55);
  color: #06243a;
  font-weight: 1000;
  margin-bottom: 8px;
}
.message__header h3{ margin: 0 0 6px; }
.message__header p{ margin: 0; }
.message__body{ padding: 16px; }
.message__body p{ margin: 0 0 12px; color: var(--muted); line-height: 1.75; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.contact__card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px;
  background:#fff;
  box-shadow: var(--shadow2);
}
.contact__row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact__row:last-child{ border-bottom: 0; }
.contact__actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 12px; }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
}
.footer__left{ display:flex; align-items:center; gap: 12px; }
.footer__logo{
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 12px;
  padding: 7px;
}
.footer__top{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}


/* CARROSSEL 3 FOTOS */
.carousel{
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.carousel__viewport{ overflow:hidden; }
.carousel__track{
  display:flex;
  transition: transform .45s ease;
  will-change: transform;
}
.carousel__slide{
  flex: 0 0 calc(100% / 3);
  padding: 8px;
}
.carousel__slide img{
  width:100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  background: #fff;
}
.carousel__btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:26px;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 12px 26px rgba(11,18,32,.18);
  display:grid;
  place-items:center;
}
.carousel__btn--prev{ left:10px; }
.carousel__btn--next{ right:10px; }
.carousel__btn:hover{ background: var(--blue2); }

/* DOWNLOAD APP */
.btnAPK{
 /* background: #03DBFF;*/ 
  border-color: rgba(79,182,255,.55);
  color: #06243a;
box-shadow: 0 6px 8px rgba(79, 182, 255, 0.12);

}

.download{
  display:flex;
  justify-content:center;
}

.download__card{
  width:100%;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: #fff;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 0;
  position:relative;
}

.download__card::before{
  content:"";
  position:absolute;
  inset:-80px -80px auto -80px;
  height: 260px;
  background:
    radial-gradient(820px 260px at 10% 30%, var(--blue2), transparent 70%),
    radial-gradient(620px 240px at 90% 10%, rgba(79,182,255,.22), transparent 70%);
  pointer-events:none;
}

.download__left{
  position:relative;
  padding: 22px;
}

.download__right{
  position:relative;
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(241,250,255,.85), #fff);
}

.download__badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue2);
  border: 1px solid rgba(79,182,255,.25);
  font-weight: 1000;
  color:#0a3a5a;
  margin-bottom: 12px;
}

.download__brand{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}

.download__logo{
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  padding: 8px;
  border: 1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow2);
}

.download__title{
  margin:0;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.download__subtitle{
  margin: 2px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.download__text{
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.download__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
}

.download__hint{
  margin-top: 12px;
  font-size: .95rem;
}

/* mock (lado direito) */
.download__mock{
  width: min(320px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(79,182,255,.25);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow2);
  padding: 18px;
  display:flex;
  gap: 14px;
  align-items:center;
}

.download__mockLogo{
  width: 66px;
  height: 66px;
  border-radius: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  background:#fff;
}

.download__mockText{
  flex:1;
  display:grid;
  gap: 10px;
}

.download__mockLine{
  height: 10px;
  border-radius: 999px;
  background: rgba(79,182,255,.18);
  border: 1px solid rgba(79,182,255,.12);
}
.download__mockLine.short{ width: 70%; }

@media (max-width: 980px){
  .download__card{ grid-template-columns: 1fr; }
  .download__right{ border-left:0; border-top: 1px solid var(--line); }
}


/* Responsivo */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__schedule{
    justify-content: flex-start;
    margin-top: 18px;
  }
  .schedule__card{ max-width: 100%; }

  .hero__info{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}

/* CARROSSEL – MOBILE: 1 FOTO CENTRALIZADA */
@media (max-width: 900px){
  .carousel__track{
    justify-content: flex-start; /* JS controla o movimento */
  }

  .carousel__slide{
    flex: 0 0 100%;
    padding: 0;                 /* remove empurrão lateral */
    display: flex;
    justify-content: center;    /* centraliza o conteúdo */
  }

  .carousel__slide img{
    width: 100%;
    max-width: 92%;             /* margem visual igual dos lados */
    height: 220px;
    object-fit: cover;
    margin: 0 auto;             /* garante centro */
  }
}



@media (max-width: 720px){
  .nav__btn{ display:inline-flex; }
  .nav__menu{
    display:none;
    position:absolute;
    right: 0;
    top: 54px;
    background:#fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction:column;
    min-width: 220px;
  }
  .nav__menu.is-open{ display:flex; }
}

.header,
.hero,
.section--soft{
  border: 0 !important;
}
.section--final{
  border: 0 !important;
}
section{
  scroll-margin-top: 90px;
}
