.video {
    right: 0;
    bottom: 0;
    width: 100%;
    /* Coloca o vídeo atrás do conteúdo */
}

/* Centraliza o conteúdo */
.content {
    position: absolute;
    margin-top: -45%;
    color: #f1f1f1;
    text-align: center;
    width: 100%;
}

.btn-hero-1,
.btn-hero-2 {
    width: 25%;
    height: 50px;
    border-radius: 40px;
    border: 1px solid #ffcd00;
    margin: 1rem;
    background-color: #ffcd00;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-decoration: none;
    align-content: center;
    color: black;
}

.btn-hero-2 {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-hero-1:hover,
.btn-hero-2:hover {
    background: transparent;
    color: #ffcd00;
    border-color: #ffcd00;
    transform: scale(1.2);
}

.test {
    display: flex;
    width: 100%;
    align-content: center;
    justify-content: center;
}

.mt-3 span {
    text-transform: uppercase;
    font-weight: 600;
    color: #ffcd00;
}

.text {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.contact-info p{
    color:white !important;
}

.contact-info span:hover{
    transform: scale(1.8);

}

@media only screen and (max-width: 768px) {
    .mt-3 {
        font-size: 24px;
    }

    .test {
        display: grid;
        justify-content: center;
    }

    .btn-hero-1,
    .btn-hero-2 {
        width: 50vw;
        font-size: 12px;
        margin: 2px;
        height: 2rem;
    }

    .about-text {
        display: block !important;
        word-wrap: break-word;
    }
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 800px;
  z-index: 0; /* cria contexto */
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  z-index: -1; /* força a linha atrás */
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.right{
    text-align: right;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--yellow);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  top: 20px;
  z-index: 1; /* círculo na frente */
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

.timeline-date {
  font-weight: bold;
  color: var(--yellow);
  margin-bottom: 10px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  color: var(--yellow);
  font-weight: bold;
}


@media only screen and (min-width: 768px) {

    .about-text {
        display: flex;
    }

}