/* === MENU FIXO AO TOPO === */
.navbar.fixed-top {
  z-index: 1050; /* acima de conteúdo comum */
  height: 70px;   /* ajuste conforme seu layout */
}

.navbar {
  background: linear-gradient(to right, rgba(0, 198, 255, 0.85), rgba(0, 114, 255, 0.85));
  backdrop-filter: blur(6px);
}
/* Marca/logo */
.navbar .navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

.navbar .navbar-brand:hover {
  transform: scale(1.05);
}

/* Links do menu */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

/* Ícones com animação e brilho gelo */
.navbar-nav .nav-link i {
  margin-right: 8px;
  transition: transform 0.3s ease, filter 0.3s ease, text-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #B3E5FC !important; /* Azul gelo */
  text-shadow: 0 0 6px rgba(179, 229, 252, 0.6);
}

.navbar-nav .nav-link:hover i {
  transform: rotate(10deg) scale(1.1);
  text-shadow: 0 0 10px rgba(179, 229, 252, 0.9);
  filter: drop-shadow(0 0 4px rgba(173, 216, 230, 0.5));
}

/* Efeito de escala sutil nos itens */
.navbar-nav .nav-item:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

/* Botão Hamburguer */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === BOTÃO MOBILE (hamburguer) === */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ANIMAÇÃO SUAVE AO ABRIR O MENU MOBILE */
@media (max-width: 991.98px) {
  .collapse:not(.show) {
    display: block;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .collapse.show {
    height: auto;
    animation: fadeInMenu 0.4s ease-in-out;
  }

  @keyframes fadeInMenu {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-nav .nav-item {
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar .navbar-brand {
    font-size: 1.5rem;
  }
}

/* === ESTILO DO FOOTER === */
/* Reset básico para remover margens e evitar rolagem lateral */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Estilo base do rodapé */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #101010; /* cor escura para contraste */
}

/* ===== Card de Pagamento (formas aceitas) ===== */
.card-pagamento {
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.4s ease;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
}

.card-pagamento:hover {
  border-color: #00bcd4;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
  transform: scale(1.02);
}

/* Imagem das bandeiras de pagamento */
.img-pagamento {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.img-pagamento:hover {
  filter: brightness(1.2);
  transform: scale(1.03);
}

/* ===== Ícones Sociais ===== */
.social-icon {
  display: inline-block;
  color: #ffffff;
  background-color: #1a1a1a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: scale(1.15);
  color: #fff;
}

/* Cor específica de hover para redes sociais */
.social-icon.facebook:hover {
  background-color: #3b5998;
}
.social-icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* ===== Botão flutuante do WhatsApp ===== */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite; /* Animação contínua */
}

.whatsapp-float i {
  font-size: 24px;
  margin-right: 8px;
}

.whatsapp-text {
  font-weight: 500;
  display: inline-block;
}

/* Efeito ao passar o mouse */
.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Animação de pulsar */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* WhatsApp responsivo (somente ícone no mobile) */
@media (max-width: 576px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    justify-content: center;
    padding: 0;
  }
}

/* ===== Botão "voltar ao topo" flutuante ===== */
.btn-topo {
  position: fixed;
  left: 20px;
  bottom: 40px;
  background: linear-gradient(135deg, #4a90e2, #357ABD);
  border: none;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 8px 15px rgba(53, 122, 189, 0.4);
  cursor: pointer;
  color: white;
  display: none; /* escondido até o scroll mostrar */
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  backdrop-filter: blur(6px);
  transition: opacity 0.4s ease, transform 0.3s ease;
}

.btn-topo svg {
  stroke: white;
  transition: stroke 0.3s ease;
}

.btn-topo:hover {
  background: linear-gradient(135deg, #357ABD, #4a90e2);
  box-shadow: 0 12px 20px rgba(53, 122, 189, 0.7);
  transform: translateY(-3px);
}

/* Classe que mostra o botão ao rolar a página */
.btn-topo.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== Modal animado (Estilo Festa) ===== */
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  opacity: 0;
  transition: all 2s ease-in-out; /* entrada lenta e suave */
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Estilo final para o footer ===== */
footer {
  padding: 3rem 1rem 2rem;
  background-color: #101010;
  color: #eee;
  box-sizing: border-box;
}

/* Container do conteúdo do footer */
footer .container-fluid {
  max-width: 1200px;
}

/* Títulos */
footer h5 {
  color: #f5f5f5;
  font-weight: 700;
}

/* Textos padrão */
footer p, footer li {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Margem entre ícones sociais */
.social-icon {
  margin-right: 12px;
}

/* Colunas em bloco no mobile */
@media (max-width: 768px) {
  footer .row > div {
    margin-bottom: 2rem;
  }
}


.sobre-impacto {
  position: relative;
  min-height: 100vh;
 background-image: url('../img/marca_dagua.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #000;
}

.sobre-impacto .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.sobre-conteudo {
  position: relative;
  z-index: 2;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
  will-change: transform, opacity;
  backface-visibility: hidden;
}


@keyframes cair {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Animação de entrada suave para o banner */
.sobre-impacto {
  position: relative; /* já tem no seu HTML */
  overflow: hidden; /* evita que flocos saiam do container */
}

.floco {
  position: absolute;
  top: -50px;
  pointer-events: none;
  user-select: none;
  z-index: 10;
  opacity: 0.8;
  animation-name: cairFloco;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes cairFloco {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}
/* CSS para estilo moderno banner */

 .sobre-impacto h2 {
    font-family: 'Orbitron', sans-serif;
    color: #E0F7FA; /* Azul gelo */
    text-shadow: 2px 2px 5px rgba(0, 191, 255, 0.3);
  }

  .sobre-impacto p.lead {
    font-family: 'Poppins', sans-serif;
    color: #B3E5FC;
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }

  .slogan-impacto {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #81D4FA; /* Azul mais claro ainda */
    margin-top: 15px;
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  }

  .sobre-impacto .btn-outline-light {
    border-color: #81D4FA;
    color: #ffffff;
    background-color: transparent;
  }

  .sobre-impacto .btn-outline-light:hover {
    background-color: #81D4FA;
    color: #000;
    transition: 0.3s;
  }

/*css do servico */
.hover-up:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.card i {
  transition: color 0.3s ease;
}

.card:hover i {
  color: #0dcaf0; /* tom de azul claro gelado */
}


/* CSS para o banner de venda */
#revenda {
  background: linear-gradient(to right, #e6f9ff, #ffffff);
}

#revenda h2 {
  font-family: 'Poppins', sans-serif;
}

#revenda ul li {
  font-size: 1.1rem;
}
