:root {
  --bg: #e7f2e3;
  --text: #0f1a12;
  --muted: rgba(15, 26, 18, 0.75);
  --darkbar: #21372c;
  --underline: #2f6b3f;
  --ratingGreen: #2fa55a;
  --stroke: rgba(33, 55, 44, 0.18);
  --soft: rgba(255, 255, 255, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-synthesis: none;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.amg-title,
.amg-h2,
.amg-finalTitle,
.amg-infoTitle {
  font-family: "DM Serif Display", Georgia, serif;
  font-synthesis: none;
}

.amg-kicker {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

/* NAV */
.amg-header {
  padding: 20px 0;
}

.amg-navbar {
  min-height: 72px;
}

.amg-brand {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 26, 18, 0.9);
  font-size: 14px;
}

.amg-nav-links .nav-link {
  font-weight: 700;
  font-size: 13px;
  color: rgba(15, 26, 18, 0.82);
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.amg-nav-links .nav-link:hover,
.amg-nav-links .nav-link.active {
  background: rgba(47, 107, 63, 0.1);
  color: rgba(15, 26, 18, 0.95);
}

.amg-top-actions {
  min-width: 290px;
  justify-content: flex-end;
}

.amg-lang-btn {
  min-width: 150px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  padding: 11px 14px;
}

.amg-lang-menu {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 8px;
}

.amg-lang-menu .dropdown-item {
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
}

.amg-lang-menu .dropdown-item.active {
  background: rgba(33, 55, 44, 0.1);
  color: var(--text);
}

.amg-contact-btn,
.amg-btn {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  font-size: 13px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.amg-contact-btn {
  background: var(--darkbar);
  color: #fff;
}

.amg-contact-btn:hover {
  background: #1a2d24;
  color: #fff;
}

.amg-toggler {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
}

/* HERO */
.amg-pageHero {
  padding: 30px 0 70px;
}

.amg-title {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.04;
  margin: 0 0 16px;
  max-width: 13ch;
}

.amg-desc,
.amg-p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 14px;
}

.amg-heroMedia {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 26, 18, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.amg-photo {
  position: relative;
}

.amg-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.amg-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(
    to bottom,
    rgba(231, 242, 227, 0) 0%,
    rgba(33, 55, 44, 0.3) 55%,
    rgba(33, 55, 44, 1) 100%
  );
  pointer-events: none;
}

.amg-bar {
  background: var(--darkbar);
  color: #fff;
  min-height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 18px;
  font-weight: 900;
}

.amg-score {
  color: var(--ratingGreen);
}

.amg-heroMiniStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.amg-miniStat {
  border: 1px solid rgba(15, 26, 18, 0.1);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.amg-miniStat strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.amg-miniStat span {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* BUTTONS */
.amg-btn--primary {
  background: var(--darkbar);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.amg-btn--primary:hover {
  background: #1b2e25;
  color: #fff;
}

.amg-btn--secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  border: 1px solid rgba(15, 26, 18, 0.12);
}

.amg-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

/* SHARED */
.amg-sectionHead {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 16px;
}

.amg-h2--left,
.amg-p--left {
  text-align: left;
}

/* CONTACT MAIN */
.amg-contactMain {
  padding: 20px 0 70px;
}

.amg-contactInfo {
  display: grid;
  gap: 16px;
  height: 100%;
}

.amg-infoCard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-radius: 24px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 26, 18, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.amg-infoIcon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(47, 107, 63, 0.12);
  font-size: 24px;
  flex: 0 0 52px;
}

.amg-infoTitle {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.amg-infoText,
.amg-infoLink {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.amg-infoLink:hover {
  color: var(--text);
  text-decoration: underline;
}

.amg-formCard {
  height: 100%;
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 26, 18, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.amg-formLabel {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 26, 18, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.amg-formInput {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(33, 55, 44, 0.18);
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 14px;
  font-weight: 600;
  font-size: 13px;
  outline: none;
  box-shadow: none;
}

.amg-formInput:focus {
  border-color: rgba(47, 107, 63, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 107, 63, 0.12);
}

.amg-formTextarea {
  min-height: 150px;
  resize: vertical;
}

/* MAP + ABOUT */
.amg-mapSection {
  padding: 10px 0 70px;
}

.amg-mapCard,
.amg-aboutContact {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 26, 18, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.amg-mapCard iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.amg-aboutContact {
  padding: 24px;
}

.amg-aboutBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.amg-badgeBox {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 107, 63, 0.1);
  border: 1px solid rgba(47, 107, 63, 0.12);
  font-weight: 800;
  font-size: 12px;
}

/* FAQ */
.amg-faq {
  padding: 20px 0 70px;
}

.amg-accordion {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.amg-faqItem {
  border-radius: 20px;
  border: 1px solid rgba(15, 26, 18, 0.1);
  background: rgba(255, 255, 255, 0.72);
  padding: 6px 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.amg-faqQ {
  cursor: pointer;
  font-weight: 900;
  padding: 12px 10px;
  list-style: none;
}

.amg-faqQ::-webkit-details-marker {
  display: none;
}

.amg-faqA {
  padding: 0 10px 14px;
  color: rgba(15, 26, 18, 0.75);
  line-height: 1.8;
  font-size: 13.5px;
}

.amg-centerCta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* FINAL CTA */
.amg-finalCta {
  padding: 10px 0 80px;
}

.amg-finalBox {
  border-radius: 28px;
  border: 1px solid rgba(15, 26, 18, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    rgba(231, 242, 227, 0.65)
  );
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.amg-finalKicker {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.amg-finalTitle {
  margin: 0 0 8px;
  line-height: 1.12;
  font-size: clamp(20px, 2.2vw, 30px);
  max-width: 40ch;
}

.amg-finalText {
  margin: 0;
  color: rgba(15, 26, 18, 0.72);
  font-size: 13.5px;
}

.amg-finalBtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* FOOTER */
.amg-footer {
  background: var(--darkbar);
  color: rgba(255, 255, 255, 0.92);
  padding: 54px 0 26px;
}

.amg-footerLogo {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.amg-footerText {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 13.5px;
}

.amg-footerHead {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.amg-footerLink {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 13px;
}

.amg-footerLink:hover {
  color: #fff;
  text-decoration: underline;
}

.amg-footerMini {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.amg-footerBottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* WHATSAPP */
.wa-pulse {
  animation: waPulse 1.9s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 9999;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
}

.wa-float__icon {
  font-size: 26px;
  line-height: 1;
}

/* REVEAL */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}

.js .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .amg-top-actions {
    min-width: 100%;
    margin-top: 16px;
    justify-content: flex-start;
  }

  .amg-title,
  .amg-h2 {
    max-width: none;
  }

  .amg-photo img {
    height: 360px;
  }

  .amg-finalBox {
    flex-direction: column;
    align-items: flex-start;
  }

  .amg-heroMiniStats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .amg-btn,
  .amg-contact-btn {
    width: 100%;
  }

  .amg-finalBtns {
    width: 100%;
  }

  .amg-finalBtns .amg-btn {
    width: 100%;
  }

  .amg-formCard {
    padding: 18px;
  }

  .amg-infoTitle {
    font-size: 22px;
  }
}
