/* Animação Background - animated-bg */
@keyframes floatIcon {
  /* Icone Flutuando */
    0% { transform: translateY(100vh) translateX(0); }
    100% { transform: translateY(-10vh) translateX(50px); }
}
.icon-float {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatIcon 10s infinite ease-in-out;
}
.icon-float:nth-child(odd) {
    animation-duration: 15s;
}
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
#i1{
    left: 10%;
}
#i2{
    left: 30%;
}
#i3{
    left: 50%;
}
#i4{
    left: 70%;
}
#i5{
    left: 90%;
}

/* Seção - Navbar Menu */
.img-logo-drop {
  /* Estilo da LOGO no menu */
  height: 48px; /* altura da logo */
  width: auto;
  margin-left: 15px;
  transition: transform 0.3s ease;
}
.img-logo-drop:hover {
  transform: scale(1.08) rotateZ(-1deg); /* leve animação 3D ao passar o mouse */
}
.navbar {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  background: radial-gradient(circle at top, #00111a, #000);
}
.dropdown-menu{
  background: radial-gradient(circle at top, #00111a, #000);
}
.dropdown-menu a{
  color: #fff;
}
.dropdown-menu button {
  color: #fff;
}
.navbar-nav .nav-link {
  /* Links do menu */
  color: #ffffff !important;
  transition: color 0.3s ease, transform 0.2s ease;
  font-size: 1rem;
}
.navbar-nav .nav-link:hover {
  /* Hover nos links */
  color: #00d4ff !important;
  transform: translateY(-1px);
}

#scs i{
  margin-right: 6px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #00d4ff, #0077ff, #00d4ff);
  background-size: 200%;
  animation: gradientMove 3s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#qmsm i{
  margin-right: 6px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #00d4ff, #0077ff, #00d4ff);
  background-size: 200%;
  animation: gradientMove 3s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#as i{
  margin-right: 6px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #00d4ff, #0077ff, #00d4ff);
  background-size: 200%;
  animation: gradientMove 3s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#prc i{
  margin-right: 6px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #00d4ff, #0077ff, #00d4ff);
  background-size: 200%;
  animation: gradientMove 3s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradientMove{
  0%{
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

/* Botão Menu Sanduiche */
.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, 0.479)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler {
  border: 0.2px solid rgba(255, 255, 255, 0.479) !important;
  /* branca quando não clicada */
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.6) !important; /* cinza ao expandir */
  border-color: rgba(255, 255, 255, 0.6) !important; /* mantém a borda branca */
}

/* Seção - Qualidade e Garantia */
.card-selo{
  background: radial-gradient(circle at top, #00111a, #000);
}

/* Container principal do header */
.header-animado {
  width: 100%;
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #004466, #001f33);
  animation: fundoPulsando 10s infinite ease-in-out;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}
.header-conteudo {
  /* Flex container para separar imagem e texto */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header-logo {
  /* Lado esquerdo (logo) */
  flex: 1 1 300px;
  text-align: center;
}
.logo-movimento {
  width: 220px;
  max-width: 90%;
  transition: transform 0.6s ease;
  animation: giro3d 8s infinite alternate ease-in-out;
  transform-style: preserve-3d;
}
.header-texto {
  /* Lado direito (texto) */
  flex: 1 1 400px;
  color: #ffffff;
  animation: fadeInRight 1.5s ease-out;
}
.header-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.header-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccefff;
}
@media (max-width: 768px) {
  /* Responsivo para celular */
  .header-conteudo {
    flex-direction: column;
    text-align: center;
  }

  .header-texto h1 {
    font-size: 2rem;
  }

  .header-texto p {
    font-size: 1rem;
  }
}
@keyframes fundoPulsando {
  0% {
    background: radial-gradient(circle at top left, #004466, #001f33);
  }
  50% {
    background: radial-gradient(circle at bottom right, #00334d, #000f1a);
  }
  100% {
    background: radial-gradient(circle at top left, #004466, #001f33);
  }
}
@keyframes fadeInRight {
  /* Animação de entrada suave */
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes giro3d {
  /* Animação da logo */
  0% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(20deg) rotateX(10deg) scale(1.05);
  }
  100% {
    transform: rotateY(-20deg) rotateX(-10deg) scale(1);
  }
}

/* Sessão - Dicas Rápidas */
#dicas img{
  width: 35px;
  margin-right: 15px;
}

/* Seção - Fale Conosco */
#contato h2 {
  font-weight: 700;
  font-size: 2.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.btn-orcamento {
  text-decoration: none;
  /* Botão de orçamento */
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 6px 18px rgba(0, 114, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-orcamento:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.6);
  text-decoration: none;
}
.btn-social {
  /* Ícones sociais */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-whatsapp {
  background: #25D366;
}
.btn-facebook {
  background: #1877f2;
}
.btn-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.btn-social:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Animação Pulse Suave - Avalia */
@keyframes pulse3d-avalia {
  0% {
    box-shadow: 0 0 0 0 rgba(235, 174, 42, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/* Animação Pulse Suave - Whats */
@keyframes pulse3d-whats {
  0% {
    box-shadow: 0 0 0 0 rgba(92, 230, 64, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/* Base dos botões fixos 3D  - Avalia*/
.btn-float-3d-avalia {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse3d-avalia 2s infinite;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  perspective: 1000px;
}
/* Base dos botões fixos 3D - Whats*/
.btn-float-3d-whats {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse3d-whats 2s infinite;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  perspective: 1000px;
}
/* Avaliação Google */
.btn-float-google {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: linear-gradient(135deg, #ff6a07, #a89802);
  z-index: 1051;
}
/* WhatsApp */
.btn-float-whats {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  z-index: 1051;
}
.btn-float-google i {
  color: #ffffff;
  font-size: 1.3rem;
}
.btn-float-whats i {
  font-size: 1.5rem;
  color: #fff;
}
/* Hover */
.btn-float-3d-avalia:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}
.btn-float-3d-whats:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}
/* Clique */
.btn-float-3d-avalia:active {
  transform: scale(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.btn-float-3d-whats:active {
  transform: scale(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Botão de Voltar ao topo */
:root {
  --btn-top-bg: #f1f1f1;
  --btn-top-color: #111;
}
body.light{
  --btn-top-bg: #000;
  --btn-top-color:#fff;
}
.btn-topo{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: var(--btn-top-bg);
  color: var(--btn-top-color);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.btn-topo:hover{
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}
.btn-topo.show{
  opacity: 1;
  visibility: visible;
  /* Ajuste para ficar abaixo dos botões flutuantes (Avaliar) e (WhatsApp)*/
  bottom: 160px;
}
@keyframes fadeInUP{
  from {
    opacity: 0;
    transform: translateY(10px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   BOTÃO FLUTUANTE DE TROCA DE TEMA
   =============================== */
:root {
  --c1: #5e17eb;  /* Roxo principal */
  --c2: #2c0b73;  /* Roxo escuro */
  --c3: #7a2bff;  /* Roxo claro para hover */
  --c4: #3f11a6;  /* Roxo mais fechado */
  --c5: #e47331;  /* Cor alternativa (não usada aqui, mas deixei) */
}

/* Botão base */
.theme-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(145deg, var(--c1), var(--c2));
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1030; /* Abaixo do Navbar fixo */
}

/* Quando deve aparecer (JS adiciona a classe .show) */
.theme-float.show {
  opacity: 1;
  visibility: visible;
}

/* Hover com gradiente mais claro e movimento sutil */
.theme-float:hover {
  background: linear-gradient(145deg, var(--c3), var(--c4));
  transform: translateY(-50%) translateX(-3px);
}

/* Ícone dentro do botão */
.theme-float i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* Animação de rotação ao trocar tema */
.theme-float i.spin {
  transform: rotate(180deg);
}

/* Modo claro: altera cor do botão e ícone */
html[data-bs-theme="light"] .theme-float {
  background: linear-gradient(145deg, #f6d365, #fda085);
  color: #111;
}
html[data-bs-theme="light"] .theme-float:hover {
  background: linear-gradient(145deg, #ffd580, #ffb469);
}