:root{
  --bg:#FCFAF6;
  --surface:#FFFFFF;
  --header:#0B0B0B;
  --text:#171717;
  --muted:#5E5A54;
  --gold:#C9A24A;
  --line:rgba(0,0,0,.10);
  --card-border:rgba(0,0,0,.10);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

body{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

a{
  color:inherit;
  text-decoration:none;
}

a:hover{
  text-decoration:none;
}

/* HEADER */
.header{
  background:var(--header);
  border-bottom:1px solid rgba(201,162,74,.22);
  box-shadow:0 12px 30px rgba(0,0,0,.14);
}

.header-inner{
  width:min(80vw, 1600px);
  margin:0 auto;
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:22px 0;
}

.logo{
  flex:0 0 auto;
}

.logo img{
  width:220px;
  height:auto;
  display:block;
}

.main-nav{
  display:flex;
  align-items:center;
  height:100%;
}

.nav-list{
  list-style:none;
  display:flex;
  gap:28px;
  align-items:center;
}

.nav-item{
  position:relative;
}

.nav-item > a,
.nav-trigger{
  color:#FFFFFF;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.5px;
  transition:color .18s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav-trigger{
  background:none;
  border:none;
  cursor:pointer;
  font:inherit;
  padding:0;
}

.nav-item > a:hover,
.nav-trigger:hover{
  color:var(--gold);
}

.submenu{
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  min-width:220px;
  list-style:none;
  background:#141414;
  border:1px solid rgba(201,162,74,.22);
  border-radius:14px;
  padding:10px 0;
  box-shadow:0 16px 34px rgba(0,0,0,.28);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:20;
}

.submenu li{
  width:100%;
}

.submenu a{
  display:block;
  padding:10px 16px;
  color:#FFFFFF;
  font-size:14px;
  font-weight:400;
  letter-spacing:0.2px;
  white-space:nowrap;
}

.submenu a:hover{
  color:var(--gold);
  background:rgba(201,162,74,.08);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* BOTÓN HAMBURGUESA */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  padding:0;
  width:44px;
  height:44px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}

.menu-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#344B63;
  border-radius:999px;
  transition:transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* HERO */
.hero{
  display:flex;
  justify-content:center;
  padding:54px 24px 26px;
}

.hero-inner{
  width:min(1040px,100%);
  text-align:center;
}

.site-title{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:64px;
  font-weight:600;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--gold);
  line-height:0.95;
}

.hero-subtitle{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:28px;
  line-height:1.15;
  color:var(--text);
  margin-bottom:20px;
}

.kicker{
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:16px;
}

.p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:16px;
  color:var(--muted);
}

.p strong,
li strong{
  color:var(--text);
  font-weight:600;
}

.meta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:18px;
}

.badge{
  border:1px solid rgba(201,162,74,.30);
  border-radius:999px;
  padding:10px 14px;
  background:#F7F2E7;
  font-size:14px;
  color:var(--text);
}

.hero-image{
  margin-top:34px;
}

.hero-image .placeholder{
  aspect-ratio:16/7;
}

.link-back,
.link-secondary{
  display:inline-block;
  margin-top:12px;
  font-size:14px;
  color:var(--muted);
  border-bottom:1px solid rgba(201,162,74,.35);
  padding-bottom:2px;
}

.link-back:hover,
.link-secondary:hover{
  color:var(--gold);
  border-color:var(--gold);
}

/* CONTENT */
.content{
  display:flex;
  justify-content:center;
  padding:30px 24px 56px;
}

.wrap{
  width:min(1100px,100%);
}

.hr{
  height:1px;
  background:var(--line);
  margin:34px 0;
}

.section{
  display:grid;
  grid-template-columns:1.5fr .9fr;
  gap:42px;
  align-items:center;
}

.section.reverse{
  grid-template-columns:.9fr 1.5fr;
}

.section-title,
.section-copy h3,
.card h3,
.integration h3,
.transformation h3,
.final-cta h3,
.portal-title{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--text);
}

.section-title{
  font-size:40px;
  line-height:1.05;
  margin-bottom:18px;
  text-align:center;
}

.section-copy h3,
.card h3,
.integration h3,
.transformation h3,
.final-cta h3{
  font-size:36px;
  line-height:1.08;
  letter-spacing:.2px;
  margin-bottom:16px;
  font-weight:600;
}

.section-copy ul,
.integration ul,
.compare ul,
.block ul{
  padding-left:20px;
}

.section-copy ul{
  margin-top:12px;
}

.section-copy li,
.integration li,
.compare li,
.block li{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.section-copy li,
.integration li,
.compare li{
  margin:8px 0;
}

.block li{
  margin:7px 0;
}

.placeholder{
  width:100%;
  aspect-ratio:4/5;
  border-radius:18px;
  background:linear-gradient(180deg,#EFE7D7 0%, #E9E9E9 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#7A746C;
  font-size:14px;
  text-align:center;
  padding:14px;
  border:1px solid rgba(201,162,74,.18);
}

.image-box,
.image-box2,
.image-box3{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(201,162,74,.18);
  background:linear-gradient(180deg,#EFE7D7 0%, #E9E9E9 100%);
  height:450px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.image-box img{
  width:100%;
  height:auto;
  transform:translateY(+0%);
}

.image-box2 img{
  width:100%;
  height:auto;
  transform:translateY(+5%);
}

.image-box3 img{
  width:100%;
  height:auto;
  transform:translateY(-1.5%);
}

.card,
.portal-card,
.integration,
.transformation,
.final-cta{
  border:1px solid var(--card-border);
  border-radius:24px;
  background:var(--surface);
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.card,
.integration,
.transformation,
.final-cta{
  padding:30px;
}

.portal-card{
  padding:28px;
}

.values{
  margin-top:18px;
}

.value-row{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  font-size:15px;
  color:var(--text);
}

.cta,
.cta-row{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.cta{
  margin-top:24px;
}

.cta-row{
  margin-top:20px;
}

.btn{
  border:1px solid rgba(201,162,74,.45);
  border-radius:999px;
  padding:13px 20px;
  font-size:14px;
  font-weight:500;
  background:#F7F2E7;
  color:var(--text);
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease, transform .08s ease;
}

.btn:hover{
  background:#F1E4C3;
  border-color:rgba(201,162,74,.75);
}

.btn:active{
  transform:translateY(1px);
}

.terms{
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
}

/* PROGRAM DETAIL */
.program-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.portal-date{
  font-size:12px;
  font-weight:600;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}

.portal-title{
  font-size:34px;
  line-height:1.05;
  margin-bottom:6px;
}

.portal-subtitle{
  font-size:18px;
  color:var(--gold);
  font-weight:600;
  margin-bottom:18px;
}

.block{
  margin-bottom:16px;
}

.block:last-child{
  margin-bottom:0;
}

.block-label{
  display:block;
  font-size:13px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
  margin-bottom:8px;
}

.block p{
  font-size:16px;
  line-height:1.75;
  color:var(--muted);
}

.habit-key{
  background:#F7F2E7;
  border:1px solid rgba(201,162,74,.24);
  border-radius:16px;
  padding:12px 14px;
  color:var(--text);
}

.compare-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:18px;
}

.compare{
  border:1px solid rgba(201,162,74,.20);
  border-radius:18px;
  padding:20px;
  background:#FFFCF6;
}

.compare h4{
  font-size:16px;
  margin-bottom:10px;
  color:var(--text);
}

/* FOOTER */
.footer{
  text-align:center;
  font-size:13px;
  color:var(--muted);
  padding:38px 10px 22px;
  letter-spacing:0.4px;
  opacity:0.9;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .header-inner{
    width:min(88vw, 1600px);
  }

  .logo img{
    width:180px;
  }

  .site-title{
    font-size:52px;
  }

  .nav-list{
    gap:18px;
  }

  .program-grid,
  .compare-wrap{
    grid-template-columns:1fr;
  }
}

@media(max-width:800px){
  .header-inner{
    width:min(92vw, 1600px);
    min-height:unset;
    padding:16px 0;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:10px 16px;
  }

  .logo{
    grid-column:1;
    grid-row:1;
  }

  .logo img{
    width:140px;
    height:auto;
  }

  .menu-toggle{
    display:flex;
    grid-column:2;
    grid-row:1;
    justify-self:end;
  }

  .main-nav{
    grid-column:1 / -1;
    grid-row:2;
    width:100%;
    display:none;
    justify-content:flex-start;
    align-items:flex-start;
    padding-top:8px;
    height:auto;
  }

  .main-nav.is-open{
    display:flex;
  }

  .nav-list{
    width:100%;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:0;
    align-items:flex-start;
  }

  .nav-item{
    width:100%;
  }

  .nav-item > a,
  .nav-trigger{
    width:100%;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    padding:12px 0;
    font-size:13px;
  }

  .submenu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    min-width:unset;
    margin-top:0;
    margin-left:0;
    background:transparent;
    border:none;
    box-shadow:none;
    display:none;
    padding:0 0 8px 14px;
  }

  .submenu li{
    width:100%;
  }

  .submenu a{
    padding:8px 0;
    font-size:13px;
    color:#D9D9D9;
    white-space:normal;
  }

  .submenu a:hover{
    background:transparent;
    color:var(--gold);
  }

  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu{
    display:block;
  }

  .hero{
    padding:34px 20px 20px;
  }

  .site-title{
    font-size:40px;
    white-space:normal;
    line-height:1;
    margin-bottom:14px;
  }

  .hero-subtitle{
    font-size:22px;
  }

  .content{
    padding:24px 16px 42px;
  }

  .hr{
    margin:24px 0;
  }

  .section,
  .section.reverse{
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:stretch;
  }

  .program-grid,
  .compare-wrap{
    grid-template-columns:1fr;
  }

  .section-copy{
    order:1;
  }

  .image-box,
  .image-box2,
  .image-box3{
    order:2;
    width:min(75%, 320px);
    height:260px;
    margin:0 auto;
    border-radius:16px;
  }

  .image-box2{
    height:280px;
  }

  .image-box3{
    height:240px;
  }

  .image-box img,
  .image-box2 img,
  .image-box3 img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:none;
    display:block;
  }

  .card,
  .portal-card,
  .integration,
  .transformation,
  .final-cta{
    padding:22px 18px;
  }

  .portal-title{
    font-size:30px;
  }

  .section-title,
  .section-copy h3,
  .card h3,
  .integration h3,
  .transformation h3,
  .final-cta h3{
    font-size:30px;
  }

  .p{
    font-size:16px;
    line-height:1.8;
  }
}