/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #292929;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1 {
  font-weight: 700;
  color: #292929;
}

h2 {
  font-weight: 700;
  color: #292929;
}

h3 {
  font-weight: 700;
  color: #292929;
}

h3 span {
  color: #ffffff;
}

span2 {
  font-size: 2.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
  background: #ffffff;
  color: #292929;
  padding: 15px 0;
  border-bottom: 1px solid #eeeeee;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 60px;
}

.logo span { color: #caa042; }
.nav-content nav ul {
  display: flex;
  gap: 25px;
}

.nav-content nav ul li a {
  font-weight: 500;
  color: #333;
}

.nav-content nav ul li a:hover {
  color: #caa042;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-gold {
  background: linear-gradient(135deg, #caa042, #ffd700, #caa042);
  background-size: 200% 200%;
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  animation: pulse 1.8s infinite ease-in-out; /* sempre pulsando */
  display: inline-block;
  text-align: center;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  animation-play-state: paused; /* pausa só no desktop */
}

.btn-white {
  background: #ffffff;
  border: 1px solid #333333;
  color: #333333;
}

.btn:hover {
  opacity: 0.85;
}

/* Hero */
.hero {
  background: linear-gradient(to bottom, #fff, #f9e7b3);
  padding: 2rem 0;
  text-align: left;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 { font-size: 36px; margin-bottom: 20px; }

.hero-text p { margin-bottom: 15px; }

.hero-img img { width: 38rem; }

.rating { margin-top: 10px; color: #777; }

.metrics {
  display: flex;
  justify-content: space-around;
  align-items: center;   /* centraliza no eixo vertical */
  margin: 40px auto;     /* centraliza a caixa no meio da tela */
  padding: 20px 0;
  width: 70%;
  height: 10rem;
  background: #292929;
  color: #ffffff;
  font-size: 22px;
  text-align: center;    /* centraliza texto dentro de cada item */
  border-radius: 20px;
}

.metrics div {
  display: flex;
  flex-direction: column; /* coloca número em cima e texto embaixo */
  align-items: center;
  justify-content: center;
}

/* Mercado */
.mercado {
  background: linear-gradient(to bottom, #f9e7b3, #ffffff);
  padding: 2rem 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mercado h2 { margin-bottom: 20px; }

.mercado ul { margin-bottom: 30px; }

.mercado ul li { margin-bottom: 10px; }

.mercado-img {
  width: 30rem;
  margin-top: 1.5rem;
}

/* Serviços */
.servicos {
  padding: 80px 0;
  background: #ffffff;
}

.servicos-grid {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.servicos-grid img {
  width: 60%;
}

.servicos-text {
  display: flex;
  flex-direction: column;
  gap: 30px; /* espaçamento entre os parágrafos */
}

.paragrafo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.img-left, .img-right {
  width: 60px;   /* ajuste conforme necessário */
  height: auto;
}

.img-left {
  order: -1; /* garante que fique à esquerda */
}

.img-right {
  order: 1; /* garante que fique à direita */
}


.line {
  max-width: 100%;
}


/* Conteúdos */
.conteudos {
  padding: 80px 0;
  background: #292929;
  color: #ffffff;
}

.conteudos-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.conteudos-img img {
  width: 28rem;
  margin-bottom: 20px;
  border-radius: 12px; /* opcional, deixa elegante */
  animation: dynamicFloat 4s ease-in-out infinite;
  transform-origin: center;
}

/* Animação dinâmica e fluida */
@keyframes dynamicFloat {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  15% {
    transform: translate(5px, -10px) rotate(-2deg) scale(1.02);
  }
  30% {
    transform: translate(-5px, 10px) rotate(2deg) scale(0.98);
  }
  45% {
    transform: translate(10px, -5px) rotate(-1deg) scale(1.03);
  }
  60% {
    transform: translate(-10px, 5px) rotate(1deg) scale(0.97);
  }
  75% {
    transform: translate(5px, -5px) rotate(-1deg) scale(1.02);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

/* Hover para interação */
.conteudos-img img:hover {
  transform: scale(1.1) rotate(0deg);
}



.conteudos-img h2 {
    width: 300px; margin-bottom: 20px;
}

.explore-text {
  font-size: 3rem;
  color: #ffffff;
}

/* CTA */
.cta {
  padding: 60px 0;
  text-align: center;
}

.cta p {
    margin: 20px 0;
}

/* Contato */
.contato {
  padding: 80px 0;
}

.contato-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contato-info { flex: 1; }

.contato-img {
  text-align: center;
}

.contact-img {
  width: 30rem;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #25d366;
  color: #ffffff;
  border-radius: 5px;
}

.contact-whatsapp a {
  display: flex;
  align-items: center; /* alinha verticalmente a imagem com o texto */
  gap: 10px; /* espaço entre a imagem e o texto */
  text-decoration: none;
  color: inherit;
}

.contact-whatsapp img {
  width: 30px; /* ajuste o tamanho da imagem */
  height: auto;
}


/* Footer */
.footer {
  background: #292929;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col h3 { margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 8px; }
.footer form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer input {
  padding: 8px;
  flex: 1;
}

.footer button {
  border: none;
}

.footer p { font-size: 14px; color: #cccccc; }
.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888888;
}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

@media (max-width: 1024px) {
  .hero-content,
  .mercado,
  .conteudos-flex,
  .contato-flex {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .hero-img img,
  .mercado-img,
  .conteudos-img img,
  .contact-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .servicos-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .servicos-grid img {
    width: 80%;
    max-width: 300px;
  }

  .footer-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .metrics {
    flex-direction: column;
    gap: 20px;
    height: auto;
    width: 90%;
    font-size: 18px;
  }

  .btn,
  .btn-gold {
    display: block;
    margin: 12px auto;
    max-width: 280px;
    width: auto;
  }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .explore-text { font-size: 2rem; }
}

@media (max-width: 480px) {
  .btn,
  .btn-gold {
    max-width: 260px;
  }

  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  p { font-size: 1rem; }
}

/* ========================= */
/*  Responsividade Header    */
/* ========================= */
@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente se tiver altura definida */
    flex-direction: column;
    padding: 15px 0;         /* só espaçamento vertical */
    position: relative;      /* para referência de elementos futuros */
  }

  header .logo {
    display: block;
    margin: 0 auto;          /* centraliza horizontalmente */
  }

  /* Esconde navegação e botão */
  header nav,
  header .btn-gold {
    display: none;
  }
}

@media (max-width: 480px) {
  header .logo img {
    max-width: 120px;
    height: auto;
  }
}