/* Tareapp Landing v5
   - Diseño original (no clonado)
   - Más secciones + estética refinada
   - Responsive + accesible
*/

:root{
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Light theme — Tareapp */
  --bg: #FFFFFF;
  --bg2:#FAFAFA;
  --surface: rgba(255,255,255,.92);
  --card: #FFFFFF;
  --text: #2D2D2D;
  --muted: rgba(45,45,45,.60);
  --line: rgba(0,0,0,.08);

  --brand: #F7C948;
  --brand2:#E5B52E;
  --brand3:#FFF4D6;
  --danger:#B34242;

  --shadow-sm: 0 4px 18px rgba(0,0,0,.06);
  --shadow: 0 14px 44px rgba(0,0,0,.08);
  --shadow-lg: 0 36px 100px rgba(0,0,0,.10);

  --radius: 18px;
  --radius-sm: 14px;

  --max: 1140px;

  --pad: clamp(18px, 2.6vw, 28px);
  --pad-lg: clamp(34px, 4.5vw, 58px);

  --h1: clamp(34px, 4.4vw, 56px);
  --h2: clamp(26px, 3.0vw, 40px);
  --h3: clamp(18px, 2.0vw, 22px);

  --ring: rgba(247,201,72,.35);

  --grad: radial-gradient(900px 520px at 15% 12%, rgba(247,201,72,.10), transparent 55%),
          radial-gradient(860px 520px at 82% 14%, rgba(247,201,72,.08), transparent 56%),
          radial-gradient(980px 640px at 55% 110%, rgba(247,201,72,.06), transparent 60%);
}

/* Dark theme removed — Tareapp is light-only */

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.55;
  overflow-x:hidden;
}

/* Subtle grid + noise */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(247,201,72,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(247,201,72,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .25;
}


body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  opacity: .05;
}


a{color: inherit; text-decoration: none}
a:hover{text-decoration: underline}
img{max-width:100%; height:auto; display:block}

.container{
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{left: 10px; outline: 3px solid var(--ring);}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.muted{color: var(--muted)}
.fineprint{font-size: 13px; color: var(--muted); margin: 12px 0 0}
.dot{width:9px;height:9px;border-radius:99px;background: var(--brand2); display:inline-block; box-shadow: 0 0 0 6px rgba(247,201,72,.18)}
.divider{height:1px;background: var(--line); margin: 24px 0}

/* Icons */
.i{width:20px;height:20px; display:inline-block; color: currentColor; flex:0 0 auto}
.i--sm{width:16px;height:16px}

/* Scroll progress */
.scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  background: rgba(247,201,72,.10);
}
.scroll-progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}

.section{padding: var(--pad-lg) 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.0));
}

.section--tight{padding: clamp(22px, 3.5vw, 38px) 0}

.section__head{
  max-width: 880px;
  margin: 0 auto 26px;
  text-align: center;
}
.section__head h2{font-size: var(--h2); margin: 0 0 10px; letter-spacing: -.02em}
.section__head p{margin:0}

/* TOPBAR */
.topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.7);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 12px;
}
.topbar__left{display:flex;align-items:center;gap:10px}
.topbar__text{font-size: 13px; color: var(--muted)}
.topbar__right{display:flex;align-items:center;gap:12px}
.topbar__link{font-size: 13px; color: var(--muted); text-decoration:none}
.topbar__link:hover{color: var(--text); text-decoration:none}

/* THEME TOGGLE */
.theme-toggle{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 10px;
  display:flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  box-shadow: var(--shadow-sm);
}
.theme-toggle:focus{outline: 3px solid var(--ring)}
.theme-toggle__icon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.55);
}
.theme-toggle__text{font-size: 13px; color: var(--muted)}


/* NAV */
.nav{
  position: sticky;
  top: 44px;
  z-index: 55;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  flex-shrink:0;
}
.brand__text{display:flex;flex-direction:column; line-height: 1.05}
.brand__text strong{font-size: 15px}
.brand__text small{font-size: 12px; color: var(--muted); margin-top: 4px}

.nav__links{display:flex;gap: 10px;align-items:center}
.nav__links a{
  font-size: 14px;
  color: var(--muted);
  text-decoration:none;
  padding: 9px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover{color: var(--text); background: rgba(247,201,72,.10); text-decoration:none}
.nav__links a.active{color: var(--text); background: rgba(247,201,72,.14)}
.nav__links a[aria-current="page"]{box-shadow: inset 0 0 0 1px rgba(247,201,72,.22)}

.nav__cta{border: 1px solid rgba(247,201,72,.28); background: rgba(247,201,72,.10)}

.nav__actions{display:flex;align-items:center;gap: 10px}
.nav__burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor:pointer;
}
.nav__burger span{display:block;width: 18px;height: 2px;margin: 0 auto;background: var(--text);border-radius: 3px}
.nav__burger span + span{margin-top: 4px}

.hide-sm{display:inline-flex}
@media (max-width: 900px){
  .nav__links{display:none}
  .nav__burger{display:block}
  .hide-sm{display:none}
}

/* MOBILE MENU */
.mobile-menu{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  transform-origin: top;
}

.mobile-menu__inner{padding: 14px 0 18px; display:flex; flex-direction:column; gap: 10px}
.mobile-menu a{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration:none;
  font-weight: 700;
}
.mobile-menu__meta{margin-top: 8px; font-size: 13px}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 800;
  cursor:pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  position: relative;
  overflow: hidden;
}
.btn::after{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.28), transparent 55%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity .2s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow)}
.btn:hover::after{opacity: 1}
.btn:active{transform: translateY(0)}
.btn:focus{outline: 3px solid var(--ring)}
.btn--sm{padding: 10px 12px; border-radius: 12px; font-weight: 800}

.btn--primary{background: linear-gradient(135deg, var(--brand2), var(--brand)); color: white}
.btn--soft{background: rgba(247,201,72,.12); border-color: rgba(247,201,72,.20); color: var(--text)}

.btn--ghost{background: var(--surface); border-color: var(--line)}
.btn--block{width: 100%}

.btn__hint{font-weight: 700; font-size: 12px; color: rgba(255,255,255,.85)}
.btn--ghost .btn__hint{color: var(--muted)}

/* HERO */
.hero{position:relative; padding: clamp(30px, 4.8vw, 72px) 0 var(--pad-lg)}
.hero__bg{
  position:absolute;
  inset:-140px -20px auto -20px;
  height: 560px;
  background: var(--grad);
  pointer-events:none;
}
.hero__inner{display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(18px, 3.2vw, 44px); align-items:center}
@media (max-width: 980px){.hero__inner{grid-template-columns: 1fr}}

.hero__pill{display:flex; gap: 10px; flex-wrap:wrap; margin: 0 0 14px}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
}
.pill--soft{background: rgba(247,201,72,.10); border-color: rgba(247,201,72,.20)}

.hero__title{margin: 0 0 12px; font-size: var(--h1); line-height: 1.06; letter-spacing: -.03em}
.hero__subtitle{margin: 0 0 18px; color: var(--muted); font-size: 17px; max-width: 62ch}

.hero__actions{display:flex; gap: 12px; flex-wrap:wrap}
@media (max-width: 520px){.hero__actions .btn{width: 100%}}

.hero__trust{margin-top: 18px}
.trust-badges{display:flex;flex-wrap:wrap; gap:10px}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

/* MOCKUP */
.mockup{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow:hidden;
  position:relative;
}
.mockup::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(247,201,72,.45), rgba(229,181,46,.10));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity:.9;
}


.mockup__top{display:flex; align-items:center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid var(--line)}
.mockup__dot{width: 10px; height: 10px; border-radius: 99px; background: rgba(0,0,0,.22)}

.mockup__label{margin-left: 8px; font-size: 13px; color: var(--muted); font-weight: 700}

.mockup__body{padding: 16px 16px 18px}

.mini-grid{display:grid; grid-template-columns: 1fr; gap: 12px}

.mini-card{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
}


.mini-card__icon{
  width: 44px; height: 44px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(247,201,72,.15);
  border: 1px solid rgba(247,201,72,.18);
  color: var(--brand);
}

.mini-card__txt strong{display:block}
.mini-card__txt span{font-size: 13px}

.progress{margin-top: 14px; padding: 14px; border-radius: 16px; border: 1px solid var(--line); background: rgba(247,201,72,.08)}
.progress__row{display:flex; align-items:center; justify-content:space-between; margin-bottom: 8px}
.progress__pct{font-size: 13px; font-weight: 900; color: var(--brand)}
.progress__bar{height: 10px; border-radius: 99px; background: rgba(0,0,0,.10); overflow:hidden}

.progress__fill{height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--brand2), var(--brand))}
.mockup__cta{margin-top: 14px}

.chips{display:flex; gap: 10px; flex-wrap:wrap; justify-content:center; margin-top: 14px}
.chip{padding: 9px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 900}

/* VALUE GRID */
.value-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap: 18px; align-items:stretch}
@media (max-width: 980px){.value-grid{grid-template-columns: 1fr}}
.value h2{margin:0 0 8px; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -.02em}
.value p{margin:0}

.mini-features{margin-top: 14px; display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px}
@media (max-width: 560px){.mini-features{grid-template-columns: 1fr}}
.mini-feature{
  display:flex; align-items:center; gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 900;
  color: var(--muted);
}

.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px}
@media (max-width: 640px){.stats{grid-template-columns: 1fr}}
.stat{padding: 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm)}
.stat strong{font-size: 20px; display:block}
.stat span{font-size: 13px}

/* CARDS */
.cards{display:grid; gap: 14px}
.cards--3{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 980px){.cards--3{grid-template-columns: 1fr}}

.card{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: calc(var(--radius) + 2px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(247,201,72,.34), rgba(229,181,46,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: .85;
}

.card:hover{transform: translateY(-1px); box-shadow: var(--shadow)}
.card__icon{
  width: 48px; height: 48px; border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(247,201,72,.12);
  border: 1px solid rgba(247,201,72,.18);
  color: var(--brand);
  margin-bottom: 10px;
}
.card h3{margin: 0 0 8px; font-size: var(--h3)}
.card p{margin: 0 0 12px}

.card--highlight{border-color: rgba(247,201,72,.30); box-shadow: var(--shadow)}
.card__tag{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 900;
  color: var(--brand);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247,201,72,.12);
  border: 1px solid rgba(247,201,72,.22);
}

.list{margin: 0; padding-left: 18px; color: var(--muted)}
.list li{margin: 6px 0}
.card .btn{margin-top: 14px}

/* SPLIT */
.split{display:grid; grid-template-columns: 1fr 1fr; gap: 14px}
@media (max-width: 980px){.split{grid-template-columns: 1fr}}
.panel{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.panel h3{margin: 0 0 10px}
.panel--danger{
  border-color: rgba(179,66,66,.28);
  background: linear-gradient(135deg, rgba(179,66,66,.10), rgba(247,201,72,.06));
}

.cta-mini{
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(247,201,72,.22);
  background: rgba(247,201,72,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
@media (max-width: 760px){.cta-mini{flex-direction:column; align-items:stretch}}
.cta-mini h3{margin:0 0 6px}
.cta-mini p{margin:0}

/* TIMELINE */
.timeline{display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px}
@media (max-width: 980px){.timeline{grid-template-columns: 1fr}}
.step{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display:flex;
  gap: 12px;
}
.step__num{
  width: 34px; height: 34px; border-radius: 999px;
  display:grid; place-items:center;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  flex: 0 0 auto;
}
.step h3{margin: 0 0 6px; font-size: 16px}
.step p{margin:0; font-size: 14px}

/* CTA BAND */
.cta-band{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(247,201,72,.28);
  background: linear-gradient(135deg, rgba(247,201,72,.18), rgba(229,181,46,.10));
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
@media (max-width: 760px){.cta-band{flex-direction:column; align-items:stretch}}
.cta-band h3{margin: 0 0 6px}
.cta-band p{margin:0}
.cta-band__actions{display:flex; gap: 10px}
@media (max-width: 520px){.cta-band__actions{flex-direction:column}}

/* MODALITY */
.modality{margin-top: 14px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px}
@media (max-width: 980px){.modality{grid-template-columns: 1fr}}
.modality__item{
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.modality__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(247,201,72,.12);
  border: 1px solid rgba(247,201,72,.18);
  color: var(--brand);
}
.modality__item strong{display:block}
.modality__item p{margin: 4px 0 0; font-size: 14px}

/* DELIVERABLES */
.deliverables{display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px}
@media (max-width: 980px){.deliverables{grid-template-columns: 1fr}}
.deliverable{padding: 18px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm)}
.deliverable h3{margin:0 0 8px}

.samples{margin-top: 18px; padding: 18px; border-radius: 22px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm)}
.samples__head{display:flex; align-items:baseline; justify-content:space-between; gap: 14px; flex-wrap:wrap}
.samples__head h3{margin:0}
.samples__head p{margin:0}
.samples__grid{margin-top: 12px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px}
@media (max-width: 980px){.samples__grid{grid-template-columns: 1fr}}

.sample{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sample:hover{text-decoration:none; transform: translateY(-1px); box-shadow: var(--shadow)}
.sample__icon{width: 46px; height: 46px; border-radius: 16px; display:grid; place-items:center; background: rgba(247,201,72,.12); border: 1px solid rgba(247,201,72,.18); color: var(--brand)}
.sample__txt strong{display:block}
.sample__txt span{font-size: 13px}

/* TESTIMONIALS */
.testimonials{display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px}
@media (max-width: 980px){.testimonials{grid-template-columns: 1fr}}
.testimonial{padding: 18px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-sm)}
.stars{color: var(--brand); letter-spacing: .08em; font-weight: 900}
.testimonial p{margin: 10px 0 14px; color: var(--muted)}
.who{display:flex; align-items:center; gap: 10px}
.avatar{width: 42px; height: 42px; border-radius: 999px; display:block; background: linear-gradient(135deg, rgba(247,201,72,.18), rgba(229,181,46,.16)); border: 2px solid rgba(247,201,72,.22); color: var(--brand); font-weight: 900; object-fit: cover; flex-shrink: 0}


/* TEAM */
.team{display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px}
@media (max-width: 980px){.team{grid-template-columns: 1fr}}
.team-card{padding: 18px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm)}
.team-card__top{display:flex; gap: 12px; align-items:flex-start; margin-bottom: 10px}
.team-card__top h3{margin:0 0 4px}
.team-card__top p{margin:0; font-size: 14px}
.team-avatar{width: 44px; height: 44px; border-radius: 16px; display:grid; place-items:center; font-weight: 900; color: white; background: linear-gradient(135deg, var(--brand2), var(--brand)); flex: 0 0 auto}

/* FAQ */
.faq{max-width: 960px; margin: 0 auto}

.faq-search{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.faq-search input{
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  border-radius: 14px;
  padding: 12px 12px;
  font-family: var(--font);
  font-weight: 700;
  color: var(--text);
}

.faq-search input:focus{outline: 3px solid var(--ring)}
.faq-search__hint{font-size: 13px; font-weight: 800}

.accordion__item{border-radius: 18px; border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-sm); overflow:hidden}
.accordion__item + .accordion__item{margin-top: 12px}
.accordion__h{margin:0}
.accordion__btn{
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: none;
  text-align:left;
  font-weight: 900;
  font-size: 15px;
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  cursor:pointer;
}
.accordion__btn:focus{outline: 3px solid var(--ring)}
.accordion__icon{width: 14px; height: 14px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .18s ease}
.accordion__btn[aria-expanded="true"] .accordion__icon{transform: rotate(-135deg)}
.accordion__panel{padding: 0 18px 16px}

.faq__cta{margin-top: 14px; display:flex; align-items:center; justify-content:space-between; gap: 12px; padding: 16px; border-radius: 22px; border: 1px solid rgba(247,201,72,.22); background: rgba(247,201,72,.10)}
@media (max-width: 760px){.faq__cta{flex-direction:column; align-items:stretch}}
.faq__box h3{margin:0 0 6px}
.faq__box p{margin:0}

/* CONTACT */
.contact{display:grid; grid-template-columns: 1fr .90fr; gap: 14px; align-items:start}
@media (max-width: 980px){.contact{grid-template-columns: 1fr}}

.form{padding: 18px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm)}
.form label{display:flex; flex-direction:column; gap: 8px; font-weight: 900; font-size: 13px}
.form input, .form select, .form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
}

.form input:focus, .form select:focus, .form textarea:focus{outline: 3px solid var(--ring)}

.form__row{display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px}
@media (max-width: 640px){.form__row{grid-template-columns: 1fr}}

.form__actions{display:flex; gap: 10px; margin-top: 12px; flex-wrap:wrap}
@media (max-width: 520px){.form__actions .btn{width: 100%}}

.sidecard{padding: 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm)}
.sidecard h3{margin:0 0 10px}
.sidecard__actions{display:grid; gap: 10px; margin: 12px 0 14px}

.map{border-radius: 18px; overflow:hidden; border: 1px solid var(--line); background: rgba(0,0,0,.05)}
.map iframe{width:100%; height: 260px; border:0}

/* FINAL CTA */
.final-cta{padding: clamp(26px, 3.8vw, 44px) 0 56px}
.final-cta__inner{
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(247,201,72,.28);
  background: linear-gradient(135deg, rgba(247,201,72,.20), rgba(229,181,46,.10));
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
@media (max-width: 860px){.final-cta__inner{flex-direction:column; align-items:stretch}}
.final-cta__inner h2{margin:0 0 6px; font-size: clamp(22px, 2.6vw, 34px)}
.final-cta__inner p{margin:0}
.final-cta__actions{display:flex; gap: 10px}
@media (max-width: 520px){.final-cta__actions{flex-direction:column}}

/* FOOTER */
.footer{padding: 30px 0 18px; border-top: 1px solid var(--line); background: rgba(255,255,255,.55)}

.footer__inner{display:flex; align-items:flex-start; justify-content:space-between; gap: 16px; flex-wrap:wrap}
.footer__brand{display:flex; align-items:center; gap: 12px}
.footer__brand p{margin: 4px 0 0}
.footer__cols{display:grid; grid-template-columns: repeat(3, minmax(160px, 1fr)); gap: 14px}
@media (max-width: 760px){.footer__cols{grid-template-columns: 1fr}}
.footer h4{margin: 0 0 10px}
.footer a{display:block; color: var(--muted); padding: 6px 0; text-decoration:none}
.footer a:hover{color: var(--text)}
.footer__bottom{padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--line); font-size: 13px}

/* TO TOP */
.to-top{
  position: fixed;
  right: 16px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  z-index: 70;
}
.to-top:focus{outline: 3px solid var(--ring)}
.to-top.show{display:flex}

/* BOTTOM BAR */
.bottom-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px var(--pad);
  background: rgba(255,255,255,.85);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  display:none;
  gap: 10px;
  z-index: 65;
}

.bottom-bar .btn{box-shadow: none}
@media (max-width: 780px){.bottom-bar{display:flex}}

/* REVEAL */
[data-reveal]{opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease}
.revealed{opacity: 1 !important; transform: translateY(0) !important}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior: auto !important}
  [data-reveal]{transition: none}
  .btn{transition:none}
  .btn::after{display:none}
}


/* ============================
   Tareapp Landing v6 – Futurista 2026 (Liquid Glass inspired)
   - Material tipo “glass” + fondo aurora/mesh
   - Micro-interacciones discretas
   - Animación por scroll (progresiva) cuando el navegador lo soporta
   ============================ */

:root{
  /* Coordenadas del brillo ambiental (se actualizan por JS en desktop) */
  --mx: 50vw;
  --my: 18vh;

  /* Capa superior del fondo: aurora mesh sutil amarilla */
  --bg-grad:
    radial-gradient(900px 520px at var(--mx) var(--my), rgba(247,201,72,.08), transparent 60%),
    radial-gradient(820px 520px at 86% 10%, rgba(247,201,72,.05), transparent 58%),
    radial-gradient(980px 640px at 52% 120%, rgba(247,201,72,.04), transparent 62%);

  /* Gradiente sutil */
  --grad:
    radial-gradient(980px 560px at 12% 10%, rgba(247,201,72,.10), transparent 60%),
    radial-gradient(980px 560px at 88% 16%, rgba(247,201,72,.06), transparent 62%),
    radial-gradient(980px 560px at 55% 116%, rgba(247,201,72,.05), transparent 66%);

  /* Glass effect — blanco con transparencia */
  --surface: rgba(255,255,255,.88);
  --card: rgba(255,255,255,.95);

  /* Sombras suaves */
  --shadow-sm: 0 4px 18px rgba(0,0,0,.06);
  --shadow: 0 14px 44px rgba(0,0,0,.08);
  --shadow-lg: 0 36px 100px rgba(0,0,0,.10);
}

html{ color-scheme: light; }

/* Fondo con aurora mesh + degradado base */
body{
  background: var(--bg-grad), linear-gradient(180deg, var(--bg), var(--bg2));
}

/* Grid un poco más grande y discreto */
body::before{ background-size: 80px 80px; opacity: .20; }


/* Noise un poco más notorio para evitar “flatness” */
body::after{ opacity: .06; }


/* “Material” glass: blur + saturación (progresivo) */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  .nav,
  .mobile-menu,
  .bottom-bar,
  .card,
  .panel,
  .step,
  .stat,
  .testimonial,
  .team-card,
  .deliverable,
  .form,
  .sidecard,
  .samples,
  .modality__item,
  .mockup{
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    backdrop-filter: blur(18px) saturate(1.15);
  }
}

/* Ajustes finos del nav para un look más “2026” */
.nav{
  background: rgba(255,255,255,.62);
}


/* Botones: glow + micro-interacción */
.btn{
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
}
.btn--primary{
  box-shadow:
    0 16px 40px rgba(247,201,72,.22),
    0 1px 0 rgba(255,255,255,.22) inset;
  filter: saturate(1.05);
}
.btn--primary:hover{
  box-shadow:
    0 22px 80px rgba(247,201,72,.28),
    0 1px 0 rgba(255,255,255,.22) inset;
}
.btn--primary:active{ transform: translateY(1px); }

/* Cards: transición + “shine” sutil al hover (desktop) */
.card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
@media (hover:hover) and (pointer:fine){
  .card:hover{ transform: translateY(-2px); }

  .card::after{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.42), transparent);
    transform: translateX(-60%);
    opacity: 0;
    pointer-events:none;
    mix-blend-mode: overlay;
    transition: transform .65s ease, opacity .65s ease;
  }

  .card:hover::after{ opacity:.55; transform: translateX(60%); }
}

/* Hero: saturación y brillo un poco más “futurista” */
.hero__bg{ filter: saturate(1.08); }

/* Título principal con gradiente (progresivo) */
@supports (-webkit-background-clip: text){
  .hero__title{
    background: linear-gradient(90deg, var(--text), var(--brand2), var(--brand));
    -webkit-background-clip: text;
    color: transparent;
  }

}

/* Scroll-driven animation (progresiva):
   en navegadores compatibles, la aurora se desplaza suavemente al hacer scroll */
@supports (animation-timeline: scroll()){
  .hero__bg{
    animation: auroraShift 1s linear both;
    animation-timeline: scroll(root);
    animation-range: 0% 45%;
  }
  @keyframes auroraShift{
    from{
      transform: translateY(0) scale(1);
      filter: saturate(1.08) hue-rotate(0deg);
    }
    to{
      transform: translateY(140px) scale(1.08);
      filter: saturate(1.18) hue-rotate(18deg);
    }
  }
}

/* Respeto a reduce-motion */
@media (prefers-reduced-motion: reduce){
  @supports (animation-timeline: scroll()){
    .hero__bg{ animation: none !important; }
  }
}


/* Nav compacto al hacer scroll (inspiración: controles que se “encogen” para dar foco al contenido) */
.nav.nav--scrolled{
  background: rgba(255,255,255,.72);
  border-color: rgba(0,0,0,.14);
  box-shadow: var(--shadow-sm);
}

.nav.nav--scrolled .nav__inner{ padding: 10px 0; }
.nav.nav--scrolled .nav__logo img{ width: 34px; height: 34px; }

/* ==============================
   REDES SOCIALES — Topbar iconos
   ============================== */
.social-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.social-link {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--muted);
  transition: color .18s ease, background .18s ease;
  text-decoration: none;
}
.social-link:hover { color: var(--brand2); background: rgba(247,201,72,.10); }

/* ==============================
   REDES SOCIALES — Sidecard botones
   ============================== */
.social-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-btn {
  flex: 1;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social-btn--fb:hover { border-color: #1877F2; color: #1877F2; }
.social-btn--tt:hover { border-color: #000; color: #000; }
.social-btn--ig:hover { border-color: #E1306C; color: #E1306C; }
/* Dark theme social overrides removed */

/* ==============================
   PANEL FULL WIDTH
   ============================== */
.panel--full {
  width: 100%;
}
.list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
@media (max-width: 640px) {
  .list--cols { grid-template-columns: 1fr; }
}

/* ==============================
   SECCIÓN AYUDA RÁPIDA
   ============================== */
.section--urgente {
  padding-top: 0;
  padding-bottom: 0;
}
.urgente-band {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand2) 60%, rgba(255,214,70,.9) 100%);
  box-shadow: 0 28px 80px rgba(247,201,72,.35);
  color: #fff;
  flex-wrap: wrap;
}
.urgente-band__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: #fff;
}
.urgente-band__icon .i {
  width: 28px;
  height: 28px;
}
.urgente-band__copy {
  flex: 1;
  min-width: 220px;
}
.urgente-band__copy h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.urgente-band__copy p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.urgente-band__cta {
  flex-shrink: 0;
  background: #fff !important;
  color: var(--brand) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
  animation: none !important;
  font-weight: 700;
}
.urgente-band__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.20) !important;
}
@media (max-width: 700px) {
  .urgente-band { padding: 28px 22px; gap: 20px; }
  .urgente-band__cta { width: 100%; justify-content: center; }
}

/* ==============================
   STATS — Icono animado
   ============================== */
.stat__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(247,201,72,.15), rgba(255,214,70,.12));
  border: 1px solid rgba(247,201,72,.20);
  color: var(--brand2);
  margin-bottom: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover .stat__icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(247,201,72,.22);
}
.stat__val {
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* ==============================
   PARTICLES.JS — Hero
   ============================== */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#hero-particles canvas {
  position: absolute;
  inset: 0;
}
/* Asegurar que el contenido del hero quede sobre las partículas */
.hero__inner { position: relative; z-index: 2; }

/* ==============================
   TYPED.JS — Hero typewriter
   ============================== */
.hero__typed {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 0;
  min-height: 1.7em;
}
.hero__typed .typed-cursor {
  color: var(--brand2);
  font-weight: 700;
  animation: typed-blink 0.75s step-end infinite;
}
#typedTarget {
  color: var(--brand2);
  font-weight: 700;
}
@keyframes typed-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ==============================
   SWIPER — Testimonios
   ============================== */
.testimonials-swiper {
  padding-bottom: 52px !important;
  overflow: visible;
}
.testimonials-swiper .testimonial {
  height: 100%;
  margin: 0;
}
.swiper-slide {
  height: auto;
}
.swiper-pagination-bullet {
  background: var(--brand) !important;
  opacity: 0.35;
  transition: opacity .2s, transform .2s;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  transform: scale(1.25);
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--brand) !important;
  background: var(--card);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 13px !important;
  font-weight: 700;
}

/* ==============================
   CARD HOVER — Glow elevado
   ============================== */
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(247, 201, 72, .20), var(--shadow);
    border-color: rgba(247, 201, 72, .30);
  }
  .card--highlight:hover {
    box-shadow: 0 32px 80px rgba(247, 201, 72, .32), var(--shadow-lg);
  }
}

/* ==============================
   BUTTON PULSE — CTA principal
   ============================== */
@keyframes ep-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(247, 201, 72, .45), 0 16px 40px rgba(247,201,72,.22), 0 1px 0 rgba(255,255,255,.22) inset; }
  65%  { box-shadow: 0 0 0 12px rgba(247, 201, 72, 0), 0 16px 40px rgba(247,201,72,.22), 0 1px 0 rgba(255,255,255,.22) inset; }
  100% { box-shadow: 0 0 0 0 rgba(247, 201, 72, 0), 0 16px 40px rgba(247,201,72,.22), 0 1px 0 rgba(255,255,255,.22) inset; }
}
.hero__actions .btn--primary {
  animation: ep-pulse 2.6s ease-out infinite;
}
.hero__actions .btn--primary:hover,
.hero__actions .btn--primary:focus {
  animation: none;
}

/* ==============================
   GSAP — evitar flash de contenido
   ============================== */
/* Los elementos con data-reveal ya arrancan con opacity:0 por CSS.
   GSAP los anima vía inline styles (mayor especificidad). Sin conflicto. */


/* ══════════════════════════════════════════════════════════════
   TAREAPP 2026 — Amarillo brillante + Blanco + Charcoal
   Basado en el logo: #F7C948 (amarillo), #3D3D3D (charcoal)
   ══════════════════════════════════════════════════════════════ */

/* ── Paleta Tareapp ───────────────────────────────────────── */
:root {
  --brand:  #F7C948;
  --brand2: #E5B52E;
  --brand3: #FFF4D6;
  --gold:   #F7C948;
  --gold-d: #D4A017;

  --bg:      #FFFFFF;
  --bg2:     #FAFAFA;
  --surface: rgba(255,255,255,.92);
  --card:    #FFFFFF;

  --text:  #2D2D2D;
  --muted: rgba(45,45,45,.60);
  --line:  rgba(0,0,0,.08);

  --shadow-sm: 0 4px 18px rgba(0,0,0,.06);
  --shadow:    0 14px 44px rgba(0,0,0,.08);
  --shadow-lg: 0 36px 100px rgba(0,0,0,.10);

  --grad:
    radial-gradient(900px 500px at 8% 4%,  rgba(247,201,72,.12), transparent 55%),
    radial-gradient(800px 500px at 88% 8%, rgba(247,201,72,.08), transparent 55%),
    radial-gradient(900px 600px at 50% 115%, rgba(247,201,72,.06), transparent 60%);

  --bg-grad:
    radial-gradient(800px 480px at var(--mx) var(--my), rgba(247,201,72,.10), transparent 60%),
    radial-gradient(600px 380px at 92% 12%, rgba(247,201,72,.08), transparent 55%);
}


/* ── Tipografía serif en títulos ──────────────────────────── */
h1, h2, h3,
.hero__title,
.section__head h2,
.card h3,
.panel h3,
.step h3,
.deliverable h3,
.team-card h3,
.faq h3,
.sidecard h3,
.cta-band h3,
.cta-mini h3,
.final-cta h2,
.urgente-band__copy h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.01em;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero__title {
  background: linear-gradient(135deg, var(--text) 0%, #3D3D3D 60%, var(--gold-d) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#typedTarget, .hero__typed .typed-cursor { color: var(--gold-d); }

.pill { border-color: rgba(247,201,72,.40); color: var(--text); }
.pill--soft { background: rgba(247,201,72,.15); border-color: rgba(247,201,72,.30); color: var(--gold-d); }

/* ── Sección heads con línea dorada ─────────────────────── */
.section__head { text-align: center; }
.section__head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.section__head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(247,201,72,.3));
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  transition: border-top-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
@media (hover:hover) and (pointer:fine) {
  .card:hover { border-top-color: var(--gold); }
}
.card--highlight {
  border-top: 3px solid var(--gold) !important;
  background: linear-gradient(160deg, rgba(247,201,72,.08), rgba(247,201,72,.02));
}
.card__icon { color: var(--gold-d); background: rgba(247,201,72,.12); border-color: rgba(247,201,72,.25); }
.card__tag { background: var(--gold); color: #2D2D2D; font-weight:800; }

/* ── Stats ────────────────────────────────────────────────── */
.stat__icon { background: rgba(247,201,72,.14); border-color: rgba(247,201,72,.25); color: var(--gold-d); }
.stat__val   { color: var(--text); -webkit-text-fill-color: var(--text); background: none; }

/* ── Botones ──────────────────────────────────────────────── */
.btn--primary {
  background: var(--gold);
  color: #2D2D2D !important;
  box-shadow: 0 8px 24px rgba(247,201,72,.35);
}
.btn--primary:hover {
  background: var(--gold-d);
  box-shadow: 0 12px 36px rgba(247,201,72,.45);
}
.btn__hint { color: rgba(45,45,45,.75) !important; }
.hero__actions .btn--primary { animation: ep-pulse-yellow 2.8s ease-out infinite; }
@keyframes ep-pulse-yellow {
  0%   { box-shadow: 0 0 0 0 rgba(247,201,72,.50), 0 8px 24px rgba(247,201,72,.35); }
  65%  { box-shadow: 0 0 0 13px rgba(247,201,72,0), 0 8px 24px rgba(247,201,72,.35); }
  100% { box-shadow: 0 0 0 0 rgba(247,201,72,0), 0 8px 24px rgba(247,201,72,.35); }
}
.hero__actions .btn--primary:hover,
.hero__actions .btn--primary:focus { animation: none; }

/* ── Scroll progress dorado ───────────────────────────────── */
.scroll-progress__bar { background: linear-gradient(90deg, var(--brand), var(--gold)); }

/* ── Pasos del timeline ───────────────────────────────────── */
.step__num { background: var(--gold); color: #2D2D2D; font-weight:900; box-shadow: 0 6px 18px rgba(247,201,72,.30); }

/* ── Testimonios con comilla grande ──────────────────────── */
.testimonial { position: relative; overflow: visible; }
.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -8px;
  left: 12px;
  pointer-events: none;
  user-select: none;
}
.stars { color: var(--gold); }
.avatar { border-color: rgba(247,201,72,.40); }

/* ── Team avatars ─────────────────────────────────────────── */
.team-avatar { background: var(--gold); color: #2D2D2D; }

/* ── Banner ayuda rápida ──────────────────────────────────── */
.urgente-band {
  background: linear-gradient(120deg, #F7C948 0%, #FACE5A 55%, #FDD76B 100%);
  box-shadow: 0 18px 50px rgba(247,201,72,.25);
  color: #2D2D2D;
}
.urgente-band__copy h2 { color: #2D2D2D !important; -webkit-text-fill-color: #2D2D2D !important; }
.urgente-band__copy p { color: rgba(45,45,45,.80) !important; }
.urgente-band__icon { background: rgba(45,45,45,.12); color: #2D2D2D; }
.urgente-band__cta { background: #2D2D2D !important; color: #F7C948 !important; }
.urgente-band__cta:hover { background: #1A1A1A !important; }

/* ── Nav Tareapp ──────────────────────────────────────────── */
.nav { border-bottom: 1px solid var(--line); }
.nav__links a.active, .nav__links a:hover { color: #2D2D2D; }
.nav__links a.active::after, .nav__links a:hover::after { background: var(--gold); }
.nav__cta { background: var(--gold) !important; border-color: var(--gold) !important; color: #2D2D2D !important; }

/* ── Sección alt (fondo suave amarillo) ───────────────────── */
.section--alt { background: #FFFBF0; }

/* ── Footer claro Tareapp ─────────────────────────────────── */
.footer {
  background: #FAFAFA;
  color: var(--text);
  border-top: 1px solid var(--line);
}
.footer strong, .footer h4 { color: var(--text); }
.footer .muted, .footer span.muted { color: var(--muted); }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--gold-d); }
.footer__bottom { border-top-color: var(--line); }
.footer__bottom .muted { color: var(--muted); }

/* ── Divider dorado ───────────────────────────────────────── */
.divider { background: linear-gradient(90deg, transparent, rgba(247,201,72,.30), transparent); height: 1px; }

/* ── Scroll-to-top ────────────────────────────────────────── */
.to-top { background: var(--gold); color: #2D2D2D; box-shadow: 0 6px 20px rgba(247,201,72,.30); }
.to-top:hover { background: var(--gold-d); color: #fff; }

/* ── Swiper bullets ───────────────────────────────────────── */
.swiper-pagination-bullet { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; border-color: rgba(247,201,72,.25); }

/* ── Dot del topbar ───────────────────────────────────────── */
.dot { background: var(--gold); }

/* ── FAQ accordion ────────────────────────────────────────── */
.accordion__btn:hover { color: var(--gold-d); }
.accordion__icon { color: var(--brand); }

/* ── Mockup (panel hero derecho) ──────────────────────────── */
.mockup { border-color: rgba(247,201,72,.25); }
.mockup__top { background: var(--gold); }
.mockup__top .mockup__label { color: #2D2D2D; }
.mockup__dot { background: rgba(45,45,45,.30); }
.progress__fill { background: linear-gradient(90deg, var(--gold), var(--gold-d)); }

/* ── Social hover colors mantienen identidad de marca ────── */
.social-link:hover { color: var(--gold-d); background: rgba(247,201,72,.10); }

/* ── Formas decorativas flotantes en el hero ─────────────── */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-decor__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(247,201,72,.22);
}
.hero-decor__circle--1 {
  width: 340px; height: 340px;
  top: -80px; right: -60px;
  animation: float-slow 9s ease-in-out infinite;
}
.hero-decor__circle--2 {
  width: 180px; height: 180px;
  bottom: 10%; left: 2%;
  border-color: rgba(247,201,72,.14);
  animation: float-slow 12s ease-in-out infinite reverse;
}
.hero-decor__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(247,201,72,.28), transparent);
  height: 1px;
  width: 260px;
}
.hero-decor__line--1 {
  top: 28%; right: 5%;
  transform: rotate(-18deg);
  animation: float-slow 7s ease-in-out infinite;
}
.hero-decor__line--2 {
  bottom: 22%; left: 3%;
  width: 180px;
  transform: rotate(12deg);
  animation: float-slow 10s ease-in-out infinite reverse;
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%       { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}
@media (max-width: 780px) { .hero-decor { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-decor { display: none; } }

/* ── Onda de transición hacia el footer ──────────────────── */
.footer-wave {
  line-height: 0;
  margin-bottom: -2px;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}
/* footer-wave fill matches footer bg in HTML SVG */

/* ── Final CTA — Amarillo ─────────────────────────────────── */
.final-cta__inner {
  background: linear-gradient(135deg, #F7C948 0%, #FACE5A 60%, #FDD76B 100%) !important;
  border-color: rgba(247,201,72,.40) !important;
  box-shadow: 0 18px 50px rgba(247,201,72,.20) !important;
}
.final-cta__inner h2 { color: #2D2D2D; -webkit-text-fill-color: #2D2D2D; background: none; }
.final-cta__inner p   { color: rgba(45,45,45,.75); }
.final-cta__inner .btn--primary {
  background: #2D2D2D !important;
  color: #F7C948 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
  animation: none !important;
}
.final-cta__inner .btn--primary:hover { background: #1A1A1A !important; }
.final-cta__inner .btn--ghost { border-color: rgba(45,45,45,.30); color: rgba(45,45,45,.80); }
.final-cta__inner .btn--ghost:hover { border-color: #2D2D2D; color: #2D2D2D; }

/* ── Hero fondo claro ────────────────────────────────────── */
.hero {
  background: linear-gradient(155deg, #FFFFFF 0%, #FFFBF0 55%, #FFF8E1 100%);
}
.hero__title {
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 55%, var(--gold-d) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.hero__subtitle { color: var(--muted) !important; }
.hero__typed    { color: var(--muted) !important; }
#typedTarget, .hero__typed .typed-cursor { color: var(--gold-d) !important; }
.hero .pill {
  background: #FFFFFF;
  border-color: rgba(247,201,72,.35);
  color: var(--text);
}
.hero .pill--soft {
  background: rgba(247,201,72,.12);
  border-color: rgba(247,201,72,.30);
  color: var(--gold-d);
}
.hero .badge {
  background: #FFFFFF;
  border-color: var(--line);
  color: var(--muted);
}
.hero .chip {
  background: #FFFFFF;
  border-color: var(--line);
  color: var(--muted);
}

/* Eliminar estilos del toggle de tema ya que no existe */
.theme-toggle { display: none !important; }

/* ── Select / dropdown ───────────────────────────────────── */
.form select {
  background: #FFFFFF !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
}
.form select option {
  background-color: #FFFFFF;
  color: #2D2D2D;
}


/* ── Marquee infinita de opiniones ─────────────────────────── */
.mq-wrap {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.mq-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  will-change: transform;
  animation: mqScroll 40s linear infinite;
}
/* 6 cards × 272px + 6 gaps × 16px = 1728px por set */
@keyframes mqScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-1728px); }
}
@media (prefers-reduced-motion: reduce) {
  .mq-inner { animation: none; }
}
.rc {
  width: 272px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.rc::after {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: .08;
  position: absolute;
  bottom: -8px; right: 10px;
  pointer-events: none;
  user-select: none;
}
.rc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rc__stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rc__star-off { color: rgba(247,201,72,.25); }
.rc__score { font-size: 11px; font-weight: 700; color: var(--muted); }
.rc p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.rc__author {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.rc__author strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.rc__author span { font-size: 12px; color: var(--muted); }

/* ── Hero título: más espacio bajo para evitar que la 'g' tape el subtítulo ── */
.hero__title {
  margin-bottom: 26px !important;
  line-height: 1.14 !important;
}

/* ══════════════════════════════════════════════════════════════
   PAGE SWITCHER — Tabs pill-toggle en el nav
   ══════════════════════════════════════════════════════════════ */
.page-switcher {
  display: flex;
  background: rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.page-switcher__tab {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.page-switcher__tab:hover {
  color: var(--text);
  text-decoration: none;
}
.page-switcher__tab--active {
  background: var(--gold);
  color: #2D2D2D;
  box-shadow: 0 2px 8px rgba(247,201,72,.30);
}
.page-switcher__tab--active:hover {
  color: #2D2D2D;
}
.page-switcher--mobile {
  align-self: stretch;
  justify-content: center;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .nav__inner .page-switcher { display: none; }
}
@media (min-width: 901px) {
  .page-switcher--mobile { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   INSTITUCIONES — Marquee de chips
   ══════════════════════════════════════════════════════════════ */
.mq-inner--inst {
  animation: mqScrollInst 40s linear infinite;
}
/* 17 chips × 200px + 17 gaps × 16px ≈ 3672px por set */
@keyframes mqScrollInst {
  from { transform: translateX(0); }
  to   { transform: translateX(-3672px); }
}
@media (prefers-reduced-motion: reduce) {
  .mq-inner--inst { animation: none; }
}
.inst-chip {
  flex-shrink: 0;
  padding: 14px 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  min-width: 150px;
}
.inst-chip img {
  height: 55px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.inst-chip--more {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-d);
  white-space: nowrap;
  border-color: rgba(247,201,72,.30);
  background: rgba(247,201,72,.08);
}

/* ══════════════════════════════════════════════════════════════
   HERO CROSSLINK
   ══════════════════════════════════════════════════════════════ */
.hero__crosslink {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 0;
}
.hero__crosslink a {
  color: var(--gold-d);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__crosslink a:hover {
  color: var(--text);
}

/* ══════════════════════════════════════════════════════════════
   TIMELINE 3 COLUMNS (trabajos)
   ══════════════════════════════════════════════════════════════ */
.timeline--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .timeline--3 { grid-template-columns: 1fr; } }

