/* === Botão do WhatsApp === */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button i {
  color: #FFFFFF;
  font-size: 30px;
}

.whatsapp-button:hover {
  background-color: #1EBE54;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
  .whatsapp-button i {
    font-size: 25px;
  }
}

section[id] {
  scroll-margin-top: 80px;
}

/* === Ajuste do Layout Esticado (Container) === */

.container {
  max-width: 1400px;
}

@media (max-width: 1500px) {
  .container {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 95%;
  }
}

/* === Menu no Modo Celular (Navbar Toggler) === */

@media (max-width: 767.98px) {
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}

@media (max-width: 767.98px) {
  .navbar-toggler {
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 767.98px) {
  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
  }
}

/* === Botões (Primário e Secundário) === */

.btn-primary {
  background-color: #F6A25D;
  color: #FFFFFF !important;
  border-radius: 25px;
  padding: 8px 16px;
  font-weight: 600;
  font-family: 'Made Tommy Soft', sans-serif;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #E88C3F !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  color: #FFFFFF !important;
  background-color: #F6A25D !important;
  border: none !important;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  background-color: #E88C3F !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* === Sublinhado Laranja === */

.banner-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 300px;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.banner-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 992px) {
  .banner-container img.custom-position-1 {
    object-position: 50% 70%;
  }
}

@media (min-width: 992px) {
  .banner-container img.custom-position-2 {
    object-position: 50% 45%;
  }
}

@media (min-width: 992px) {
  .banner-container img.custom-position-3 {
    object-position: 50% 60%;
    object-fit: cover;
  }
}

/* === Sublinhado Laranja (Ajustado para Acompanhar o Texto Dinamicamente) === */

.underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.underline:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #F6A25D;
  z-index: -1;
}

/* Ajuste responsivo para telas menores */

@media (max-width: 576px) {
  .underline {
    white-space: normal;
  }
}

@media (max-width: 576px) {
  .underline:after {
    height: 6px;
    bottom: -1px;
    width: calc(100% - 10px);
  }
}

/* === Carrossel de Logos === */

.footer-info strong {
  color: #F6A25D;
}

.carousel-container {
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .carousel-container {
    max-width: 80%;
  }
}

.logos-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.logos {
  display: inline-block;
  animation: slide 40s linear infinite;
}

.logos img {
  display: inline-block;
  vertical-align: middle;
  width: 174px;
  margin: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Efeito de hover nas imagens do carrossel */

.logos img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Pausar animação ao passar o mouse */

.logos:hover {
  animation-play-state: paused;
}

/* Keyframes para o movimento horizontal */

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Estilo para as setas do carrossel */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.3s ease;
  border-radius: 50%;
}

.arrow:hover {
  background: rgba(246, 162, 93, 0.8);
}

.left-arrow {
  left: -40px;
}

.right-arrow {
  right: -40px;
}

@media (max-width: 768px) {
  .left-arrow {
    left: 10px;
  }
}

@media (max-width: 768px) {
  .right-arrow {
    right: 10px;
  }
}

/* === Cards === */

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* === FAQ (Accordion) === */

.accordion-button {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1D3557;
  padding: 1rem 1.5rem;
}

.accordion-button.d-flex {
  align-items: center;
}

.faq-icon {
  font-size: 1.25rem;
  color: #F6A25D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.faq-title {
  display: inline-block;
  line-height: 1.4;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .accordion-button {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 768px) {
  .faq-icon {
    font-size: 1.1rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

@media (max-width: 768px) {
  .faq-title {
    min-height: 2.4rem;
  }
}

@media (max-width: 576px) {
  .accordion-button {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 576px) {
  .faq-icon {
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 576px) {
  .faq-title {
    min-height: 2.2rem;
  }
}

/* Estilo geral do container do vídeo */

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  margin: 0;
  background-color: transparent;
}

/* Desktop: proporção 9:16 com largura máxima */

@media (min-width: 992px) {
  .video-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .video-wrapper::before {
    content: "";
    display: block;
    padding-top: 177.78%;
    /*9: 16;*/
  }
}

/* Tablet e mobile: proporção 9:16 */

@media (max-width: 991.98px) {
  .video-wrapper::before {
    content: "";
    display: block;
    padding-top: 177.78%;
    /*9: 16;*/
  }
}

/* Estilo do iframe */

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  border-radius: 1rem;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Quem Somos Section Ajustado */

#quem-somos {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

#quem-somos h2 {
  color: #1d3557;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

#quem-somos .lead {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
}

.card {
  border: none;
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#quem-somos .card-body {
  padding: 1.5rem;
}

#quem-somos .list-unstyled {
  margin: 0;
  padding-left: 1rem;
}

#quem-somos ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  #quem-somos h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  #quem-somos .lead {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #quem-somos .card-body {
    padding: 1rem;
  }
}

