*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; }
@font-face {
  font-family: 'Parkinsans';
  src: url('../asset/fonts/Parkinsans-VariableFont_wght.ttf') format('truetype-variations'),
       url('../asset/fonts/Parkinsans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --purple:      #8B3A6B;
  --purple-dark: #6B2A52;
  --purple-light:#f5eaf1;
  --orange:      #E8875A;
  --orange-dark: #d4703f;
  --orange-light:#fdf0e9;
  --white:       #ffffff;
  --off-white:   #fafafa;
  --light-gray:  #f4f4f4;
  --mid-gray:    #9a9a9a;
  --text:        #1e1e1e;
  --text-soft:   #555;
  --border:      rgba(139,58,107,0.12);
  --shadow:      0 8px 32px rgba(0,0,0,0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Parkinsans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.09); }
.nav-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: .1rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: .45rem .8rem;
  font-size: .76rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--purple); }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: .42rem 1rem !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  overflow: hidden; padding: .4rem 0;
}
.nav-links > li:hover .dropdown { display: block; animation: fadeDown .18s ease; }
.dropdown a {
  display: block; padding: .6rem 1.2rem;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .04em;
  color: var(--text-soft); text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--purple-light); color: var(--purple); }
@keyframes fadeDown { from { opacity:0;transform:translateY(-8px);} to {opacity:1;transform:translateY(0);} }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: .75rem 2rem;
  font-family: 'Parkinsans', sans-serif;
  font-size: .82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 8px; text-decoration: none; border: none; cursor: pointer;
  transition: all .25s;
}
.btn-primary { background: var(--white); color: var(--purple); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,135,90,.35); color: #fff; }
.btn-secondary { background: var(--purple); color: #fff; }
.btn-secondary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,58,107,.3); }
.btn-outline { border: 2px solid var(--purple); color: var(--purple); background: transparent; }
.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ── SECTIONS ── */
section { padding: 96px 2rem; }
.container { max-width: 1100px; margin: auto; }
.section-label {
  font-size: .71rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700; color: 
  var(--text); line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--purple); }
.divider { width: 44px; height: 3px; background: var(--orange); margin-bottom: 2.5rem; border-radius: 2px; }
.text-center { text-align: center; }
.text-center .divider { margin-left: auto; margin-right: auto; }



/* ── PAGE HERO — oscura, contenido centrado y apilado ── */
.page-hero {
  position: relative;
  padding: 150px 2rem 100px;
  background: radial-gradient(ellipse 120% 100% at 50% 0%, #3a1830 0%, var(--purple-dark) 45%, #1c0d18 100%);
  overflow: hidden;
}

/* Fondo con formas decorativas SVG inline via background */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 95% 10%, rgba(232,135,90,.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5%  90%, rgba(255,255,255,.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Círculo grande decorativo derecha */
.page-hero::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,135,90,.18) 0%, rgba(139,58,107,.1) 50%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.6rem;
}

.page-hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.page-hero-content p { margin-left: auto; margin-right: auto; }

/* Badge superior */
.page-hero .section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.page-hero .section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.page-hero h1 span { color: var(--orange); }

.page-hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 0;
  line-height: 1.75;
}

/* Breadcrumb pills */
.hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.hero-pill {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid;
}
.hero-pill-purple { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.hero-pill-orange { color: #fff; border-color: rgba(232,135,90,.5); background: rgba(232,135,90,.22); }

/* Panel decorativo debajo del hero, ahora apilado y centrado */
.page-hero-deco {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-deco-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(139,58,107,.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.08), 0 2px 8px rgba(139,58,107,.06);
  padding: 2.8rem 2.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
}
.hero-deco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}
.hero-deco-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 2.2rem;
}
.hero-deco-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: .5rem;
}
.hero-deco-card p {
  font-size: .88rem; color: var(--text-soft); margin: 0;
}
.hero-deco-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-top: 1.4rem;
}
.hero-deco-tag {
  padding: .28rem .75rem;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 14px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .06em;
}
.hero-deco-tag.orange {
  background: var(--orange-light);
  color: var(--orange-dark);
}

/* líneas decorativas flotantes */
.hero-line {
  position: absolute;
  border-radius: 2px;
  opacity: .35;
  pointer-events: none;
  z-index: 1;
}
.hero-line-1 {
  width: 140px; height: 3px;
  background: var(--orange);
  bottom: 80px; left: 5%;
  transform: rotate(-12deg);
}
.hero-line-2 {
  width: 80px; height: 3px;
  background: var(--purple);
  bottom: 110px; left: 8%;
  transform: rotate(-12deg);
}
.hero-line-3 {
  width: 60px; height: 60px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  top: 30%; right: 3%;
  opacity: .12;
}
.hero-line-4 {
  width: 30px; height: 30px;
  border: 3px solid var(--purple);
  border-radius: 50%;
  top: 25%; right: 6%;
  opacity: .15;
}

@media (max-width: 860px) {
  .page-hero h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
  .hero-deco-card { padding: 2rem 1.6rem; }
}


/* ── CARDS ── */
.card {
  background: var(--white); border-radius: 16px;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.3rem;
  background: var(--purple-light);
}
.card h3 { font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: .7rem; }
.card p { font-size: .93rem; color: var(--text-soft); }
.card-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: .6rem;
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }

/* ── ALIANZAS: bloque vertical (texto arriba, visual abajo) ── */
.alianza-block { display: flex; flex-direction: column; gap: 2.5rem; }
.alianza-block .alianza-visual {
  width: 100%; max-width: 460px; margin: 0 auto;
  aspect-ratio: 16/9;
}

/* ── PARTNERS TICKER ── */
.ticker-wrap { overflow: hidden; position: relative; margin-top: 3rem; }
.ticker-wrap::before,
.ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--light-gray), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--light-gray), transparent); }
.ticker {
  display: flex; gap: 2rem; align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker:hover { animation-play-state: paused; }
.ticker-item {
  font-size: .85rem; font-weight: 500; color: var(--mid-gray);
  white-space: nowrap; padding: .6rem 1.4rem;
  border: 1.5px solid var(--border); border-radius: 30px;
  background: var(--white); cursor: default;
  transition: color .2s, border-color .2s;
}

.imgCarrusel{
    width: 200px;
    height: auto;
}
.ticker-item:hover { color: var(--purple); border-color: var(--purple); }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-family: 'Parkinsans', sans-serif; font-size: .95rem;
  background: var(--off-white); color: var(--text);
  transition: border-color .2s, background .2s; outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); background: var(--white); }
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-msg { font-size: .88rem; color: var(--orange); margin-top: .4rem; display: none; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; animation: fadeIn .2s; }
.modal {
  background: var(--white); border-radius: 20px;
  max-width: 680px; width: 100%; max-height: 82vh;
  overflow-y: auto; padding: 3rem;
  box-shadow: 0 40px 100px rgba(0,0,0,.25);
  animation: slideUp .3s ease;
}
.modal h2 { font-size: 1.8rem; font-weight: 700; color: var(--purple); margin-bottom: 1.5rem; }
.modal h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 1.6rem 0 .5rem; }
.modal p { font-size: .91rem; color: var(--text-soft); margin-bottom: .7rem; }
.modal a { color: var(--purple); }
.modal-close {
  float: right; cursor: pointer; font-size: 1.3rem; color: var(--mid-gray);
  background: none; border: none; padding: 0; line-height: 1; transition: color .2s;
}
.modal-close:hover { color: var(--text); }
@keyframes slideUp { from{transform:translateY(20px);opacity:0;} to{transform:translateY(0);opacity:1;} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* ── FOOTER ── */
footer { background: #1a1a1a; color: rgba(255,255,255,.6); padding: 5rem 2rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo-text {
  font-size: 1.6rem; font-weight: 700; color: var(--white);
  display: block; margin-bottom: 1rem;
}
.footer-logo-text span { color: var(--orange); }
.footer-brand p { font-size: .88rem; line-height: 1.8; max-width: 260px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1100px; margin: auto;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-2-split, .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  

}
@media (max-width: 640px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem; gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: .65rem 0; font-size: .85rem; }
  .dropdown { position: static; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 1rem; background: transparent; }
  .nav-links > li:hover .dropdown { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 64px 1.5rem; }
  
}


#hero {
  min-height: 100vh;
  display: flex; 
  align-items: center; 
  justify-content: center;
  text-align: center;
  padding: 140px 2rem 100px;
  background: linear-gradient(150deg, #fdf6fa 0%, var(--off-white) 45%, #fef8f4 100%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 78% 18%, rgba(139,58,107,.14) 0%, transparent 55%),
              radial-gradient(ellipse 55% 45% at 15% 82%, rgba(232,135,90,.14) 0%, transparent 55%),
              radial-gradient(ellipse 30% 30% at 92% 78%, rgba(232,135,90,.10) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Formas flotantes decorativas del hero ── */
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(2px);
  opacity: .85;
  animation: heroFloat 9s ease-in-out infinite;
}
.hero-blob-1 {
  width: 220px; height: 220px; top: 8%; left: 6%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  opacity: .16; filter: blur(4px);
  animation-duration: 11s;
}
.hero-blob-2 {
  width: 340px; height: 340px; bottom: -6%; right: -4%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  opacity: .18; filter: blur(6px);
  animation-duration: 13s; animation-delay: .5s;
}
.hero-blob-3 {
  width: 130px; height: 130px; top: 62%; left: 3%;
  background: var(--orange); opacity: .14; filter: blur(3px);
  animation-duration: 8s; animation-delay: 1s;
}
.hero-ring {
  position: absolute; border-radius: 50%; border-style: solid;
  animation: heroFloat 10s ease-in-out infinite;
}
.hero-ring-1 { width: 90px; height: 90px; top: 16%; right: 10%; border-width: 3px; border-color: var(--purple); opacity: .28; animation-duration: 9s; }
.hero-ring-2 { width: 44px; height: 44px; top: 26%; right: 20%; border-width: 3px; border-color: var(--orange); opacity: .35; animation-duration: 7s; animation-delay: .3s; }
.hero-ring-3 { width: 60px; height: 60px; bottom: 20%; left: 12%; border-width: 3px; border-color: var(--orange); opacity: .3; animation-duration: 8.5s; animation-delay: .8s; }
.hero-dot { position: absolute; border-radius: 50%; }
.hero-dot-1 { width: 14px; height: 14px; top: 40%; right: 8%; background: var(--orange); opacity: .5; }
.hero-dot-2 { width: 10px; height: 10px; top: 74%; left: 22%; background: var(--purple); opacity: .5; }
.hero-dot-3 { width: 18px; height: 18px; top: 12%; left: 32%; background: var(--purple); opacity: .22; }
.hero-square {
  position: absolute; border-radius: 12px;
  animation: heroSpin 22s linear infinite;
}
.hero-square-1 { width: 46px; height: 46px; top: 68%; right: 16%; border: 3px solid var(--purple); opacity: .25; }

@keyframes heroFloat { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-18px) translateX(8px); } }
@keyframes heroSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 700px) {
  .hero-blob-1 { width: 140px; height: 140px; }
  .hero-blob-2 { width: 220px; height: 220px; }
  .hero-ring-1, .hero-ring-2, .hero-ring-3, .hero-square-1 { display: none; }
}
.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .82rem; 
  font-weight: 700;
  letter-spacing: .13em; 
  text-transform: uppercase;
  color: var(--purple);
  border: 2px solid rgba(139,58,107,.3); border-radius: 30px;
  padding: .35rem 1rem;
  animation: fadeUp .6s .1s both;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
#hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text); margin-bottom: 1.5rem;
  animation: fadeUp .7s .2s both;
}
#hero h1 .hl { color: var(--purple); }
#hero h1 .hl2 { color: var(--orange); }
.hero-sub {
  max-width: 560px; 
  margin: 0 auto 2.5rem;
  font-size: 1.08rem; 
  color: var(--text-soft);
  font-weight: 2300;
  animation: fadeUp .7s .35s both;
}
.hero-sub2 {
  padding-top: 1.5rem;
  max-width: 560px; 
  margin: 0 auto 2.5rem;
  font-size: 1rem; 
  color: var(--purple); 
  font-weight: 2300;
  animation: fadeUp .7s .35s both;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s .5s both;
}
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
  margin-top: 5rem;
  animation: fadeUp .7s .65s both;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2.2rem; font-weight: 700; color: var(--purple); line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: var(--text-soft); margin-top: .3rem; letter-spacing: .05em; }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }

/* quienes */
#quienes { background: var(--light-gray); }
.quienes-visual {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 64px rgba(139,58,107,.25);
}
.quienes-visual-text {
  text-align: center; color: #fff; padding: 2rem;
}
.quienes-visual-text .big { font-size: 4rem; }
.quienes-visual-text p { font-size: 1rem; opacity: .85; margin-top: .5rem; }
.imgInicio{
  max-width: 100%; 
  height: auto;
  border-radius: 20px;
}
/* mvv */
#mvv { background: var(--light-gray); }

/* areas preview */
#areas-preview { background: var(--light-gray); }
.area-prev-card {
  background: var(--off-white); border-radius: 16px;
  padding: 2.2rem 2rem; border: 1px solid var(--border);
  transition: all .3s; text-decoration: none; display: block;
}
.area-prev-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.area-prev-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.area-prev-card p { font-size: .9rem; color: var(--text-soft); }

/* ── Placeholders de fotos (para que el cliente reemplace luego) ── */
.photo-placeholder {
  border: 2px dashed rgba(139,58,107,.3);
  border-radius: 16px;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: var(--purple);
  font-size: .8rem; font-weight: 500;
  text-align: center;
  aspect-ratio: 4/3;
  gap: .5rem;
  text-decoration: none;
  transition: all .2s;
}
.photo-placeholder svg { width: 30px; height: 30px; opacity: .6; }
a.photo-placeholder:hover { border-color: var(--purple); background: #efdcea; transform: translateY(-3px); }
.photo-placeholder span.link-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--orange-dark); font-weight: 700; }
.photo-placeholder-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.photo-placeholder-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.photo-placeholder-grid.cols-1 { grid-template-columns: minmax(0,1fr); max-width: 320px; }
@media (max-width: 700px) {
  .photo-placeholder-grid.cols-3 { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}
@media (max-width: 480px) {
  .photo-placeholder-grid.cols-3 { grid-template-columns: minmax(0,1fr); }
}

/* aportes */
#aportes-home { background: var(--white); }
.aporte-card {
  border-radius: 20px; padding: 3.5rem 2.5rem; text-align: center; color: #fff;
  transition: transform .3s, box-shadow .3s;
}
.aporte-card.emp { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); }
.aporte-card.per { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.aporte-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.aporte-card .icon { font-size: 3rem; margin-bottom: 1.2rem; }
.aporte-card h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: .8rem; }
.aporte-card p { opacity: .85; margin-bottom: 2rem; }

/* partners */
#partners-home { background: var(--light-gray); }

/* manual banner */
#manual-home {
  background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
  color: #fff; text-align: center; padding: 80px 2rem;
}
#manual-home .section-label { color: rgba(255,255,255,.7); }
#manual-home .section-title { color: #fff; }
#manual-home p { max-width: 520px; margin: 0 auto 2.5rem; opacity: .85; }
