/* ═══════════════════════════════════════════════════════
   COACHING TERAPÉUTICO · landing specific styles
   Reusa tokens de styles.css. No redefine ni pisa nada global.
═══════════════════════════════════════════════════════ */

body{background:var(--dark);}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.co-hero{
  position:relative;min-height:100vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:7rem 3rem 5rem;overflow:hidden;text-align:center;
}
.co-hero-bg{
  position:absolute;inset:0;
  background:url('https://res.cloudinary.com/dcokjh4g1/image/upload/f_auto,q_auto/bg-monarca-cerca') center/cover no-repeat;
  filter:saturate(0.5) brightness(0.42);
  transform:scale(1.05);
  animation:coZoom 26s ease-in-out infinite alternate;
}
@keyframes coZoom{from{transform:scale(1.05);}to{transform:scale(1.13);}}

.co-hero-vignette{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%,rgba(10,4,6,0.7) 0%,rgba(10,4,6,0.45) 50%,transparent 85%),
    linear-gradient(135deg,rgba(60,20,35,0.5) 0%,rgba(90,30,55,0.2) 45%,transparent 75%),
    linear-gradient(to bottom,rgba(60,20,35,0.4) 0%,transparent 25%,transparent 60%,rgba(10,4,6,0.85) 100%);
}
.co-hero-grain{
  position:absolute;inset:0;opacity:.22;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:200px;
}

.co-back{
  position:absolute;top:5.5rem;left:4rem;z-index:10;
  color:rgba(235,230,220,.55);text-decoration:none;
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;
  transition:color .3s, transform .3s;
}
.co-back:hover{color:var(--cream);transform:translateX(-3px);}

.co-hero-content{
  position:relative;z-index:5;max-width:700px;
  display:flex;flex-direction:column;align-items:center;
}

.co-hero-icon{
  width:92px;height:auto;margin-bottom:2rem;
  /* bordó → crema para que resalte sobre dark */
  filter:brightness(0) invert(1) opacity(.88);
  animation:coFadeUp 1.4s .1s both;
}

.co-tag{
  display:inline-block;
  font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(235,230,220,.6);
  padding:.5rem 1.1rem;
  border:1px solid rgba(235,230,220,.18);
  margin-bottom:2rem;
  background:rgba(90,30,55,.2);
  backdrop-filter:blur(6px);
  animation:coFadeUp 1.4s .25s both;
}

.co-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(3rem,7vw,5.8rem);
  line-height:1;letter-spacing:-0.01em;
  color:var(--cream);
  margin-bottom:2rem;
  animation:coFadeUp 1.4s .4s both;
}
.co-title em{font-style:italic;color:rgba(235,230,220,.8);}

.co-anchor{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(1.3rem,2.4vw,1.85rem);
  color:rgba(235,230,220,.78);
  line-height:1.4;letter-spacing:.01em;
  margin-bottom:1.6rem;max-width:520px;
  animation:coFadeUp 1.4s .55s both;
}
.co-anchor em{font-style:italic;color:var(--wine-lt);}

.co-sub{
  font-size:clamp(.95rem,1.4vw,1.05rem);
  font-weight:300;line-height:1.75;
  color:rgba(235,230,220,.5);
  max-width:500px;margin-bottom:2.5rem;
  animation:coFadeUp 1.4s .7s both;
}

.co-cta-wrap{
  display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;
  animation:coFadeUp 1.4s .85s both;
}

.co-btn-solid{
  display:inline-block;
  padding:1rem 2.2rem;
  background:var(--wine);
  border:1px solid var(--wine);
  color:var(--cream);text-decoration:none;
  font-size:.78rem;font-weight:400;
  letter-spacing:.14em;text-transform:uppercase;
  transition:background .3s, transform .3s;
}
.co-btn-solid:hover{background:var(--wine-lt);transform:translateY(-2px);}

.co-btn{
  display:inline-block;
  padding:1rem 2.2rem;
  border:1px solid rgba(235,230,220,.3);
  color:var(--cream);text-decoration:none;
  font-size:.78rem;font-weight:300;
  letter-spacing:.14em;text-transform:uppercase;
  background:rgba(235,230,220,.05);
  transition:background .3s, border-color .3s;
}
.co-btn:hover{border-color:rgba(235,230,220,.7);background:rgba(235,230,220,.12);}
.co-btn-lg{padding:1.1rem 2.6rem;font-size:.82rem;}

.co-scroll-hint{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  z-index:10;
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:.85rem;color:rgba(235,230,220,.35);letter-spacing:.14em;
  animation:coBob 3s ease-in-out infinite;
}
@keyframes coBob{
  0%,100%{transform:translateX(-50%) translateY(0);opacity:.35;}
  50%{transform:translateX(-50%) translateY(4px);opacity:.6;}
}

@keyframes coFadeUp{
  from{opacity:0;transform:translateY(14px);}
  to{opacity:1;transform:none;}
}

/* ═══════════════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════════════ */
.co-section-kicker{
  font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--muted);margin-bottom:1rem;
}
.co-section-kicker-lt{color:rgba(235,230,220,.4);}

.co-section-title{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:clamp(2.2rem,4.5vw,3.6rem);
  line-height:1.1;color:var(--wine-dk);margin-bottom:2rem;
}
.co-section-title em{font-style:italic;color:var(--wine);}
.co-section-title-lt{color:var(--cream);}
.co-section-title-lt em{color:rgba(235,230,220,.7);}

/* ═══════════════════════════════════════════════════════
   QUÉ ES · cream
═══════════════════════════════════════════════════════ */
.co-what{
  background:var(--cream-lt);
  padding:7rem 2rem;
}
.co-what-inner{
  max-width:820px;margin:0 auto;
}
.co-what-body p{
  font-size:1.05rem;line-height:1.9;font-weight:300;
  color:var(--text);margin-bottom:1.6rem;
}
.co-what-body em{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  color:var(--wine);font-size:1.1em;
}
.co-pullquote{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(1.5rem,3vw,2.3rem);
  line-height:1.35;color:var(--wine-dk);
  text-align:center;
  padding:2.5rem 0;
  margin:1.5rem 0 2rem;
  border-top:1px solid rgba(90,30,55,.15);
  border-bottom:1px solid rgba(90,30,55,.15);
  letter-spacing:-0.005em;
}
.co-pullquote em{font-style:italic;color:var(--wine);}

/* ═══════════════════════════════════════════════════════
   PARA QUIÉN · wine
═══════════════════════════════════════════════════════ */
.co-for{
  background:var(--wine-dk);
  background-image:
    radial-gradient(ellipse 50% 40% at 15% 15%,rgba(122,46,79,0.18) 0%,transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 85%,rgba(122,46,79,0.15) 0%,transparent 60%);
  padding:7rem 2rem;
}
.co-for-inner{
  max-width:1100px;margin:0 auto;
}
.co-for-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:3rem 4rem;margin-top:3.5rem;
}
.co-for-item{
  display:flex;gap:1.5rem;align-items:flex-start;
}
.co-for-n{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:2.2rem;color:var(--wine-lt);
  line-height:1;flex-shrink:0;opacity:.7;
  min-width:2.5rem;
}
.co-for-item p{
  font-size:1rem;line-height:1.7;font-weight:300;
  color:rgba(235,230,220,.78);
  padding-top:.3rem;
}

/* ═══════════════════════════════════════════════════════
   LAS TRES HERRAMIENTAS · cream, grid
═══════════════════════════════════════════════════════ */
.co-tools{
  background:var(--cream);
  padding:7rem 2rem;
}
.co-tools-head{
  max-width:820px;margin:0 auto 4rem;text-align:center;
}
.co-tools-note{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:1.1rem;color:var(--muted);line-height:1.7;
  margin-top:.5rem;
}
.co-tools-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:2rem;max-width:1300px;margin:0 auto;
}
.co-tool{
  background:var(--cream-lt);
  padding:3rem 2.5rem;
  position:relative;
  border-top:3px solid var(--wine);
  transition:transform .4s, box-shadow .4s;
}
.co-tool:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(60,20,35,.1);}
.co-tool-n{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:2.8rem;color:var(--wine);opacity:.35;
  line-height:1;display:block;margin-bottom:1.5rem;
}
.co-tool-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:1.7rem;color:var(--wine-dk);
  line-height:1.15;margin-bottom:1.2rem;
}
.co-tool-title em{font-style:italic;color:var(--wine);}
.co-tool-desc{
  font-size:.95rem;line-height:1.8;font-weight:300;
  color:var(--text);
}

/* ═══════════════════════════════════════════════════════
   CÓMO EMPEZAMOS · cream-dk, 3 steps timeline
═══════════════════════════════════════════════════════ */
.co-how{
  background:var(--cream-dk);
  padding:7rem 2rem;
}
.co-how-inner{
  max-width:900px;margin:0 auto;
}
.co-how-inner > .co-section-kicker,
.co-how-inner > .co-section-title{
  text-align:center;
}
.co-how-inner > .co-section-title{margin-bottom:3.5rem;}

.co-steps{
  display:flex;flex-direction:column;gap:1px;
  background:rgba(90,30,55,.12);
  padding:1px;
}
.co-step{
  background:var(--cream-lt);
  padding:2.8rem 3rem;
}
.co-step-label{
  display:block;
  font-size:.68rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--wine);margin-bottom:.8rem;font-weight:500;
}
.co-step-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:1.9rem;color:var(--wine-dk);
  line-height:1.1;margin-bottom:1rem;
}
.co-step-title em{font-style:italic;color:var(--wine);}
.co-step-desc{
  font-size:1rem;line-height:1.85;font-weight:300;
  color:var(--text);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIO · dark
═══════════════════════════════════════════════════════ */
.co-testi{
  background:var(--dark);
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 50%,rgba(90,30,55,0.2) 0%,transparent 75%);
  padding:8rem 2rem;text-align:center;
  border-top:1px solid rgba(235,230,220,.04);
  border-bottom:1px solid rgba(235,230,220,.04);
}
.co-testi-inner{
  max-width:880px;margin:0 auto;
}
.co-testi-quote{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(1.6rem,3.5vw,2.6rem);
  line-height:1.4;color:var(--cream);
  margin:1.5rem 0 2rem;letter-spacing:-0.005em;
}
.co-heart{
  font-style:italic;color:var(--wine-lt);
}
.co-testi-who{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:.95rem;color:rgba(235,230,220,.5);
  letter-spacing:.08em;
}

/* ═══════════════════════════════════════════════════════
   INVERSIÓN · cream
═══════════════════════════════════════════════════════ */
.co-invest{
  background:var(--cream-lt);
  padding:7rem 2rem;
}
.co-invest-inner{
  max-width:900px;margin:0 auto;text-align:center;
}
.co-invest-cells{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.5rem;margin-top:3rem;text-align:left;
}
.co-cell{
  background:var(--cream);
  padding:2.5rem 2.3rem;
  border:1px solid rgba(90,30,55,.1);
  transition:transform .3s;
}
.co-cell:hover{transform:translateY(-3px);}
.co-cell-featured{
  background:var(--wine);
  border-color:var(--wine);
  color:var(--cream);
}
.co-cell-label{
  font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--muted);margin-bottom:1.2rem;font-weight:500;
}
.co-cell-featured .co-cell-label{color:rgba(235,230,220,.6);}
.co-cell-val{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:2rem;line-height:1.15;color:var(--wine-dk);
  margin-bottom:1rem;
}
.co-cell-featured .co-cell-val{color:var(--cream);}
.co-cell-val span{
  display:block;font-size:.85rem;font-style:italic;
  color:var(--muted);margin-top:.3rem;
}
.co-cell-featured .co-cell-val span{color:rgba(235,230,220,.55);}
.co-cell-detail{
  font-size:.9rem;line-height:1.7;font-weight:300;
  color:var(--text);
  padding-top:1rem;border-top:1px solid rgba(90,30,55,.1);
}
.co-cell-featured .co-cell-detail{
  color:rgba(235,230,220,.75);border-top-color:rgba(235,230,220,.15);
}
.co-invest-note{
  margin-top:2.5rem;
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:1rem;color:var(--muted);line-height:1.8;
}

/* ═══════════════════════════════════════════════════════
   CTA FINAL · dark warm
═══════════════════════════════════════════════════════ */
.co-cta{
  background:var(--dark);
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 50%,rgba(90,30,55,0.28) 0%,transparent 70%);
  padding:8rem 2rem;text-align:center;
}
.co-cta-eyebrow{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:1rem;color:rgba(235,230,220,.4);
  letter-spacing:.08em;margin-bottom:1rem;
}
.co-cta-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(2.2rem,4.5vw,3.6rem);
  line-height:1.1;color:var(--cream);
  margin-bottom:1.5rem;
}
.co-cta-title em{font-style:italic;color:var(--wine-lt);}
.co-cta-note{
  font-size:.98rem;line-height:1.8;font-weight:300;
  color:rgba(235,230,220,.58);
  max-width:540px;margin:0 auto 2.5rem;
}
.co-cta-row{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
}

/* ═══════════════════════════════════════════════════════
   OTROS CAMINOS · cream-dk
═══════════════════════════════════════════════════════ */
.co-others{
  background:var(--cream-dk);
  padding:7rem 2rem;
}
.co-others-head{
  max-width:760px;margin:0 auto 3.5rem;text-align:center;
}
.co-others-note{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:1.05rem;color:var(--muted);line-height:1.7;
  margin-top:.5rem;
}
.co-others-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;max-width:1200px;margin:0 auto;
}
.co-other-card{
  background:var(--cream-lt);
  padding:2.5rem 2rem;
  text-decoration:none;
  border-top:2px solid var(--wine);
  display:flex;flex-direction:column;
  transition:transform .4s, box-shadow .4s;
  position:relative;
}
.co-other-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(60,20,35,.12);}
.co-other-card img{
  width:46px;height:auto;
  margin-bottom:1rem;
  opacity:.85;
}
.co-other-n{
  position:absolute;top:1.8rem;right:1.8rem;
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:1.2rem;color:var(--wine);opacity:.5;
  letter-spacing:.05em;
}
.co-other-card h3{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:1.35rem;color:var(--wine-dk);
  line-height:1.2;margin-bottom:.9rem;
}
.co-other-card p{
  font-size:.9rem;line-height:1.65;font-weight:300;
  color:var(--text);margin-bottom:1.4rem;flex:1;
}
.co-other-arrow{
  font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--wine);font-weight:400;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.co-footer{
  background:var(--dark);
  padding:4rem 2rem 3rem;
  text-align:center;
  border-top:1px solid rgba(235,230,220,.04);
}
.co-footer img{
  height:48px;margin-bottom:1.5rem;opacity:.85;
}
.co-footer .footer-links{
  display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;
  margin-bottom:1.5rem;
}
.co-footer .footer-links a{
  color:rgba(235,230,220,.65);text-decoration:none;
  font-size:.85rem;letter-spacing:.08em;
  transition:color .3s;
}
.co-footer .footer-links a:hover{color:var(--cream);}
.co-footer .footer-cr{
  display:block;
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:.85rem;color:rgba(235,230,220,.5);
  letter-spacing:.08em;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media(max-width:900px){
  .co-hero{padding:5rem 2rem 4rem;}
  .co-back{top:5rem;left:2rem;}
  .co-for-grid{grid-template-columns:1fr;gap:2rem;}
  .co-tools-grid{grid-template-columns:1fr;gap:1.5rem;}
  .co-invest-cells{grid-template-columns:1fr;gap:1rem;}
  .co-others-grid{grid-template-columns:1fr;gap:1.2rem;}
}

@media(max-width:600px){
  .co-hero{padding:5rem 1.4rem 4rem;min-height:90vh;}
  .co-back{top:4.8rem;left:1.4rem;font-size:.7rem;}
  .co-what,.co-for,.co-tools,.co-how,.co-invest,.co-others{padding:5rem 1.4rem;}
  .co-testi,.co-cta{padding:6rem 1.4rem;}
  .co-tool,.co-step{padding:2.2rem 1.8rem;}
  .co-cell{padding:2rem 1.6rem;}
  .co-for-n{font-size:1.8rem;min-width:2rem;}
  .co-for-item{gap:1rem;}
  .co-cta-row{flex-direction:column;align-items:stretch;}
  .co-cta-row a{text-align:center;}
  .co-hero-icon{width:72px;}
  .co-pullquote{padding:2rem 0;margin:1rem 0 1.5rem;}
}

/* Cómo empezar · channels rows (v16) */
.co-how-text{
  text-align:center;font-size:1.05rem;line-height:1.85;
  color:var(--text);font-weight:300;
  max-width:680px;margin:0 auto 3rem;
}
.co-how-channels{
  max-width:680px;margin:0 auto;
  display:flex;flex-direction:column;gap:1rem;
}
.co-channel{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.6rem 2rem;
  background:var(--cream-lt);
  border:1px solid rgba(90,30,55,.12);
  text-decoration:none;
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.co-channel:hover{
  transform:translateY(-2px);
  border-color:rgba(90,30,55,.25);
  box-shadow:0 8px 24px rgba(90,30,55,.08);
}
.co-channel-label{
  font-family:'Fraunces',serif;font-style:italic;font-weight:300;
  font-size:1.2rem;color:var(--wine-dk);
}
.co-channel-link{
  font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--wine);font-weight:500;
}
@media(max-width:600px){
  .co-channel{flex-direction:column;align-items:flex-start;gap:.5rem;padding:1.4rem 1.6rem;}
  .co-channel-label{font-size:1.1rem;}
}
