/* src/styles.css */
:root {
  --green-dark: #2a6b1f;
  --green-mid: #3a8a28;
  --green-bright: #5cb832;
  --green-light: #a8d97a;
  --gray-900: #1e1e1e;
  --gray-700: #3d3d3d;
  --gray-500: #757575;
  --gray-200: #e8e8e8;
  --white: #ffffff;
  --off-white: #f7f8f5;
  --section-pad: clamp(60px, 8vw, 110px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: .1s;
}
.reveal-delay-2 {
  transition-delay: .2s;
}
.reveal-delay-3 {
  transition-delay: .3s;
}
.reveal-delay-4 {
  transition-delay: .4s;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px clamp(24px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
  overflow: visible;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: clamp(24px, 5vw, 80px);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green-mid);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.nav-logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  padding: 6px 10px 14px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}
.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--gray-900);
  letter-spacing: .02em;
}
.nav-logo-text span {
  color: var(--green-mid);
}
.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-bright);
  transition: width .25s;
}
.nav-links a:hover {
  color: var(--green-dark);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--green-mid);
  color: white !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}
.nav-social-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  transition:
    color .2s,
    background .2s,
    border-color .2s,
    transform .2s;
}
.nav-social svg {
  width: 16px;
  height: 16px;
}
.nav-social:hover {
  color: white;
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
}
.nav-social::after {
  display: none !important;
}
section[id] {
  scroll-margin-top: 150px;
}
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 160px clamp(24px, 5vw, 80px) 60px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  background:
    radial-gradient(
      circle,
      rgba(90, 184, 50, .13) 0%,
      transparent 70%);
  border-radius: 50%;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background:
    radial-gradient(
      circle,
      rgba(42, 107, 31, .09) 0%,
      transparent 70%);
  border-radius: 50%;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 184, 50, .12);
  border: 1px solid rgba(92, 184, 50, .3);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
}
.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.18;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--green-mid);
}
.hero-text p {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green-mid);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .03em;
  transition:
    background .2s,
    transform .2s,
    box-shadow .2s;
  box-shadow: 0 4px 16px rgba(58, 138, 40, .3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 138, 40, .35);
}
.btn-outline {
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .03em;
  transition:
    background .2s,
    color .2s,
    transform .2s;
}
.btn-outline:hover {
  background: var(--green-mid);
  color: white;
  transform: translateY(-2px);
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 360px;
  height: 380px;
}
.hcard {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .09);
  border: 1px solid rgba(0, 0, 0, .06);
}
.hcard-main {
  width: 300px;
  top: 40px;
  left: 30px;
  animation: floatA 5s ease-in-out infinite;
}
.hcard-accent {
  width: 200px;
  bottom: 20px;
  right: 0;
  background: var(--green-mid);
  color: white;
  animation: floatB 5s ease-in-out infinite .8s;
}
@keyframes floatA {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatB {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.hcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(92, 184, 50, .15);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.hcard-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hcard h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.hcard p {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.hcard-accent h4,
.hcard-accent p {
  color: white;
}
.hcard-accent .hcard-icon {
  background: rgba(255, 255, 255, .2);
}
.hcard-accent .hcard-icon svg {
  stroke: white;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}
.hero-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.hero-stat-lbl {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 2px;
  line-height: 1.4;
}
.hero-academy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: white;
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 16px 8px 12px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background .2s, transform .2s;
  max-width: fit-content;
}
.hero-academy-pill:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}
.hero-academy-pill svg:first-child {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pill-arrow {
  width: 14px;
  height: 14px;
  opacity: .7;
  flex-shrink: 0;
}
#programs-strip {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
#programs-strip::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 480px;
  height: 480px;
  background:
    radial-gradient(
      circle,
      rgba(92, 184, 50, .07) 0%,
      transparent 70%);
  border-radius: 50%;
}
#programs-strip .section-label {
  color: var(--green-light);
}
#programs-strip .section-title {
  color: white;
}
#programs-strip .section-sub {
  color: rgba(255, 255, 255, .55);
  margin-bottom: 0;
}
.ps-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.ps-intro-text {
  max-width: 540px;
}
.ps-view-all {
  border-color: rgba(255, 255, 255, .4) !important;
  color: rgba(255, 255, 255, .85) !important;
  white-space: nowrap;
}
.ps-view-all:hover {
  background: rgba(255, 255, 255, .1) !important;
  color: white !important;
  border-color: rgba(255, 255, 255, .7) !important;
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ps-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition:
    background .2s,
    transform .25s,
    box-shadow .25s;
}
.ps-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--green-mid),
      var(--green-bright));
}
.ps-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}
.ps-card--highlight {
  border-color: rgba(92, 184, 50, .3);
  background: rgba(92, 184, 50, .07);
}
.ps-card--highlight::before {
  background:
    linear-gradient(
      90deg,
      var(--green-dark),
      var(--green-bright));
}
.ps-featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-bright);
  color: white;
  padding: 3px 9px;
  border-radius: 20px;
}
.ps-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(92, 184, 50, .15);
  padding: 3px 9px;
  border-radius: 5px;
  display: inline-block;
}
.ps-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
  line-height: 1.3;
}
.ps-card p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  flex: 1;
}
.ps-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.ps-badge {
  font-size: .7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
}
.ps-link {
  font-size: .87rem;
  font-weight: 600;
  color: var(--green-light);
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.ps-link:hover {
  color: var(--green-bright);
}
@media (max-width: 1000px) {
  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .ps-intro {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .ps-grid {
    grid-template-columns: 1fr;
  }
}
#normas {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background: white;
}
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}
.normas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.norma-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  background: white;
}
.norma-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
}
.norma-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--green-mid),
      var(--green-bright));
}
.norma-tag {
  display: inline-block;
  background: rgba(92, 184, 50, .1);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.norma-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 10px;
}
.norma-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.65;
}
#servicios {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background: var(--gray-900);
  color: white;
}
#servicios .section-title {
  color: white;
}
#servicios .section-sub {
  color: rgba(255, 255, 255, .55);
}
#servicios .section-label {
  color: var(--green-light);
}
.servicios-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.servicio-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.servicio-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s;
  border: 1px solid transparent;
}
.servicio-item.active,
.servicio-item:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(92, 184, 50, .3);
}
.servicio-item.active .si-num {
  color: var(--green-bright);
}
.si-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  line-height: 1;
  min-width: 36px;
  transition: color .2s;
}
.si-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}
.si-text p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}
.servicio-feature {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}
.sf-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(92, 184, 50, .2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.sf-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--green-bright);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.servicio-feature h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 14px;
}
.servicio-feature p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  margin-bottom: 22px;
}
.sf-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sf-tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: rgba(92, 184, 50, .15);
  color: var(--green-light);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(92, 184, 50, .25);
}
#proceso {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background: var(--off-white);
}
.proceso-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.proceso-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--green-mid),
      var(--green-bright));
}
.paso {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.paso-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--green-mid);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-mid);
  position: relative;
  z-index: 2;
  transition: background .25s, color .25s;
}
.paso:hover .paso-num {
  background: var(--green-mid);
  color: white;
}
.paso h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.paso p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.65;
}
#cta {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background:
    linear-gradient(
      135deg,
      var(--green-dark) 0%,
      var(--green-mid) 60%,
      var(--green-bright) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
#cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  line-height: 1.7;
}
#cta .btn-white {
  background: white;
  color: var(--green-dark);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  letter-spacing: .03em;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
#cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}
footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, .6);
  padding: 60px clamp(24px, 5vw, 80px) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.75;
  margin: 14px 0 20px;
  max-width: 260px;
}
.footer-brand .nav-logo-text {
  color: white;
  font-size: 1.4rem;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: background .2s;
}
.footer-social a:hover {
  background: var(--green-mid);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-col h5 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover {
  color: var(--green-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover {
  color: var(--green-light);
}
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .hero-visual {
    display: none;
  }
  .servicios-layout {
    grid-template-columns: 1fr;
  }
  .porque-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proceso-steps::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
#acerca {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background: var(--off-white);
}
.acerca-intro {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 64px;
}
.acerca-intro p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
}
.acerca-pv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 16px;
}
.acerca-pv-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s;
}
.acerca-pv-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}
.acerca-pv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(92, 184, 50, .12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.acerca-pv-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acerca-pv-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gray-900);
  font-weight: 600;
}
.acerca-pv-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.acerca-valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.acerca-valor {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.acerca-valor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--green-mid),
      var(--green-bright));
}
.acerca-valor:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}
.acerca-valor-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
  min-width: 36px;
}
.acerca-valor h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.acerca-valor p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.acerca-modelo {
  margin-top: var(--section-pad);
  background: var(--gray-900);
  border-radius: 20px;
  padding: 52px 48px;
  color: white;
}
.acerca-modelo-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.acerca-modelo h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.acerca-modelo > p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 40px;
}
.acerca-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.acerca-pilar {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(92, 184, 50, .25);
  border-radius: 14px;
  padding: 28px 24px;
}
.acerca-pilar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(92, 184, 50, .15);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.acerca-pilar-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-bright);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acerca-pilar h4 {
  font-size: .95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.acerca-pilar p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}
.acerca-propuesta {
  margin-top: 56px;
  text-align: center;
  padding: 52px 40px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}
.acerca-propuesta blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--gray-900);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}
.acerca-propuesta > p {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .acerca-pv-grid {
    grid-template-columns: 1fr;
  }
  .acerca-valores-grid {
    grid-template-columns: 1fr;
  }
  .acerca-pilares {
    grid-template-columns: 1fr;
  }
  .acerca-modelo {
    padding: 36px 24px;
  }
}
#academy {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  background: white;
}
.acad-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 72px;
}
.acad-reason {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--off-white);
  transition: border-color .2s, background .2s;
}
.acad-reason:hover {
  border-color: rgba(92, 184, 50, .4);
  background: rgba(92, 184, 50, .04);
}
.acad-reason-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(92, 184, 50, .12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.acad-reason-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acad-reason span {
  font-size: .87rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.35;
}
.acad-block-head {
  margin-bottom: 36px;
}
.acad-block-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.2;
}
.acad-courses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  align-items: start;
}
.acad-course {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  background: white;
  position: relative;
}
.acad-course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--green-mid),
      var(--green-bright));
  z-index: 1;
}
.acad-course:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
}
.acad-course--featured {
  box-shadow: 0 8px 28px rgba(42, 107, 31, .12);
  transform: scale(1.02);
  z-index: 1;
}
.acad-course--featured::before {
  background:
    linear-gradient(
      90deg,
      var(--green-dark),
      var(--green-mid));
}
.acad-course--featured:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 22px 52px rgba(42, 107, 31, .16);
}
.acad-course-body {
  padding: 32px 28px 22px;
  flex: 1;
}
.acad-course-tag {
  display: inline-block;
  background: rgba(92, 184, 50, .1);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 16px;
}
.acad-course h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}
.acad-course-sub {
  font-size: .92rem;
  color: var(--green-dark);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}
.acad-course-desc {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}
.acad-course-obj {
  background: rgba(92, 184, 50, .06);
  border-radius: 8px;
  padding: 12px 14px;
}
.acad-course-obj strong {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 6px;
}
.acad-course-obj p {
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.acad-course-learn {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-200);
  background: var(--off-white);
}
.acad-list-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.acad-course-learn ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.acad-course-learn li {
  font-size: .85rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.acad-course-learn li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-size: .8rem;
}
.acad-course-value {
  padding: 18px 28px;
  border-top: 1px solid var(--gray-200);
}
.acad-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.acad-tags span {
  font-size: .74rem;
  font-weight: 500;
  background: rgba(92, 184, 50, .08);
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(92, 184, 50, .18);
}
.acad-course-footer {
  padding: 0 28px 28px;
}
.acad-cta {
  display: block;
  text-align: center;
  background: var(--green-mid);
  color: white;
  padding: 12px 0;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .2s, transform .2s;
}
.acad-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.acad-metod {
  background: var(--gray-900);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 32px;
}
.acad-metod-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
}
.acad-metod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.acad-metod-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}
.acad-metod-item:last-child {
  border-right: none;
}
.acad-metod-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(92, 184, 50, .15);
  display: grid;
  place-items: center;
}
.acad-metod-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-bright);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acad-metod-item span {
  font-size: .83rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  line-height: 1.35;
}
.acad-cert {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
}
.acad-cert-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(92, 184, 50, .1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.acad-cert-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acad-cert-text {
  flex: 1;
}
.acad-cert-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.acad-cert-text p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .acad-reasons {
    grid-template-columns: 1fr 1fr;
  }
  .acad-courses {
    grid-template-columns: 1fr;
  }
  .acad-course--featured {
    transform: none;
  }
  .acad-course--featured:hover {
    transform: translateY(-5px);
  }
  .acad-metod-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .acad-metod-item {
    border-right: none;
    padding: 0 8px 16px;
  }
  .acad-cert {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .acad-reasons {
    grid-template-columns: 1fr;
  }
  .acad-metod {
    padding: 28px 20px;
  }
  .acad-metod-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
