.inner {
  padding-bottom: 100px;
}

.inner .container {
  padding-top: 5px;
}

.inner .inner-logo {
  text-align: center;
  margin-bottom: 50px;
}

.inner .inner-logo img {
  width: 500px;
}

.inner .inner-content {
  width: 100%;
  background-color: rgba(15, 15, 15, 0.884);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-top: 4px solid gray;
  padding: 50px 100px 50px 100px;
}

.inner .inner-content .title {
  color: white;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.034);
}

.inner .inner-content .title h1 {
  color: white;
  margin: 0;
}

.inner .inner-content img {
  max-width: 100%;
}

.inner .inner-content h1 {
  color: #bba66b;
  margin-bottom: 30px;
}

.inner .inner-content p {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
  line-height: 25px;
}

@media (max-width: 768px) {
  .inner .inner-logo img {
    width: 200px;
  }
  .inner .inner-content {
    padding: 40px;
  }
  .inner .inner-content .title h1 {
    font-size: 32px;
  }
  .inner .inner-content h1 {
    font-size: 25px;
  }
  .inner .inner-content p {
    font-size: 14px;
  }
}
/*# TEST */
/* =====================================================
   MUWISE ROADMAP — MINIMAL VERSION
===================================================== */

.roadmap-section{
    max-width:1000px;
    margin:80px auto;
    padding:0 20px;
}

/* título */
.roadmap-hero{
    text-align:center;
    margin-bottom:60px;
}

.roadmap-hero h2{
    font-size:38px;
    font-weight:800;
    color:#c9b38a;
    letter-spacing:1px;
}

.roadmap-hero p{
    margin-top:10px;
    color:#9aa3c7;
}

/* linha timeline */
.roadmap-timeline{
    position:relative;
    padding-left:30px;
}

.roadmap-timeline::before{
    content:"";
    position:absolute;
    left:6px;
    top:0;
    width:2px;
    height:100%;
    background:rgba(255,255,255,0.08);
}

/* fases */
.roadmap-phase{
    margin-bottom:55px;
    position:relative;
}

.roadmap-phase::before{
    content:"";
    position:absolute;
    left:-2px;
    top:10px;
    width:14px;
    height:14px;
    background:#c9b38a;
    border-radius:50%;
}

/* card minimalista */
.roadmap-card{
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    padding:28px;
    transition:0.25s;
}

.roadmap-card:hover{
    border-color:#c9b38a;
    transform:translateY(-4px);
}

/* textos */
.roadmap-card h3{
    color:#e7d2a9;
    margin-bottom:8px;
    font-size:20px;
}

.roadmap-status{
    font-size:12px;
    color:#6fa8ff;
    margin-bottom:14px;
    font-weight:600;
}

.roadmap-card ul{
    margin-left:18px;
    line-height:28px;
    color:#b7bfdc;
}

/* animação */
.roadmap-reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all 0.9s ease;
}
.roadmap-reveal.active{
    opacity:1;
    transform:translateY(0);
}
/*# sourceMappingURL=page.css.map */