:root {
  --green-950: #173b37;
  --green-900: #214a45;
  --green-800: #315d57;
  --green-700: #47756d;
  --green-300: #aacbbf;
  --green-200: #cee2db;
  --green-100: #eaf3f0;
  --cream: #f8f5ee;
  --sand: #e8dcc8;
  --gold: #d5a96f;
  --ink: #1d2927;
  --muted: #65726f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 75, 69, .12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--white);
  color: var(--green-950);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(248, 245, 238, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(33, 74, 69, .08);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 260px; }
.brand-mark {
  width: 48px; height: 48px; flex: 0 0 48px;
  display: grid; place-items: center;
  color: var(--green-800);
  border: 1px solid rgba(49, 93, 87, .16);
  background: rgba(255,255,255,.68);
  border-radius: 15px;
}
.brand-mark svg { width: 34px; height: 34px; }
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.04rem; letter-spacing: -.01em; }
.brand small { display: block; color: var(--muted); font-size: .72rem; margin-top: 1px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .94rem; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: var(--green-800); transition: right .2s ease;
}
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--green-800); color: var(--white); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: var(--white); border-radius: 14px; padding: 12px; box-shadow: 0 10px 25px rgba(33,74,69,.12); }
.menu-toggle span { display: block; height: 2px; background: var(--green-950); margin: 5px 0; transition: .2s ease; }

.hero { min-height: 830px; display: flex; align-items: center; padding-top: 150px; overflow: hidden; background: linear-gradient(135deg, #f8f5ee 0%, #f1f3ec 55%, #e2eee9 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green-800); font-size: .78rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .audience-copy h2, .company-copy h2, .contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(3.3rem, 6vw, 6.15rem); max-width: 750px; margin: 22px 0 26px; }
.hero h1 span { color: var(--green-700); font-style: italic; }
.hero-lead { max-width: 620px; margin: 0; font-size: 1.25rem; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 760; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-800); color: var(--white); box-shadow: 0 14px 30px rgba(49, 93, 87, .2); }
.btn-primary:hover { background: var(--green-900); box-shadow: 0 18px 36px rgba(49, 93, 87, .25); }
.btn-secondary { border-color: rgba(49, 93, 87, .24); color: var(--green-900); background: rgba(255,255,255,.34); }
.btn-light { background: var(--white); color: var(--green-900); }
.btn-block { width: 100%; border: 0; }
.hero-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(49,93,87,.16); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.13rem; }
.hero-facts span { margin-top: 4px; font-size: .88rem; color: var(--muted); }
.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.visual-card { background: rgba(255,255,255,.74); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow); }
.visual-card-main { width: min(100%, 480px); min-height: 520px; padding: 38px; border-radius: 42px; transform: rotate(2deg); }
.visual-kicker { font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); }
.visual-card-main h2 { font-family: Georgia, "Times New Roman", serif; font-size: 2.15rem; line-height: 1.1; font-weight: 500; margin: 18px 0 0; }
.mind-graphic { margin: 18px auto 0; width: 92%; }
.visual-card-small { position: absolute; display: flex; align-items: center; gap: 11px; padding: 16px 20px; border-radius: 18px; font-weight: 750; }
.visual-card-small p { margin: 0; }
.mini-icon { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-800); }
.top-card { right: -16px; top: 85px; }
.bottom-card { left: -18px; bottom: 70px; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .58; }
.hero-shape-one { width: 420px; height: 420px; right: -150px; top: -120px; background: rgba(170,203,191,.48); }
.hero-shape-two { width: 310px; height: 310px; left: -170px; bottom: -100px; background: rgba(213,169,111,.18); }

.intro-strip { background: var(--white); border-top: 1px solid rgba(49,93,87,.08); border-bottom: 1px solid rgba(49,93,87,.08); }
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.strip-grid > div { padding: 28px 28px; border-right: 1px solid rgba(49,93,87,.1); }
.strip-grid > div:first-child { padding-left: 0; }
.strip-grid > div:last-child { border-right: 0; }
.strip-grid span, .strip-grid strong { display: block; }
.strip-grid span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.strip-grid strong { margin-top: 6px; font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 500; }

.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading h2, .audience-copy h2, .contact-copy h2 { font-size: clamp(2.5rem, 4vw, 4.25rem); margin: 18px 0 18px; }
.section-heading p, .audience-copy p, .contact-copy > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 310px; padding: 34px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(49,93,87,.09); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: -70px; bottom: -80px; background: var(--green-100); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.2); }
.service-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; background: var(--green-100); color: var(--green-800); }
.service-icon svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; z-index: 1; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; line-height: 1.2; margin: 28px 0 14px; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }

.audience-section { background: var(--green-100); overflow: hidden; }
.audience-section::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(49,93,87,.12); border-radius: 50%; right: -170px; top: -170px; }
.audience-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.audience-copy { max-width: 480px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; font-weight: 800; color: var(--green-800); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(6px); }
.audience-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.audience-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-md); transition: transform .2s ease, background .2s ease; }
.audience-card:last-child { grid-column: span 2; }
.audience-card:hover { transform: translateY(-5px); background: var(--white); }
.audience-card span { color: var(--green-700); font-size: .75rem; letter-spacing: .13em; font-weight: 800; }
.audience-card h3 { margin: 20px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }

.workshop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.workshop-card { min-height: 245px; padding: 30px; border: 1px solid rgba(49,93,87,.12); border-radius: var(--radius-lg); background: transparent; transition: transform .2s ease, background .2s ease; }
.workshop-card:hover { transform: translateY(-5px); background: var(--white); }
.workshop-featured { background: var(--green-800); color: var(--white); border-color: var(--green-800); }
.workshop-featured:hover { background: var(--green-900); }
.workshop-number { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-weight: 850; }
.workshop-featured .workshop-number { background: rgba(255,255,255,.15); color: var(--white); }
.workshop-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 500; margin: 52px 0 10px; }
.workshop-card p { margin: 0; color: var(--muted); }
.workshop-featured p { color: rgba(255,255,255,.78); }

.company-section { padding-top: 30px; }
.company-card { min-height: 480px; position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--green-950), var(--green-700)); color: var(--white); border-radius: 34px; }
.company-copy { padding: 70px; position: relative; z-index: 2; }
.eyebrow-light { color: var(--green-200); }
.company-copy h2 { font-size: clamp(4rem, 8vw, 7rem); margin: 16px 0 14px; }
.company-copy p { max-width: 530px; color: rgba(255,255,255,.78); font-size: 1.1rem; margin: 0 0 30px; }
.company-visual { align-self: stretch; display: grid; place-items: center; background: rgba(255,255,255,.04); }
.company-visual svg { width: 88%; }

.contact-section { padding-bottom: 120px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-list { margin-top: 42px; display: grid; gap: 16px; }
.contact-list > a, .contact-list > div { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(49,93,87,.12); }
.contact-symbol { width: 47px; height: 47px; flex: 0 0 47px; display: grid; place-items: center; border-radius: 14px; background: var(--green-100); color: var(--green-800); font-weight: 900; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--muted); }
.contact-list strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; font-weight: 500; }
.contact-form { padding: 36px; background: var(--white); border-radius: var(--radius-xl); border: 1px solid rgba(49,93,87,.09); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 24px; }
.form-heading h3 { margin: 0 0 6px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; }
.form-heading p { margin: 0; color: var(--muted); }
.contact-form label { display: grid; gap: 8px; margin-top: 18px; font-size: .88rem; font-weight: 780; color: var(--green-950); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(49,93,87,.2); background: #fbfcfa; color: var(--ink); border-radius: 13px; padding: 14px 15px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(71,117,109,.11); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { margin-top: 24px; }
.form-note { min-height: 24px; margin: 12px 0 0; color: var(--green-700); font-size: .86rem; text-align: center; }

.site-footer { background: var(--green-950); color: var(--white); padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .7fr; gap: 50px; align-items: start; }
.footer-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; font-weight: 500; }
.footer-grid p { margin: 8px 0 0; color: rgba(255,255,255,.65); }
.footer-grid > div:nth-child(2), .footer-links { display: grid; gap: 9px; color: rgba(255,255,255,.68); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .83rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 14px 30px rgba(16, 103, 52, .3); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 31px; fill: white; }
.back-to-top { position: fixed; right: 29px; bottom: 92px; z-index: 890; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--white); color: var(--green-900); box-shadow: 0 12px 26px rgba(33,74,69,.17); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 1; transform: none; }

/* El contenido siempre permanece visible. Las animaciones son decorativas y no dependen de JavaScript. */
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: reveal-up .65s ease both; }
  @keyframes reveal-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1040px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .hero-grid, .audience-grid, .contact-grid { gap: 45px; }
  .hero { min-height: auto; }
  .visual-card-main { max-width: 430px; }
  .strip-grid { grid-template-columns: repeat(2,1fr); }
  .strip-grid > div:nth-child(2) { border-right: 0; }
  .strip-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(49,93,87,.1); }
  .strip-grid > div:nth-child(3) { padding-left: 0; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 680px); }
  .section { padding: 82px 0; }
  .site-header { padding: 10px 0; }
  .brand { min-width: auto; }
  .brand small { display: none; }
  .main-nav {
    position: fixed; inset: 76px 14px auto; display: grid; gap: 5px; padding: 16px;
    background: rgba(248,245,238,.98); border: 1px solid rgba(49,93,87,.1); border-radius: 20px;
    box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.nav-cta) { display: block; padding: 12px 10px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .menu-toggle { display: block; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 128px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.1rem, 12vw, 5rem); }
  .hero-visual { min-height: 500px; }
  .hero-facts { max-width: 600px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .audience-grid, .contact-grid { grid-template-columns: 1fr; }
  .audience-copy { max-width: none; }
  .workshop-grid { grid-template-columns: 1fr; }
  .company-card { grid-template-columns: 1fr; }
  .company-copy { padding: 54px 34px 20px; }
  .company-visual { min-height: 260px; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); }
  .section { padding: 70px 0; }
  .brand-mark { width: 43px; height: 43px; flex-basis: 43px; border-radius: 13px; }
  .brand strong { font-size: .9rem; max-width: 190px; line-height: 1.15; }
  .hero { padding-top: 115px; }
  .hero h1 { margin-top: 17px; }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 15px; }
  .hero-visual { min-height: 420px; }
  .visual-card-main { min-height: 400px; padding: 28px 24px; border-radius: 30px; }
  .visual-card-main h2 { font-size: 1.75rem; }
  .top-card { right: -6px; top: 52px; }
  .bottom-card { left: -4px; bottom: 35px; }
  .visual-card-small { padding: 12px 14px; font-size: .85rem; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid > div { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(49,93,87,.1); }
  .strip-grid > div:last-child { border-bottom: 0; }
  .section-heading { margin-bottom: 35px; }
  .service-card, .workshop-card { padding: 26px; }
  .audience-cards { grid-template-columns: 1fr; }
  .audience-card:last-child { grid-column: auto; }
  .company-card { border-radius: 24px; }
  .company-copy { padding: 42px 24px 14px; }
  .company-copy h2 { font-size: 4rem; }
  .contact-form { padding: 25px 20px; border-radius: 22px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .back-to-top { right: 21px; bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
