:root {
  --paper: rgba(255, 250, 240, 0.9);
  --olive: #5f6f43;
  --olive-dark: #3f4b2f;
  --brown: #704a2d;
  --text: #32291f;
  --muted: #6e665a;
  --shadow: 0 28px 90px rgba(84, 63, 36, 0.22);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,250,240,0.72) 42%, rgba(247,239,225,0.34) 100%),
    url("../images/fundo-vale-das-alpacas.jpg") center bottom / cover no-repeat fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.95), rgba(255,255,255,0.52) 38%, rgba(255,255,255,0.08) 70%),
    linear-gradient(90deg, rgba(95,111,67,0.09), transparent 32%, transparent 68%, rgba(112,74,45,0.07));
}

body::after {
  content: "";
  position: fixed;
  left: -8%;
  right: -8%;
  bottom: -92px;
  height: 210px;
  background: linear-gradient(180deg, var(--olive), var(--olive-dark));
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  z-index: 0;
  box-shadow: 0 -20px 60px rgba(63,75,47,0.26);
}

.page {
  flex: 1;
  position: relative;
  z-index: 1;
  width: min(1040px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px) 0 120px;
}

.hero-card {
  width: min(760px, 100%);
  text-align: center;
  background: linear-gradient(180deg, rgba(255,250,240,0.95), var(--paper));
  border: 1px solid rgba(112, 74, 45, 0.14);
  border-radius: 38px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.logo-area {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 2.5vw, 20px);
}

.logo {
  width: min(390px, 82vw);
  height: auto;
  mix-blend-mode: multiply;
  border-radius: 10px;
}

.kicker {
  margin: 6px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--olive);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  font-weight: 700;
}

h1 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2.15rem, 5.8vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px auto 28px;
}

.separator span {
  width: min(140px, 26vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112,74,45,0.42), transparent);
}

.separator i {
  width: 17px;
  height: 17px;
  display: inline-block;
  background: var(--olive);
  border-radius: 100% 0 100% 0;
  transform: rotate(-45deg);
  position: relative;
}

.separator i::before,
.separator i::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--olive);
  border-radius: 100% 0 100% 0;
  top: 10px;
}

.separator i::before {
  left: -13px;
  transform: rotate(-24deg);
}

.separator i::after {
  right: -13px;
  transform: rotate(24deg);
}

.intro {
  margin: 0 auto 10px;
  max-width: 610px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.72;
}

.thanks {
  margin: 24px auto 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  color: var(--olive-dark);
  font-weight: 700;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(95,111,67,0.98);
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.28rem, 4vw, 1.92rem);
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(63,75,47,0.26);
  transition: transform 0.25s ease, background 0.25s ease;
}

.phone:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
}

.phone-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.17);
  font-size: 1.35rem;
}

small {
  display: block;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 24px 18px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,0.88);
  background: transparent;
}

.footer p { margin: 0; }

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  body { background-attachment: scroll; }
  .page { padding-bottom: 90px; }
  .hero-card { border-radius: 28px; }
  .logo { width: min(320px, 86vw); }
  .separator { margin: 20px auto 22px; }
}
