

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #121212 !important;
  color: #fff !important;
  font-family: sans-serif;
  scroll-behavior: smooth;
  
}

.hero {
  position: relative;
  height: 100vh;
  background: url('/images/background.gif') no-repeat center center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #111 100%);
  z-index: 2;
}

.about-section {
  background-color: #121212;
  color: white;
  padding: 70px 30px;
  position: relative;
  z-index: 3;

}

.textleft{
  text-align: justify;
}



.nome{
  text-align: center;
  padding: 0;
}

.page-wrapper {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1; 
  padding: 40px;
}



body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
}

.header-bar {
  background-color: #2c2c2c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.left-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-box {
  background-color: #3a3a3a;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
}

.search-box i {
  color: #999;
  margin-right: 6px;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #ccc;
}

.shortcut {
  margin-left: 8px;
  color: #999;
  font-size: 0.8em;
  background: #1e1e1e;
  padding: 2px 6px;
  border-radius: 4px;
}




.footer-container {
  margin-top: 40px;
  background-color: #121212;
  padding: 30px 20px 10px;
  text-align: center;
  color: #bbb;
  border-top: 1px solid #222;
}


.social-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 20px 0;
  background-color: #121212;
}

.social-links li {
  display: flex;
  align-items: center;
}

.social-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: color 0.3s;
}

.social-link:hover {
  color: #00aced;
}


.social-icons {
  display: inline-flex;
  gap: 20px;
  border: 1px solid #333;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: #121212;
  margin-bottom: 20px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid #222;
  margin-top: 10px;
}

.footer-bottom .links {
  display: flex;
  gap: 15px;
}

.footer-bottom .links a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-bottom .links a:hover {
  color: #fff;
}

.timeline {
  position: relative;
  padding-left: 60px; 
  border-left: 3px solid #0fc66c;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-icon {
  position: absolute;
  left: -30px; 
  top: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #0fc66c;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 50%;
}

.timeline-content {
  padding-left: 10px; 
}


.timeline-content h5 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: #ccc;
}

.timeline-content strong {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: white;
}

.timeline-content ul {
  padding-left: 20px;
  margin: 0;
  color: #ccc;
}

.timeline-content ul li {
  margin-bottom: 6px;
}
