/* ============================================
   Seção Quem Somos - Home
   ============================================ */

.about-us-section {
  margin: 50px 0;
  padding: 0 15px;
  background: transparent;
}

@media only screen and (max-width: 769px) {
  .about-us-section {
    margin: 20px 0;
    padding: 20px 15px;
  }
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

@media only screen and (max-width: 769px) {
  .about-us-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* ============================================
   Vídeo
   ============================================ */

.about-us-video {
  width: 49%;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .about-us-video {
    width: 100%;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  background: #f6f6f6;
  border: 2px dashed #e1e1e3;
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  color: #858f97;
  font-family: "Montserrat", sans-serif;
}

/* ============================================
   Conteúdo
   ============================================ */

.about-us-content {
  width: 49%;
}

@media only screen and (max-width: 769px) {
  .about-us-content {
    width: 100%;
  }
}

.about-us-title-bar {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.about-us-title-bar::before {
  content: '';
  background: #e1e1e3;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
}

.about-us-title-bar h2 {
  background: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: #404250;
  margin: 0;
  padding: 0 15px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

@media only screen and (max-width: 769px) {
  .about-us-title-bar h2 {
    font-size: 24px;
  }
}

.about-us-text {
  font-family: "Montserrat", sans-serif;
  color: #858f97;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.about-us-main-content h1,
.about-us-main-content h3 {
  color: #f07b12;
  margin: 20px 0 10px;
}

.about-us-main-content h1 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.about-us-main-content h3 {
  font-size: 1.2em;
}

.about-us-main-content p {
  margin: 0 0 15px;
  line-height: 1.6;
}

.about-us-main-content ul {
  padding-left: 20px;
  margin: 10px 0;
  list-style: disc;
}

.about-us-main-content ul li {
  margin-bottom: 5px;
}

/* ============================================
   Conteúdo Expandido (Ver Mais)
   ============================================ */

.about-us-extended-content {
  display: none;
  margin-top: 15px;
}

.about-us-extended-content.show {
  display: block;
}

.about-us-extended-content h3 {
  color: #f07b12;
  font-size: 1.2em;
  margin: 20px 0 10px;
}

.about-us-extended-content p {
  margin: 0 0 15px;
  line-height: 1.6;
}

.about-us-extended-content ul {
  padding-left: 20px;
  margin: 10px 0;
  list-style: disc;
}

.about-us-extended-content ul li {
  margin-bottom: 5px;
}

/* ============================================
   Botão Ver Mais
   ============================================ */

.about-us-show-more-btn {
  background-color: #f07b12;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  margin: 15px 0 0;
  font-size: 0.9em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.about-us-show-more-btn:hover {
  background-color: #d66a0f;
}

.about-us-show-more-btn:focus {
  outline: 2px solid #f07b12;
  outline-offset: 2px;
}
