/********** RESET **********/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background:  #f5f0f0;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url("/src/img/fundoGeom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* deixa o fundo suave */

}

/********** LOGO **********/
.logo {
  height: 70px;
  width: auto;
  cursor: pointer;
}

/********** ANIMAÇÕES **********/
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.fadeUp {
  animation: fadeUp 0.8s ease forwards;
}

.fadeDelay {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.fadeSlow {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 15px 8px rgba(37, 211, 102, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
}

/********** HEADER **********/
header {
  width: 100%;
  height: 85px;
  padding: 0 48px;
  background-image: url("/src/img/fundoGeom.png");

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  animation: fadeIn 1s ease;
}


/********** NAV **********/
nav#menu {
  display: flex;
  align-items: center;
}

/* links */
nav#menu a {
  margin-left: 28px;
  color: #0570eb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

/* linha animada */
nav#menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F66B0E;
  transition: 0.3s;
}

nav#menu a:hover::after {
  width: 100%;
}

.btn-laranja{
 background: #F66B0E;
 color: #fff;
 padding: 14px 32px;
 border-radius: 6px;
 text-decoration:none ;
 font-weight: 600;
 transition: 0.25s;
 animation: fadeUp 1.4s ease;;
}

.hero {
  height: 85vh;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 85px;

  background-image: url("/src/img/loja.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(11, 95, 155, 0.8),
    rgba(19, 61, 95, 0.8)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}



.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 28px;
}
/* carrinho de compra*/ 
.cart-icon img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  transition: 0.3s;
}

.cart-icon img:hover {
  transform: scale(1.15);
}


/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: #0570eb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin-left: 28px;
  position: relative;
}

/* Caixa do menu */
.dropdown-content {
  display: none;
  position: absolute;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 50;
}

/* Links do dropdown */
.dropdown-content a {
  color: #0570eb;
  padding: 10px 18px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: 0.25s;
}

.dropdown-content a:hover {
  background: #f0f0f0;
  color: #F66B0E;
}

/* Exibir ao passar o mouse */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Linha animada igual aos demais itens */
.dropbtn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0%;
  background: #F66B0E;
  transition: 0.3s;
}

.dropdown:hover .dropbtn::after {
  width: 100%;
}
/* ===========================
      HAMBURGER
=========================== */
.hamburger {
  width: 35px;
  height: 27px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  width: 100%;
  height: 4px;
  background: #0570eb;
  border-radius: 4px;
  transition: 0.3s ease;
}

/* Animação quando abre */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===========================
      MENU MOBILE
=========================== */
@media (max-width: 820px) {
  nav#menu {
    position: absolute;
    top: 85px;
    right: 0;
    background: #fff;
    width: 230px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateX(100%);
    transition: 0.35s ease;
    box-shadow: -2px 4px 18px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 0 15px;
  }

  nav#menu.show {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }
}



/********** PRODUTOS **********/
.produtos-destaque {
  padding: 80px 48px;
  background-image: url(/src/img/fundoGeom.png);
}

.produtos-destaque {
  padding: 50px 20px;
  background:  #f5f0f0;
}

.produtos-destaque h2 {
  font-size: 32px;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.produto-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: .3s;
}

.produto-card:hover {
  transform: translateY(-5px);
}

.produto-card img {
  height: 160px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
}
/* Remove efeitos do <a> dentro dos produtos e deixa o card inteiro clicável */
.produto-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.produto-card a::after {
  display: none !important;
}

.produto-card a:hover {
  color: inherit;
}


.preco {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
}

/********** RESPONSIVIDADE **********/
@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }

  .hero {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  header nav a {
    margin-left: 18px;
  }
}
/* Logo no nav */ 
.logo {
  height: 70px;
  width: auto;
  cursor: pointer;
  user-select: none;
  animation: fadeIn 1s ease;
}
/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
  border-radius: 50%;
  animation: pulse 1.8s infinite ease-in-out;
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.15);
}



.whatsapp-float img:hover {
  transform: scale(1.1);
}

/********** SOBRE NÓS **********/
.sobrenos {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-image:url(/src/img/fundoGeom.png) ;
  backdrop-filter: blur(4px);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  margin-top: 60px;
  margin-bottom: 60px;
}

.sobrenos h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #0b5f9b;
}

.sobrenos p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
/* Toast container */
.toast {
  position: fixed;
  bottom: 100px; /* sobe o alerta acima do WhatsApp */
  right: 20px;
  background: #028d2c;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(68, 1, 1, 0.35);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  z-index: 9999;

  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

/* quando ativo */
.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* botão fechar */
.toast button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.toast button:hover {
  opacity: 0.7;
}

/********** MOSTRAR MAIS **********/
.mostrar-mais {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 12px 28px;
  background: #F66B0E;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.mostrar-mais:hover {
  background: #d95f0c;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
/* Seção de Serviços */

.servicos {
  padding: 60px 20px;
  text-align: center;
}

.servicos h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.servico-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.servico-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.servico-card img {
  width: 200px;
  margin-bottom: 15px;
}

.servico-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff6600;
}

.servico-card p {
  font-size: 0.95rem;
  color: #444;
}
/* rodapés*/
.footer {
  background: #111;
  color: #eee;
  padding: 40px 20px 10px;
  margin-top: 40px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 15px;
}

.footer-section h3,
.footer-section h4 {
  color: #0dcaf0; 
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
  opacity: 0.8;
}

.footer-section p {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.6;
}
/* =================================================
   ✅ SMARTPHONES PEQUENOS (até 480px)
================================================= */
@media (max-width: 480px) {
  header {
    padding: 0 15px;
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .logo {
    height: 52px;
  }

  nav#menu {
    width: 210px;
  }

  .contato-info,
  .contato-form {
    padding: 20px;
  }

  .contato-form input,
  .contato-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .contato-form button {
    font-size: 15px;
    padding: 12px;
  }

  .mapa-box {
    height: 260px;
  }

  .footer {
    padding: 30px 15px 10px;
  }
}