body {
  font-family: 'Poppins', sans-serif;
}

header {
  padding-top: env(safe-area-inset-top);
  background-color: #1a1a1a; 
}

body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Rodapé customizado */
.custom-footer {
  background-color: #1c1c1c;
  color: white;
  padding: 40px 60px 20px;
  font-size: 0.95rem;
}

.footer-logo {
  height: 90px;
  filter: drop-shadow(2px 2px 6px rgba(255, 255, 255, 0.1));
  transition: transform 0.3s ease;
  margin-bottom: 15px;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-icons a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #ccc;
}

.footer-copy {
  font-size: 0.85rem;
  margin-top: 10px;
}

.footer-map iframe {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  max-width: 100%;
}

.footer-map {
  margin-bottom: 0;
}

/* Garantir distribuição correta entre colunas maiores */
@media (min-width: 1200px) {
  .custom-footer .container .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .custom-footer .col-md-4 {
    max-width: 32%;
    flex: 0 0 32%;
  }
}

/* Responsivo médio */
@media (max-width: 991px) {
  .custom-footer {
    padding: 30px 30px;
  }

  .custom-footer .col-md-4 {
    margin-bottom: 30px;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-icons {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-map {
    margin-top: 20px;
  }

  .footer-map iframe {
    width: 100%;
    height: 200px;
  }
}

/* Responsivo pequeno */
@media (max-width: 576px) {
  .custom-footer .col-md-4 {
    width: 100%;
  }

  .footer-map iframe {
    width: 100%;
  }
}

.row.align-items-end {
  align-items: end;
}

.navbar-brand span {
  font-weight: bold;
  line-height: 1;
}

.navbar-nav .nav-link {
  margin: 0 10px;
}

@media (max-width: 991px) {
  .navbar .btn {
    width: 100%;
    margin-top: 10px;
  }
}


/* === Formulário de Contato === */
.contato-container {
  max-width: 500px;
  margin: 60px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contato-container h1 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.contato-container label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

.contato-container input,
.contato-container textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  resize: vertical;
}

.contato-container button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #4CAF50;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contato-container button:hover {
  background-color: #45a049;
}

.carousel-item img {
  height: 610px;
  object-fit: cover;
}

.navbar-nav .nav-item.text-white {
  font-weight: 300;
  padding: 0 6px;
  opacity: 0.6;
}

.grayscale-hover {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  max-height: 80px;
  object-fit: contain;
}
.grayscale-hover:hover {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .btn.btn-danger {
    font-size: 14px;
    padding: 10px 20px;
    display: block;
    width: 80%;
    margin: 12px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .btn.btn-danger:hover {
    background-color: #c62828; 
  }
}

.carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 300px; 
    object-fit: cover;
  }
}

