/* Header */
.navbar {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  background: #ffff;
}

.agendar {
  background-color: #48A6CE;
  color: #ffff;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s backgroud-color;
}

.agendar:hover {
  background-color: #51b9e6;
}

.navbar-toggler {
  border: none;
  outline: 1.2rem;
}

.navbar-toggler:focus, .btn-close:focus {
  box-shadow: none;
  outline: none;
}

.nav-link {
  color: #4FB6D9;
  font-weight: 400;
  position: relative;
  font-size: 1rem;
}

.nav-link:hover, .navbar-nav .nav-link.active, .navbar-brand:hover {
  color: #0094C6;
}

@media (min-width: 991px) {
    .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 2px;
    background-color: rgb(79, 182, 217, 0.6);
    transition: 0.3s ease-in-out;
  }
  
  .nav-link:hover::before, .nav-link.active::before {
    background-color: #0094C6;
  }
}

/* Main */
/* Video */
.video-section {
  display: flex;
  height: 92vh; 
  width: 100%; 
  background-image: url("/imagens/tela-sobre.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 8vh;
  align-items: center;
}

.video-section h1 {
  color: white; 
  font-size: 4.3rem;
}

.video-container iframe {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sobre */
.about {
  margin: 2rem;
}

.sobre p, li {
  font-size: 1rem;
}

/* Footer */
.footer{
  background-color: #1B3886;
}

.footer .doutor {
  font-size: 2rem; 
  font-weight: 400; 
  color: #4FB6D9;
}

.footer a img:hover {
  opacity: 100%;
}