:root{
    --ivory:#FFFFFF;
    --ivory-2:#F0F0EC;
    --olive-deep:#3E4827;
    --olive:#4E5B31;
    --sage:#BBC592;
    --khaki:#D5CB9F;
    --wine:#572932;
    --shadow-sm: 0 4px 12px rgba(62, 72, 39, 0.08);
    --shadow-md: 0 8px 24px rgba(62, 72, 39, 0.12);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--ivory);
    color:var(--olive-deep);
    font-family:'Work Sans',sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  .display{font-family:'Newsreader',serif;}
  .mono{font-family:'Courier Prime',monospace;}
  a{color:inherit; text-decoration:none; transition: color 0.2s ease;}
  a:hover { color: var(--wine); }
  .wrap{max-width:960px; margin:0 auto; padding:0 32px;}

  .logo-intro{
    background:var(--ivory);
    display:flex; align-items:center; justify-content:center;
    padding:56px 32px 32px;
  }
  .logo-intro-lockup{display:flex; flex-direction:column; align-items:center; gap:4px;}
  .logo-intro-img{width:100%; max-width:320px; height:auto; display:block; border-radius: 8px;}
  .logo-intro-tag{
    font-family:'Work Sans',sans-serif; font-weight:500; text-transform:uppercase;
    font-size:15px; letter-spacing:1.2em; color:var(--olive-deep); margin-top:8px; padding-left:1.2em;
  }

  header{ border-bottom:1px solid rgba(62,72,39,0.12); position:sticky; top:0; background:rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); z-index:100;}
  nav{display:flex; align-items:center; justify-content:space-between; padding:20px 32px; max-width:1080px; margin:0 auto;}
  .logo-word{font-size:22px; font-weight:700; letter-spacing:0.02em; color:var(--olive-deep);}
  .nav-links{display:flex; align-items:center; gap:32px;}
  .nav-links a{font-size:15px; font-weight: 500; color:var(--olive);}
  .nav-links a:hover{color:var(--wine);}
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:14px 28px; border-radius:8px; font-size:15px; font-weight:600;
    cursor:pointer; border:1.5px solid transparent; transition: all 0.3s ease;
  }
  .btn-primary{background:var(--wine); color:var(--ivory); box-shadow: var(--shadow-sm);}
  .btn-primary:hover{background:var(--olive-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--ivory);}
  .btn-ghost{border-color:var(--olive); color:var(--olive-deep);}
  .btn-ghost:hover{background:var(--olive); color:var(--ivory);}

  /* Badges oficiales */
  .badge-store {
    display: inline-flex; align-items: center; background: #000000; color: #FFFFFF; border-radius: 8px;
    padding: 6px 18px 6px 14px; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #333; height: 50px;
  }
  .badge-store:hover { transform: scale(1.03); box-shadow: 0 4px 12px rgba(0,0,0,0.3); color: #FFFFFF; }
  .badge-store svg { margin-right: 12px; flex-shrink: 0; }
  .badge-store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
  .badge-store-sub { font-size: 10px; font-weight: 500; font-family: -apple-system, sans-serif; letter-spacing: 0.2px; }
  .badge-store-main { font-size: 19px; font-weight: 600; font-family: -apple-system, sans-serif; letter-spacing: -0.3px; }

  .hero{padding:80px 32px 64px; text-align:center; background: radial-gradient(circle at center, var(--ivory) 0%, var(--ivory-2) 100%);}
  .hero-inner{max-width:720px; margin:0 auto;}
  .eyebrow-chip{
    display:inline-flex; background:var(--khaki); color:var(--wine); font-weight: 700;
    font-family:'Courier Prime',monospace; font-size:12px; letter-spacing:0.15em;
    padding:8px 20px; border-radius:20px; margin-bottom:28px; box-shadow: var(--shadow-sm);
  }
  h1.display{
    font-size:clamp(36px, 6vw, 56px);
    font-weight:600; line-height:1.15; letter-spacing:-0.01em;
    color:var(--olive-deep);
  }
  h1.display em{font-style:italic; color:var(--wine); font-weight:500;}
  .hero p.sub{max-width:540px; margin:24px auto 36px; color:var(--olive); font-size:18px; line-height:1.7;}
  .hero-price{
    font-size:16px; color:var(--olive-deep); margin-bottom:28px;
    background: rgba(255, 255, 255, 0.6); display: inline-block; padding: 12px 24px; border-radius: 12px; border: 1px solid rgba(62,72,39,0.1);
  }
  .hero-price strong{color:var(--wine); font-size:18px; font-weight: 700;}

  section{padding:88px 32px;}
  .section-head{max-width:640px; margin:0 auto 56px; text-align:center;}
  .section-head h2{font-size:clamp(28px,4vw,40px); font-weight:600; line-height:1.2; color:var(--olive-deep);}
  .section-head p{color:var(--olive); margin-top:16px; font-size:17px; line-height:1.65;}

  /* pasos: como funciona */
  .steps{max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:32px;}
  .step{text-align:center; padding:32px 24px; background: var(--ivory-2); border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease;}
  .step:hover{transform: translateY(-8px); box-shadow: var(--shadow-md);}
  .step-num{font-family:'Courier Prime',monospace; font-size:14px; color:var(--wine); font-weight: 700; letter-spacing:0.1em; margin-bottom:16px; display: inline-block; background: var(--khaki); padding: 4px 12px; border-radius: 8px;}
  .step h4{font-family:'Newsreader',serif; font-size:22px; margin-bottom:12px; font-weight: 600; color:var(--olive-deep);}
  .step p{font-size:15px; color:var(--olive); line-height:1.6;}

  /* features */
  .feature-grid{max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:28px;}
  .feature{border:1px solid rgba(62,72,39,0.15); border-left-width:4px; padding:32px 28px; background:var(--ivory); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;}
  .feature:hover{transform: translateY(-4px); box-shadow: var(--shadow-md);}
  .feature h4{font-family:'Newsreader',serif; font-size:20px; margin-bottom:10px; font-weight:600; color:var(--olive-deep);}
  .feature p{font-size:15px; color:var(--olive); line-height:1.6;}

  /* screenshots */
  .app-shots{max-width:860px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
  .app-shot{display:flex; flex-direction:column; align-items:center; gap:24px;}
  .phone-frame{width:100%; max-width:260px; border:4px solid var(--olive-deep); border-radius:24px; padding:10px; background: var(--ivory); box-shadow: var(--shadow-md); transition: transform 0.5s ease;}
  .phone-frame:hover{transform: scale(1.02) translateY(-10px);}
  .phone-frame img{width:100%; display:block; border-radius:14px;}
  .app-shot-label{font-family:'Courier Prime',monospace; font-size:12px; font-weight: 700; letter-spacing:0.1em; color:var(--wine); background: var(--ivory-2); padding: 8px 16px; border-radius: 12px;}

  /* ficha pasaporte */
  .ficha-section{background:var(--ivory-2); border-top:1px solid rgba(62,72,39,0.12); border-bottom:1px solid rgba(62,72,39,0.12);}
  .ficha-wrap{max-width:460px; margin:0 auto;}
  .passport-card{background:var(--ivory); border:2px solid var(--olive-deep); padding:32px; border-radius: 16px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;}
  .passport-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: var(--sage); }
  .passport-top{display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:20px;}
  .pc-label{font-size:12px; font-weight: 700; letter-spacing:0.1em; color:var(--wine); font-family:'Courier Prime',monospace;}
  .pc-icon{width:36px; height:36px; background:var(--olive-deep);
    clip-path:polygon(35% 0%, 65% 0%, 82% 22%, 70% 28%, 100% 100%, 0% 100%, 30% 28%, 18% 22%);}
  .pc-name{font-family:'Newsreader',serif; font-style:italic; font-size:26px; margin-bottom:20px; color:var(--olive-deep);}
  .pc-fields{border-top:2px dashed var(--khaki); padding-top:20px; display:flex; flex-direction:column; gap:12px;}
  .pc-field{display:flex; justify-content:space-between; align-items: center; gap:12px; font-size:13px; font-family:'Courier Prime',monospace;}
  .pc-field .k{color:var(--olive); letter-spacing:0.05em; flex-shrink:0;}
  .pc-field .v{color:var(--olive-deep); font-weight:700; text-align:right; background: rgba(187, 197, 146, 0.2); padding: 4px 8px; border-radius: 4px;}

  /* plan comparativo */
  .plans{max-width:820px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:32px;}
  .plans-single{grid-template-columns:1fr; max-width:440px;}
  .plan{border:1px solid rgba(62,72,39,0.2); padding:40px 32px; border-radius: 16px; background: var(--ivory); transition: transform 0.3s ease, box-shadow 0.3s ease;}
  .plan:hover{transform: translateY(-4px); box-shadow: var(--shadow-md);}
  .plan.destacado{border-color:var(--wine); border-width:2px; box-shadow: var(--shadow-sm); position: relative;}
  .plan.destacado::before { content: "MEJOR OPCIÓN"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--wine); color: var(--ivory); font-family:'Courier Prime',monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 12px; white-space: nowrap; }
  .plan .plan-name{font-family:'Courier Prime',monospace; font-size:13px; font-weight: 700; letter-spacing:0.1em; color:var(--olive); margin-bottom:12px;}
  .plan .plan-price{font-family:'Newsreader',serif; font-size:36px; color:var(--olive-deep); margin-bottom:8px;}
  .plan.destacado .plan-price{color:var(--wine);}
  .plan ul{list-style:none; display:flex; flex-direction:column; gap:14px; margin-top: 24px;}
  .plan li{font-size:15px; color:var(--olive-deep); padding-left:24px; position:relative; line-height: 1.5;}
  .plan li::before{content:"✓"; position:absolute; left:0; color:var(--wine); font-weight: 700;}

  /* preguntas frecuentes */
  .faq{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:24px;}
  .faq-item { background: var(--ivory); padding: 28px 32px; border-radius: 12px; border: 1px solid rgba(62,72,39,0.1); box-shadow: 0 2px 8px rgba(62,72,39,0.04); transition: box-shadow 0.3s ease; }
  .faq-item:hover { box-shadow: var(--shadow-sm); }
  .faq-item h4{font-family:'Newsreader',serif; font-size:20px; font-weight: 600; color:var(--olive-deep); margin-bottom:12px;}
  .faq-item p{font-size:15px; color:var(--olive); line-height:1.7;}

  /* precio / cta */
  .cta{max-width:680px; margin:0 auto; text-align:center; background: var(--ivory); border:2px solid var(--wine); padding:56px 48px; border-radius: 20px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;}
  .cta::after { content: ""; position: absolute; top: 0; right: 0; width: 150px; height: 150px; background: radial-gradient(circle, var(--sage) 0%, transparent 70%); opacity: 0.2; transform: translate(50%, -50%); border-radius: 50%; }
  .cta .price{font-family:'Newsreader',serif; color:var(--wine);}
  .cta .price-note{font-family:'Courier Prime',monospace; font-size:13px; font-weight: 700; color:var(--olive); letter-spacing:0.08em; margin-bottom:28px;}
  .cta h2{font-family:'Newsreader',serif; font-size:clamp(28px,4vw,36px); font-weight:600; margin-bottom:16px; color:var(--olive-deep);}
  .cta p{color:var(--olive); margin-bottom:36px; font-size:17px; line-height: 1.6; position: relative; z-index: 2;}
  .cta .store-buttons { position: relative; z-index: 2; }

  footer{padding:48px 32px 32px; border-top:1px solid rgba(62,72,39,0.12); text-align:center; background: var(--ivory-2);}
  .foot-inner{max-width:1080px; margin:0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px;}
  .foot-links{display:flex; gap:32px; justify-content:center; font-size:14px; font-weight: 500; color:var(--olive);}
  .foot-links a:hover { color: var(--wine); }

  /* --- Nuevas secciones de conversión --- */
  .hero-container { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .hero-text { text-align: left; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-phone { max-width: 280px; transform: rotate(2deg); }
  .hero-phone:hover { transform: rotate(0deg) translateY(-8px); }

  .vs-grid { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .vs-card { padding: 40px; border-radius: 16px; border: 1px solid rgba(62,72,39,0.1); display: flex; flex-direction: column; gap: 16px; }
  .vs-before { background: var(--ivory-2); }
  .vs-after { background: rgba(187,197,146,0.15); border-color: var(--sage); }
  .vs-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; background: rgba(62,72,39,0.1); color: var(--olive-deep); }
  .vs-card h4 { font-family: 'Newsreader', serif; font-size: 22px; color: var(--olive-deep); }
  .vs-card p { font-size: 16px; color: var(--olive); line-height: 1.6; }

  .testimonial-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial { background: var(--ivory); border: 1px solid rgba(62,72,39,0.1); padding: 32px; border-radius: 12px; box-shadow: var(--shadow-sm); }
  .testimonial .stars { color: var(--wine); letter-spacing: 2px; font-size: 14px; margin-bottom: 16px; }
  .testimonial p { font-size: 15px; color: var(--olive-deep); line-height: 1.6; font-style: italic; margin-bottom: 24px; }
  .testimonial .author { font-family: 'Courier Prime', monospace; font-size: 13px; font-weight: 700; color: var(--olive); text-transform: uppercase; }

  /* Selector de Idioma */
  .lang-switcher { display: flex; gap: 8px; font-family: 'Courier Prime', monospace; font-size: 13px; font-weight: 700; }
  .lang-switcher a { color: var(--olive); text-decoration: none; padding: 4px 8px; border-radius: 4px; transition: all 0.2s; }
  .lang-switcher a:hover { color: var(--wine); background: rgba(144, 46, 53, 0.05); }
  .lang-switcher a.active { color: var(--wine); background: rgba(144, 46, 53, 0.1); }

  @media (max-width:768px){
    /* Grillas a una columna */
    .feature-grid{grid-template-columns:1fr; gap:20px;}
    .steps{grid-template-columns:1fr; gap:24px;}
    .app-shots{grid-template-columns:1fr; max-width:320px; gap:40px;}
    .plans{grid-template-columns:1fr; gap:24px;}
    .vs-grid{grid-template-columns:1fr; gap:24px;}
    .testimonial-grid{grid-template-columns:1fr; gap:24px;}
    
    /* Hero ajustado a columna central */
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .hero-text { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-phone { max-width: 240px; margin: 0 auto; transform: none; }
    
    /* Ocultar menú largo */
    .nav-links{display:none;}
    
    /* Espaciados reducidos para pantallas pequeñas */
    nav{padding: 16px 20px;}
    section{padding: 56px 20px;}
    .hero{padding: 56px 20px 48px;}
    .cta{padding: 40px 20px;}
    
    /* Ajustes específicos en elementos */
    .passport-card{padding: 24px;}
    .pc-name{font-size: 22px;}
    .pc-field{font-size: 12px; gap: 8px;}
    .step{padding: 24px 20px;}
    .feature{padding: 24px 20px;}
    .faq-item{padding: 24px 20px;}
    
    /* Botones de tienda */
    .store-buttons {flex-direction: column; align-items: center; gap: 12px !important;}
    .badge-store, .btn-ghost {width: 100%; max-width: 260px; justify-content: center;}
  }
