@import url('assets/css/menu.css');

/* --- CONTAINER DO TÍTULO DA PÁGINA --- */
#page-title-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-title {
    font-size: 3vw;
    font-weight: bold;
    color: #00da88;
}

.page-title-white {
    color: white;
}

.page-subtitle {
    font-size: 1.5vw;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.page-text {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

/* --- SEÇÃO SOBRE NÓS --- */
#about-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 50%;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* --- TEXTO E LISTAS DENTRO DA SEÇÃO SOBRE --- */
#about-content p {
    font-family: 'Akrobat Light', sans-serif;
    font-size: 1.2vw;
    color: white;
    margin: 10px 0;
}

#about-content ul {
    list-style: none;
    padding: 0;
}

#about-content ul li {
    font-size: 1.1vw;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
}

/* ===== MOBILE RESPONSIVO ===== */
@media (max-width: 767px) {
  #page-title-container {
    top: 15%;
    font-size: 5vw;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  #about-content {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    top: 25%;
    padding: 15px;
  }
  
  .page-title {
    font-size: 6vw;
  }
  
  .page-subtitle {
    font-size: 4vw;
  }
  
  #about-content p {
    font-size: 4vw;
  }
  
  #about-content ul li {
    font-size: 3.5vw;
  }
}