@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --green: #073f2b;
  --green2: #0c6f43;
  --gold: #d99a18;
  --gold2: #f3b436;
  --cream: #fbf6ed;
  --soft: #f5efe4;
  --ink: #10231b;
  --muted: #617066;
  --line: #e6d8bd;
  --shadow: 0 24px 70px rgba(10, 35, 24, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 0.95;
  margin: 0;
  color: var(--green);
}
p {
  line-height: 1.75;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, 90vw);
  margin: auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw;
  color: #fff;
  background: transparent;
  transition: 0.35s ease;
}
.site-header.scrolled {
  background: #314e52e0;
  backdrop-filter: blur(14px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
  padding: 13px 5vw;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 24px;
}
.brand strong {
  font-family: "Playfair Display";
  font-size: 31px;
  letter-spacing: 1px;
}
.brand small {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 800;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
}
.nav a {
  font-size: 14px;
}
.nav a:hover {
  color: var(--gold2);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  padding: 15px 21px;
  border-radius: 8px;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(217, 154, 24, 0.28);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 32px;
}

.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 37, 25, 0.78),
    rgba(0, 0, 0, 0.36),
    rgba(217, 154, 24, 0.25)
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  width: min(1000px, 90vw);
  padding-top: 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #c88600;
  font-size: 12px;
  font-weight: 900;
}
.pill {
  display: inline-block;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  padding: 10px 90px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 86px);
  color: #fff;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
}
.hero-text {
  font-size: 20px;
  max-width: 680px;
  margin: 32px auto;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 17px 26px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}
.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
}
.btn.green {
  /* background: var(--green); */
  background: #4abe94;
  color: #fff;
}
.btn.ghost {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}
.dots {
  margin-top: 26px;
}
.dots button {
  width: 10px;
  height: 10px;
  border-radius: 30px;
  border: 0;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.5);
}
.dots button.active {
  width: 36px;
  background: var(--gold);
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 30px;
  padding: 15px 12px;
}

.section {
  padding: 105px 0;
}
.soft {
  background: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.section h2 {
  font-size: 42px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 35px;
}
.text-link {
  color: var(--green);
  font-weight: 900;
}
.prose {
  font-size: 17px;
}
.service-slider {
  position: relative;
}
.cards-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 28px;
  scrollbar-width: thin;
}
.service-card {
  min-width: 315px;
  scroll-snap-align: start;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-card span {
  font-size: 28px;
}
.service-card h3 {
  font-size: 22px;
  margin: 18px 0 8px;
}
.service-card a {
  font-weight: 900;
  color: var(--green);
}
.slide-btn {
  position: absolute;
  top: 40%;
  z-index: 2;
  border: 0;
  background: var(--green);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
}
.slide-btn.prev {
  left: -20px;
}
.slide-btn.next {
  right: -20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  background: #0f8f76;
  color: #fff;
  text-align: center;
  padding: 42px 8vw;
}
.stats strong {
  display: block;
  color: var(--gold2);
  font-size: clamp(24px, 2.2vw, 32px);
  font-family: "Playfair Display";
  line-height: 1.05;
}
.stats span {
  display: block;
  max-width: 240px;
  margin: 10px auto 0;
  font-size: 13px;
  line-height: 1.45;
}

.academy {
  display: grid;
  grid-template-columns: 31% 69%;
  gap: 40px;
  padding: 100px 5vw;
  background: #fff;
}
.academy-left {
  position: sticky;
  top: 110px;
  align-self: start;
}
.academy-left h2 {
  font-size: clamp(52px, 5.4vw, 88px);
}
.title-line {
  width: 70px;
  height: 4px;
  background: var(--gold);
  margin: 28px 0;
}
.academy-left p {
  font-size: 18px;
}
.mini-proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
}
.avatar {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #eee;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  margin-left: -8px;
}
.mini-proof b {
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  padding: 13px;
  margin: 0 15px;
}
.mini-proof small {
  color: var(--muted);
  font-weight: 700;
}
.academy-right {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.path-row {
  margin-bottom: 44px;
}
.path-title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.path-title:after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.path-title span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.green-dot span {
  background: var(--green);
}
.gold-dot span {
  background: var(--gold);
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.training-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
  min-height: 190px;
  position: relative;
  transition: 0.3s;
}
.training-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.training-card .ico {
  float: left;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f1f4e9;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-right: 18px;
}
.training-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.training-card p {
  margin: 0 0 18px;
}
.training-card small {
  color: #b97800;
  font-weight: 900;
}
.training-card a {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9eddd;
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
  overflow: hidden;
  text-indent: -999px;
}
.training-card a::after {
  content: "→";
  text-indent: 0;
  position: inherit;
}
.certification {
  display: grid;
  grid-template-columns: 160px 1fr 1.2fr 1.1fr auto;
  align-items: center;
  gap: 28px;
  /* background: linear-gradient(135deg, #003d2b, #0a7544); */
  background: linear-gradient(135deg, #795e3c, #b68c5a);
  color: #fff;
  border-radius: 14px;
  padding: 26px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.certification h3 {
  font-size: 34px;
  color: #fff;
}
.certification p {
  margin: 0;
}
.certification ul {
  margin: 0;
  padding-left: 18px;
  line-height: 2;
}
.cert-badge {
  width: 130px;
  height: 105px;
  border: 2px solid var(--gold);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 35px;
}
.cert-badge span {
  font-size: 13px;
  font-weight: 900;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e6e5dc;
  border-radius: 14px;
  overflow: hidden;
}
.benefits div {
  background: #fafaf5;
  padding: 24px;
  display: grid;
  gap: 8px;
}
.benefits span {
  font-size: 28px;
}
.benefits b {
  color: var(--green);
}
.benefits small {
  color: #526056;
}

.values {
  background: #faf7ef;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-grid div {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px;
}
.value-grid span {
  font-size: 32px;
}
.value-grid h3 {
  font-size: 24px;
  margin-top: 14px;
}

.map-section {
  height: 78vh;
  min-height: 560px;
  position: relative;
}
.map-section #map {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.map-tabs {
  position: absolute;
  top: 34px;
  left: 5vw;
  z-index: 3;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow);
}
.map-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  background: transparent;
  color: var(--green);
  cursor: pointer;
}
.map-tabs button.active {
  background: var(--gold);
  color: #fff;
}
.map-card {
  position: absolute;
  z-index: 3;
  right: 7vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(390px, 82vw);
  background: rgb(217 154 24);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.map-card h2 {
  color: #fff;
  font-size: 42px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 100px 12vw;
  background: radial-gradient(circle at 40% 20%, #477b82, #314e52 70%);
  color: #fff;
}
.contact h2 {
  color: #fff;
  font-size: 58px;
}
.contact p {
  color: rgba(255, 255, 255, 0.9);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.contact-cards div,
.contact-form {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 20px;
}
.contact-cards b {
  display: block;
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.contact-cards span {
  display: block;
  margin-top: 8px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.contact-form textarea {
  min-height: 130px;
}
.hp {
  display: none;
}
.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 26px;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  z-index: 80;
  box-shadow: var(--shadow);
}
.back-top {
  position: fixed;
  right: 28px;
  bottom: 30px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
  z-index: 80;
  cursor: pointer;
}
/* #314E52 */
footer {
  background: #152628;
  color: #fff;
  text-align: center;
  padding: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--green);
    display: none;
    flex-direction: column;
    padding: 30px;
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .academy {
    grid-template-columns: 1fr;
  }
  .academy-left {
    position: relative;
    top: auto;
  }
  .academy-right {
    border-left: 0;
    padding-left: 0;
  }
  .training-grid {
    grid-template-columns: 1fr 1fr;
  }
  .certification {
    grid-template-columns: 1fr 1fr;
  }
  .benefits,
  .stats,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }
  .brand small {
    display: none;
  }
  .brand strong {
    font-size: 24px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .pill {
    padding: 10px 24px;
  }
  .academy {
    padding: 70px 22px;
  }
  .academy-left h2 {
    font-size: 52px;
  }
  .training-grid,
  .benefits,
  .stats,
  .value-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .certification {
    grid-template-columns: 1fr;
  }
  .contact {
    padding: 70px 22px;
  }
  .contact h2 {
    font-size: 44px;
  }
  .map-card {
    right: 5vw;
    top: auto;
    bottom: 30px;
    transform: none;
  }
}
