@charset "UTF-8";
/*Google font*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Variaveis globais */
* {
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  margin: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 167, 106, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 48%, #f7f1e7 100%);
  color: #3a2d1f;
}
.embreve {
  min-height: 100vh;
}

.embreve .row {
  min-height: 100vh;
}

.conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 72px 7vw;
}

.logo {
  margin-bottom: 40px;
}

.logo img {
  max-width: 210px;
  width: 100%;
}

.textos {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1px solid rgba(130, 95, 43, 0.18);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.74);
  color: #8a6a3c;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.textos h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #2d2116;
}

.textos p {
  margin: 0;
  max-width: 520px;
  color: #6f6252;
  font-size: 1.08rem;
  line-height: 1.8;
}

.contador {
  margin-top: 38px;
  max-width: 520px;
  padding: 28px;
  border: 1px solid rgba(130, 95, 43, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(84, 61, 27, 0.1);
  backdrop-filter: blur(12px);
}

.contador-kicker,
.contador-legenda,
.redes_sociais p {
  margin: 0;
}

.contador-kicker {
  text-align: center;
  margin-bottom: 18px;
  color: #7d6240;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contador-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contador-item {
  padding: 18px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6efe4 100%);
  text-align: center;
}

.contador-item strong {
  display: block;
  color: #2d2116;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  font-weight: 700;
}

.contador-item span {
  display: block;
  margin-top: 10px;
  color: #8b7250;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contador-legenda {
  margin-top: 18px;
  color: #72604b;
  font-size: 0.98rem;
  line-height: 1.7;
}

.redes_sociais {
  margin-top: 34px;
}

.redes_sociais p {
  margin-bottom: 14px;
  color: #7c6950;
  font-size: 0.95rem;
}

.redes_sociais ul {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.redes_sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #7b5b31;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(75, 52, 24, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.redes_sociais a:hover {
  transform: translateY(-4px);
  color: #a37b43;
  box-shadow: 0 18px 30px rgba(75, 52, 24, 0.14);
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item img {
  min-height: 100vh;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .conteudo {
    min-height: auto;
    padding: 48px 24px 34px;
  }

  .textos h1 {
    max-width: 12ch;
  }

  .carousel-item img {
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .logo img {
    max-width: 170px;
  }

  .contador {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contador-grid {
    gap: 12px;
  }

  .contador-item {
    padding: 16px 10px;
    border-radius: 18px;
  }

  .textos p,
  .contador-legenda {
    font-size: 0.96rem;
  }
}
