.screen {
    position: relative;
    min-height: 50vh;
    padding: 5rem;
}

.screen.fluid {
    min-height: unset;
}

.contact-section {
    background: #292e49;
    color: white;
}

.form-control,
.btn {
    border-radius: 0;
}

.iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*estilos de espaçamentos*/
.padding-top {
    padding-top: 1rem;
}

.white {
    color: #fff;
}

.radius-1 {
    border-radius: 0.25rem;
}

:root {
    --cor-padrao: #a40202; /* Substitua #a40202 pela cor desejada */
  }

  body {
    font-family: 'Montserrat', sans-serif;
  }
  
  h1,
  h2 {
    font-weight: 700;
  }
  
  p {
    font-weight: 400;
  }
  
  em {
    font-style: italic;
  }
  
  /* Ajuste o tamanho das imagens */
  .img-carousel {
    max-width: 100%; /* Ajusta a largura máxima para ser responsiva */
    height: auto; /* Mantém a proporção da imagem */
  }

  .navbar {
    background-color: #a40202;
  }
  
  .navbar-brand,
  .nav-link {
    color: #ffffff !important;
    font-weight: bold;
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
  }
  
  .navbar-brand img {
    width: 60px;
    height: auto;
    max-width: 100%;
    margin-right: 10px;
  }
  
  .navbar-brand span {
    display: inline-block;
    vertical-align: middle;
  }
  
  .nav-link {
    margin-left: 1rem;
    transition: color 0.3s ease-in-out;
  }
  
  .nav-link:hover {
    color: #ffcc00 !important;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-width='2' linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  .screen {
    position: relative;
    min-height: 50vh;
    padding: 5rem;
  }
  
  .screen.fluid {
    min-height: unset;
  }
  
  .contact-section {
    background: #292e49;
    color: white;
  }
  
  .form-control,
  .btn {
    border-radius: 0;
  }
  
  .iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
  }
  
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .padding-top {
    padding-top: 1rem;
  }
  
  .white {
    color: #fff;
  }
  
  .radius-1 {
    border-radius: 0.25rem;
  }
  
  .carousel-item img {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    animation: fadeIn 1s;
  }
  
  @media (max-width: 768px) {
    .carousel-item img {
      max-height: 300px;
    }
  }
  
  .font-weight-bold {
    font-weight: 700;
  }

  .underline-red {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .underline-red::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #a40202;
    position: absolute;
    bottom: -8px;
    left: 0;
    transition: width 0.3s ease-in-out;
  }
  
  .underline-red:hover::after {
    width: 100px;
  }
  
  .quem-somos-texto {
    display: flex;
    align-items: center;
  }
  
  .quem-somos-texto img {
    max-width: 100%;
    height: auto;
    margin-left: 2rem;
  }
  
  @media (max-width: 768px) {
    .quem-somos-texto {
      flex-direction: column;
      text-align: center;
    }
  
    .quem-somos-texto img {
      margin-left: 0;
      margin-top: 1rem;
    }
  }
  
  .card {
    border: none;
    background-color: #a40202;
    color: #ffffff;
    transition: transform 0.3s ease-in-out;
    animation: slideInUp 0.5s;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card-title {
    color: #ffffff;
  }
  
  .card-body {
    text-align: center;
  }
  
  .card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounceIn 1s;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideInUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  @keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      animation-timing-function: ease-out;
    }
    0% {
      opacity: 0;
      transform: scale3d(.3, .3, .3);
    }
    20% {
      transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
      transform: scale3d(.9, .9, .9);
    }
    60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
      transform: scale3d(.97, .97, .97);
    }
    to {
      opacity: 1;
      transform: scale3d(1, 1, 1);
    }
  }
