@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
  --bg: #121816;
  --bg-deep: #0d1311;
  --bg-soft: #1a2421;
  --paper: #f2ebe0;
  --paper-soft: #e9dfd1;
  --ink: #1d2522;
  --ink-soft: #3a4742;
  --primary: #4f8577;
  --primary-strong: #3f6a5f;
  --secondary: #d18f61;
  --accent: #dcb677;
  --line: rgba(38, 59, 53, 0.18);
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--ink);
  line-height: 1.68;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(220, 182, 119, 0.11), transparent 34%),
    radial-gradient(circle at 86% 7%, rgba(79, 133, 119, 0.25), transparent 30%),
    linear-gradient(180deg, #111a17 0%, #17221f 38%, #131a18 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.23;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 8px),
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.03) 0 2px, transparent 2px 9px);
}

main {
  position: relative;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(225, 213, 194, 0.2);
  backdrop-filter: blur(10px);
  background: rgba(14, 21, 18, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(246, 236, 219, 0.32);
  background:
    radial-gradient(circle at 28% 30%, rgba(220, 182, 119, 0.95), rgba(209, 143, 97, 0.84) 45%, rgba(111, 73, 53, 0.92) 100%),
    linear-gradient(145deg, #c99867, #7e4f38);
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.logo-mark::before,
.logo-mark::after {
  content: '';
  position: absolute;
  background: rgba(255, 244, 230, 0.9);
  border-radius: 999px;
}

.logo-mark::before {
  width: 8px;
  height: 18px;
  left: 15px;
  top: 13px;
  transform: rotate(18deg);
}

.logo-mark::after {
  width: 8px;
  height: 18px;
  right: 15px;
  top: 13px;
  transform: rotate(-18deg);
}

.logo-text {
  display: grid;
  line-height: 1.05;
}

.logo-text strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: #f4ebdc;
  letter-spacing: 0.2px;
}

.logo-text small {
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 10px;
  color: #ceb694;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  font-weight: 700;
  color: #eadfcd;
  opacity: 0.88;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: 0.22s;
}

.menu a:hover,
.menu a.active {
  color: #fff4e2;
  opacity: 1;
  border-color: var(--accent);
}

.hero {
  padding: 82px 0 70px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  right: 4%;
  top: 0;
  width: 230px;
  height: 230px;
  border-radius: 52% 48% 63% 37% / 41% 53% 47% 59%;
  background: linear-gradient(135deg, rgba(209, 143, 97, 0.24), rgba(79, 133, 119, 0.3));
  z-index: -1;
  animation: floaty 7s ease-in-out infinite;
}

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

.badge {
  display: inline-block;
  background: rgba(244, 234, 220, 0.12);
  color: #f4dec0;
  border: 1px solid rgba(239, 215, 178, 0.32);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(37px, 5vw, 62px);
  margin-bottom: 16px;
  color: #fff2df;
  text-wrap: balance;
}

.hero p,
.section-text,
.muted,
.feature p,
.list li,
.panel-note,
.metric span,
.info p {
  color: #ccbfae;
}

.hero p {
  font-size: 18px;
  max-width: 590px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.22s;
}

.btn.primary {
  background: linear-gradient(135deg, #5d9f8e, #46766b);
  color: #f7f3eb;
  box-shadow: 0 10px 20px rgba(10, 24, 20, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn.secondary {
  border-color: rgba(232, 209, 177, 0.4);
  color: #f2e4ce;
  background: rgba(18, 27, 24, 0.3);
}

.btn.secondary:hover {
  border-color: rgba(232, 209, 177, 0.65);
  background: rgba(20, 31, 27, 0.62);
}

.hero-panel,
.card,
.feature,
.member,
.price-card,
.metric {
  background: linear-gradient(150deg, var(--paper) 0%, #e8dece 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  border-radius: 24px;
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: auto -55px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 133, 119, 0.25), transparent 65%);
}

.hero-panel img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.panel-note {
  margin-top: 14px;
  border: 1px solid rgba(43, 59, 53, 0.14);
  background: rgba(255, 253, 248, 0.7);
  border-radius: 12px;
  padding: 13px;
  color: #4b5752;
  font-size: 15px;
}

.section {
  padding: 74px 0;
  position: relative;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.06), rgba(231, 219, 203, 0.05));
}

.section-title {
  font-size: clamp(31px, 4vw, 46px);
  margin-bottom: 14px;
  color: #f8ead4;
}

.section-text {
  max-width: 730px;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  border-radius: 20px;
  padding: 22px;
  transition: 0.22s;
}

.feature:hover,
.card:hover,
.member:hover,
.price-card:hover {
  transform: translateY(-5px);
}

.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
  background: linear-gradient(145deg, #f7e7d1, #dfc7a8);
  color: #3e4c47;
  font-weight: 700;
}

.feature h3,
.card h3,
.member h3,
.price-card h3,
.info strong {
  color: #20312d;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  color: #4a5954;
  font-size: 15px;
}

.split,
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  border-radius: 22px;
  padding: 28px;
  transition: 0.22s;
}

.card h3 {
  font-size: 29px;
  margin-bottom: 12px;
}

.list {
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #465650;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--secondary);
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.member {
  border-radius: 22px;
  overflow: hidden;
  transition: 0.22s;
}

.member img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.member-content {
  padding: 20px;
}

.member h3 {
  font-size: 24px;
}

.role {
  display: block;
  color: #3e6a5f;
  font-weight: 800;
  margin: 8px 0 12px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  border-radius: 22px;
  padding: 26px;
  transition: 0.22s;
}

.price-card.highlight {
  background: linear-gradient(160deg, #f5ead8, #dcc7ab);
  border-color: rgba(95, 62, 46, 0.24);
}

.price {
  color: #27443d;
  font-size: 38px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 8px 0 14px;
}

.contact {
  grid-template-columns: 0.95fr 1.05fr;
}

.info p {
  margin-bottom: 10px;
  color: #4b5954;
}

.info strong {
  color: #1f302c;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(45, 63, 58, 0.22);
  background: rgba(255, 255, 255, 0.76);
  padding: 13px 14px;
  font: inherit;
  color: #2f3b37;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #8e7458;
  box-shadow: 0 0 0 3px rgba(220, 182, 119, 0.26);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 12px;
  padding: 13px;
  background: linear-gradient(135deg, #d39a6f, #bf734f);
  color: #fff8f1;
  font-weight: 800;
  transition: 0.22s;
}

button:hover {
  filter: brightness(1.05);
}

footer {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 232, 202, 0.2);
  padding: 26px 0;
  color: #c7b8a4;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: clamp(118px, 15vw, 166px);
  border-radius: 14px;
  overflow: hidden;
  display: block;
  box-shadow: 0 14px 28px rgba(14, 18, 16, 0.34);
  z-index: 1001;
  transition: transform 0.2s ease;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
}

.whatsapp-float-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34);
  z-index: 1001;
  transition: transform 0.2s ease;
}

.whatsapp-float-chat svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float-chat:hover {
  transform: translateY(-2px) scale(1.04);
}

.metrics {
  margin-top: -10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric {
  border-radius: 18px;
  padding: 18px;
}

.metric strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
  color: #233a34;
}

.metric span {
  color: #4f5d58;
  font-size: 14px;
}

.trust-band {
  border-top: 1px solid rgba(230, 217, 194, 0.22);
  border-bottom: 1px solid rgba(230, 217, 194, 0.22);
  background: linear-gradient(180deg, rgba(220, 182, 119, 0.14), rgba(209, 143, 97, 0.12));
}

.trust-list {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #e7d8c2;
  font-weight: 700;
  letter-spacing: 0.2px;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact,
  .features,
  .team,
  .price-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel img {
    height: 270px;
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 14px 0;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .logo-text strong {
    font-size: 28px;
  }

  .logo-text small {
    font-size: 9px;
    letter-spacing: 1.3px;
  }

  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 15px;
  }

  .trust-list {
    min-height: auto;
    padding: 14px 0;
    gap: 10px;
    font-size: 14px;
  }

  .whatsapp-float {
    left: 12px;
    bottom: 12px;
    width: 118px;
  }

  .whatsapp-float-chat {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }
}
