* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #000;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */

.hero {
  background-image: url("/img/Almeida-Multiloja-ACM-Conceito-Juruti-PA.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}



.hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero p {
  color: #555;
  margin-bottom: 30px;
}

.btn {
  background: #ff4b4b;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

/* PROJECTS */
.projects {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.projects .subtitle {
  color: #666;
  margin: 15px 0 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* ABOUT */
.about {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.contact-subtitle {
  color: #666;
  margin: 15px 0 40px;
}

.contact-box {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp-float img {
  width: 55px;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    width: 200px;
    flex-direction: column;
  }

  .nav a {
    padding: 15px;
    border-top: 1px solid #222;
  }

  .menu-toggle {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.location {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.location h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mapa iframe {
  width: 80%;
  height: 400px;
  border: 0;
  display: block;
  margin: 0 auto;
}
/* Botão flutuante do WhatsApp (exemplo) */
.whatsapp-btn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* O ícone (img ou svg) */
.whatsapp-btn img,
.whatsapp-btn svg{
  width: 34px;
  height: 34px;
  display: block;
  animation: wa-breathe 1.6s ease-in-out infinite;
}

/* “Halo” pulsando atrás */
.whatsapp-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: wa-pulse 1.6s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse{
  0%   { transform: scale(1);   opacity: 0.65; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes wa-breathe{
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
/* HERO – texto centralizado com fundo suave atrás */
.hero {
  text-align: center; /* centraliza as palavras */
}

.hero .container {
  display: inline-block;
  background: rgba(0, 0, 0, 0.30); /* cinza/preto translúcido */
  padding: 30px 40px;
  border-radius: 12px;
}

/* texto branco e legível */
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.hero p {
  color: #f1f1f1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}


/* PASSO 4 – refinamento do fundo do texto no HERO */
.hero .container {
  display: inline-block;
  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.15)
  ); /* cinza suave com leve degradê */

  padding: 28px 36px;
  border-radius: 14px;

  backdrop-filter: blur(2px); /* efeito glass leve (se suportado) */
}

/* WHATSAPP – pulsar + tremer (telefone tocando) */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 62px;
  height: 62px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 9999;
}

/* Ícone do WhatsApp */
.whatsapp-float img{
  width: 34px;
  height: 34px;

  animation:
    wa-pulse 1.6s infinite,
    wa-ring 2.8s infinite;
}

/* Pulso (respiração) */
@keyframes wa-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* Tremida tipo telefone tocando */
@keyframes wa-ring {
  0%  { transform: rotate(0); }
  2%  { transform: rotate(6deg); }
  4%  { transform: rotate(-6deg); }
  6%  { transform: rotate(6deg); }
  8%  { transform: rotate(-6deg); }
  10% { transform: rotate(0); }
  100%{ transform: rotate(0); }
}

/* Pausa animação ao passar o mouse (opcional) */
.whatsapp-float:hover img{
  animation-play-state: paused;
}
/* Zoom na imagem dos projetos */
.project-card {
  overflow: hidden; /* impede a imagem de sair do card */
}

.project-card img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

/* Só aplica zoom onde existe mouse (desktop) */
@media (hover: hover) {
  .project-card:hover img {
    transform: scale(1.18);
  }
}

