.sobre-simples {
    background-color: #121212;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
  }
  
  .container-sobre {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  
  .img-sobre {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  
  .texto-sobre {
    flex: 1;
    min-width: 280px;
  }
  
  .texto-sobre h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #f2ab41;
  }
  
  .texto-sobre p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .botao-sobre {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease;
    text-align: center;
  }
  
  
  .botao-sobre:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .container-sobre {
      flex-wrap: nowrap;
      flex-direction: row;
      align-items: flex-start;
      gap: 20px;
    }
  
    .img-sobre,
    .texto-sobre {
      width: 50%;
    }

    
    .texto-sobre {
        padding: 0 40px; 
      }
    .texto-sobre h2 {
      font-size: 20px;
    }
  
    .texto-sobre p {
      font-size: 15px;
      line-height: 16px;
    }
  
    .botao-sobre {
      padding: 10px 20px;
      font-size: 14px;
    }
  }
  
  .about-section {
    background-color: #121212;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0; /* Remove preenchimento */
    margin: 0; /* Remove margem */
  }
  

.about-container {
    max-width: 1140px;
    width: 100%;
    padding: 0;
    margin: 0;
  }

.about-header {
    min-height: 294px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.about-title {
    font-size: 12px;
    color: #F2AB41;
    letter-spacing: 2px;
    line-height: 24px;
}

.about-heading {
    margin-top: 15px;
    font-size: 55px;
    line-height: 60px;
}

.text-white {
    color: #F6F6F6;
}

.text-accent {
    color: #F2AB41;
}








@media (max-width: 991px) {
 
    .about-container {
        padding: 20px;
    }
    .about-heading {
        font-size: 33px;
        line-height: 45px;
    }
    .main-content {
        padding-bottom: 100px;
    }
    .profile-image {
        max-width: 100%;
    }
}










.hero-section {
    background-color: #000;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }
  
  .hero-content {
    max-width: 1140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .brand-name {
    font-size: 14px;
    color: #f2ab41;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .main-quote {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  .highlight-text {
    color: #28bffe;
  }
  
  .quote-author {
    font-size: 20px;
    font-style: italic;
    color: #ccc;
    margin-top: 10px;
  }
  
  .description-section {
    margin: 50px 0 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .description-content {
    font-size: 18px;
    max-width: 820px;
    line-height: 1.6;
    color: #ddd;
    padding: 0 15px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 50px;
  }
  
  .feature-card {
    background-color: #111;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(40, 191, 254, 0.2);
  }
  
  .feature-title {
    color: #f2ab41;
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .feature-description {
    color: #bbb;
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .main-quote {
      font-size: 20px;
    }
  
    .quote-author {
      font-size: 16px;
    }
  
    .description-content {
      font-size: 16px;
    }
  
    .feature-title {
      font-size: 20px;
    }
  
    .feature-description {
      font-size: 15px;
    }
  }
  



.carousel-container {
    margin-top: -180px;
}




.icon-feature {
    font-size: 36px;
    color: #28bffe;
    margin-bottom: 15px;
  }
  








/* timeline */
@import url("https://fonts.googleapis.com/css?family=Cardo|Pathway+Gothic+One");
.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 700px;
  position: relative;
}
.timeline__content-title {
  font-weight: normal;
  font-size: 66px;
  margin: -10px 0 0 0;
  transition: 0.4s;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: "Pathway Gothic One", sans-serif;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}
.timeline__content-desc {
  margin: 0;
  font-size: 20px;
  box-sizing: border-box;
  color: white;
  font-weight: normal;
  line-height: 25px;
}
.timeline:before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}
@media only screen and (max-width: 767px) {
  .timeline:before {
    left: 40px;
  }
}
.timeline-item {
  padding: 40px 0;
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(-80px);
}
.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: "Pathway Gothic One", sans-serif;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  top: 70%;
  margin-top: -5px;
  padding-left: 15px;
  opacity: 0;
  right: calc(-100% - 56px);
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
}
.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 15px;
}
.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}
.timeline-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}
.timeline-item--active .timeline__content-title {
  
  margin: -50px 0 20px 0;
}
@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }
  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }
  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}
.timeline__img {
  max-width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}
.timeline-container {
  width: 100%;
  position: relative;
  padding: 80px 0;
  transition: 0.3s ease 0s;
  background-attachment: fixed;
  background-size: cover;
}
.timeline-container:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(99, 99, 99, 0.8);
  content: "";
}
.timeline-header {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.timeline-header__title {
  color: #ffffff; /* Branco puro */
  font-size: 46px;
  font-family: Cardo;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* sombra preta forte */
}
.timeline-header__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Pathway Gothic One", sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  margin: 10px 0 0 0;
  font-weight: normal;
}

.demo-footer {
  padding: 60px 0;
  text-align: center;
}
.demo-footer a {
  color: #999;
  display: inline-block;
  font-family: Cardo;
}
/* timeline */

.timeline__content {
  background: rgba(0, 0, 0, 0.6); /* Fundo escuro transparente */
  padding: 20px;
  border-radius: 10px;
}



