:root {
  --verde-profundo: #1f4d3a;
  --salvia: #90ad94;
  --terracota: #b66f52;
  --areia: #e9d8bc;
  --rosa-nevoa: #ddb8ad;
  --linho-sereno: #f6f1e9;
  --texto-escuro: #29332e;
  --texto-claro: #f7f8f6;
  --card: #fffcf7;
  --sombra: 0 14px 40px rgba(17, 36, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--texto-escuro);
  background: linear-gradient(170deg, #f8f5f0 0%, #f2efe8 40%, #f4efe5 100%);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(8px);
  background: rgba(246, 241, 233, 0.86);
  border-bottom: 1px solid rgba(31, 77, 58, 0.14);
}

.site-header .wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d7ebd9, var(--verde-profundo));
  box-shadow: 0 0 0 4px rgba(31, 77, 58, 0.14);
}

.brand-text {
  letter-spacing: 0.2px;
}

.header-cta {
  text-decoration: none;
  color: var(--texto-claro);
  background: linear-gradient(130deg, var(--verde-profundo), #275840);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
}

.section {
  padding: 88px 0;
}

.section h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 18px;
  line-height: 1.2;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.section-intro {
  max-width: 720px;
  margin: 0 0 30px;
  color: #435048;
}

.section-bg {
  position: relative;
  overflow: hidden;
  padding: 84px 0 86px;
  background-image: url("assets/fotossite (11).jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(233, 216, 188, 0.4), transparent 44%),
    linear-gradient(112deg, rgba(12, 31, 24, 0.93) 24%, rgba(31, 77, 58, 0.72) 64%, rgba(182, 111, 82, 0.34) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  color: var(--texto-claro);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-alert {
  margin: 0 0 16px;
  display: inline-block;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(182, 111, 82, 0.23);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.hero-lead {
  margin: 20px 0 16px;
  color: #ecf4ef;
  max-width: 60ch;
}

.hero-points {
  margin: 0 0 20px;
  padding-left: 18px;
  text-align: left;
  max-width: 520px;
}

.hero-points li {
  margin-bottom: 6px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-micro {
  margin: 0;
  font-size: 0.9rem;
  color: #dce8df;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-pro-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--sombra);
}

.hero-pro-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 24%;
}

.hero-form {
  background: rgba(253, 249, 241, 0.96);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--sombra);
  border: 1px solid rgba(31, 77, 58, 0.12);
}

.hero-form h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
}

.hero-form p {
  margin: 0 0 16px;
  color: #4f5f55;
}

.hero-form label {
  display: block;
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-form input,
.hero-form select {
  width: 100%;
  border: 1px solid rgba(31, 77, 58, 0.22);
  border-radius: 10px;
  padding: 12px;
  margin: 0 0 14px;
  font: inherit;
  background: #fff;
}

.btn {
  border: 0;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn-main {
  background: linear-gradient(120deg, var(--terracota), #c57d5d);
  color: #fff;
}

.btn-contrast {
  width: 100%;
  background: linear-gradient(120deg, var(--verde-profundo), #2a664c);
  color: #fff;
}

.pains {
  background:
    linear-gradient(120deg, rgba(246, 241, 233, 0.92), rgba(240, 237, 230, 0.92)),
    url("assets/fotossite (14).jpg") center/cover no-repeat;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article {
  background: var(--card);
  border-left: 4px solid var(--terracota);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(31, 77, 58, 0.1);
  font-weight: 600;
}

.section-bg-2 {
  background:
    linear-gradient(120deg, rgba(31, 77, 58, 0.9), rgba(31, 77, 58, 0.82)),
    url("assets/fotossite (6).jpg") center/cover no-repeat;
  color: #f2f6f4;
}

.section-bg-2 .cards-grid article {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cards-grid,
.spec-grid,
.faq-grid,
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cards-grid article,
.spec-grid article,
.faq-grid article,
.test-grid article {
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(24, 44, 36, 0.12);
}

.cards-grid h3,
.spec-grid h3,
.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.cards-grid p,
.spec-grid p,
.faq-grid p,
.test-grid p {
  margin: 0;
}

.specialities {
  background:
    linear-gradient(120deg, rgba(246, 241, 233, 0.9), rgba(236, 227, 209, 0.9)),
    url("assets/fotossite (8).jpg") center/cover no-repeat;
}

.spec-grid article {
  background: rgba(255, 252, 247, 0.9);
}

.professional {
  background: linear-gradient(145deg, #f4efe5, #f9f4eb);
}

.pro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.pro-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pro-photos img {
  border-radius: 12px;
  height: 270px;
  object-fit: cover;
  box-shadow: var(--sombra);
}

.pro-role {
  margin: -4px 0 14px;
  color: #5f6e64;
  font-weight: 700;
}

.visual-showcase {
  background:
    linear-gradient(130deg, rgba(30, 41, 35, 0.89), rgba(63, 79, 68, 0.84)),
    url("assets/fotossite (3).jpg") center/cover no-repeat;
  color: #eef4f1;
}

.visual-showcase .section-intro {
  color: #e0ebe4;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.mosaic img {
  border-radius: 10px;
  width: 100%;
  height: 138px;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.3s ease;
}

.mosaic img:hover {
  transform: translateY(-4px) scale(1.02);
}

.section-bg-3 {
  background:
    linear-gradient(130deg, rgba(233, 216, 188, 0.9), rgba(221, 184, 173, 0.88)),
    url("assets/fotossite (17).jpg") center/cover no-repeat;
}

.rating {
  margin: 0 0 18px;
  font-weight: 800;
}

.test-grid article {
  background: rgba(255, 252, 247, 0.94);
}

.test-grid strong {
  display: inline-block;
  margin-top: 10px;
}

.faq {
  background:
    linear-gradient(130deg, rgba(246, 241, 233, 0.92), rgba(235, 225, 211, 0.9)),
    url("assets/fotossite (10).jpg") center/cover no-repeat;
}

.faq-grid article {
  background: rgba(255, 255, 255, 0.88);
}

.final-cta {
  padding-top: 72px;
  padding-bottom: 120px;
  background:
    linear-gradient(128deg, rgba(16, 37, 29, 0.94), rgba(31, 77, 58, 0.88)),
    url("assets/fotossite (1).jpg") center/cover no-repeat;
  color: #f4f7f4;
}

.final-panel {
  position: relative;
  padding: 38px;
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(15, 31, 25, 0.76), rgba(26, 55, 43, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.reference-visual {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 170px;
  border-radius: 12px;
  opacity: 0.35;
}

.reference-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 96px;
  border-radius: 50%;
  opacity: 0.55;
}

.final-panel h2,
.final-panel p,
.final-panel .btn,
.final-panel small {
  position: relative;
  z-index: 1;
}

.final-panel small {
  margin-top: 10px;
  display: block;
  color: #d9e6de;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-float img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  box-shadow:
    0 0 0 0 rgba(44, 195, 95, 0.7),
    0 0 22px rgba(44, 195, 95, 0.66),
    0 14px 26px rgba(8, 31, 17, 0.34);
  animation: pulse 2.1s infinite, shake 4.8s infinite;
}

.wa-bubble {
  position: absolute;
  right: 84px;
  bottom: 56px;
  background: #fff;
  color: #21382d;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 11px 12px;
  min-width: 220px;
  box-shadow: 0 12px 28px rgba(20, 45, 34, 0.24);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.wa-bubble::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 12px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #fff;
}

.wa-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(44, 195, 95, 0.66),
      0 0 22px rgba(44, 195, 95, 0.62),
      0 14px 26px rgba(8, 31, 17, 0.34);
  }
  70% {
    box-shadow:
      0 0 0 24px rgba(44, 195, 95, 0),
      0 0 28px rgba(44, 195, 95, 0.52),
      0 14px 26px rgba(8, 31, 17, 0.34);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(44, 195, 95, 0),
      0 0 22px rgba(44, 195, 95, 0.62),
      0 14px 26px rgba(8, 31, 17, 0.34);
  }
}

@keyframes shake {
  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }
  92% {
    transform: rotate(-8deg);
  }
  94% {
    transform: rotate(8deg);
  }
  96% {
    transform: rotate(-6deg);
  }
  98% {
    transform: rotate(6deg);
  }
}

@media (max-width: 1100px) {
  .cards-grid,
  .spec-grid,
  .faq-grid,
  .test-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-header .wrap {
    min-height: 68px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero-grid,
  .pro-grid {
    grid-template-columns: 1fr;
  }

  .hero-pro-photo img {
    height: 320px;
  }

  .pain-grid,
  .cards-grid,
  .spec-grid,
  .faq-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .pro-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic img {
    height: 158px;
  }

  .final-panel {
    padding: 26px;
  }

  .reference-visual,
  .reference-badge {
    display: none;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
  }

  .wa-float img {
    width: 68px;
    height: 68px;
  }

  .wa-bubble {
    min-width: 190px;
    right: 74px;
    bottom: 50px;
  }
}
