:root{
      --cream:#fff7ec;
      --paper:#fffbf4;
      --ink:#25212c;
      --muted:#6b6275;
      --coral:#ff6b5f;
      --coral2:#ff8b7f;
      --teal:#00a99d;
      --mint:#d8fff4;
      --yellow:#ffd166;
      --violet:#7c5cff;
      --white:#fff;
      --line:rgba(37,33,44,.12);
      --shadow:0 24px 60px rgba(70,50,35,.16);
      --max:1160px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 0%,rgba(255,107,95,.16),transparent 28%),
        radial-gradient(circle at 88% 12%,rgba(0,169,157,.18),transparent 30%),
        linear-gradient(180deg,var(--cream),var(--paper));
    }
    a{text-decoration:none;color:inherit}
    .wrap{width:min(var(--max),calc(100% - 38px));margin:0 auto}

    .nav{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,251,244,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(37,33,44,.08);
    }
    .nav-inner{
      min-height:78px;
      display:flex;
      align-items:start;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:18px;
      font-weight:950;
      letter-spacing:-.04em;
      font-size:22px;
      padding:8px 0;
    }
    .brand-logo{
      width:66px;
      height:66px;
      display:block;
      object-fit:contain;
      border-radius:16px;
      background:#000 url("../img/logo-web-ui.png") center/contain no-repeat;
      border:2px solid var(--ink);
      box-shadow:6px 6px 0 var(--ink);
      flex:none;
    }
    .brand small{
      display:block;
      color:var(--muted);
      font-size:10px;
      letter-spacing:.13em;
      text-transform:uppercase;
      font-weight:700;
      margin-top:5px;
      line-height:1.35;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:28px;
      color:var(--muted);
      font-size:14px;
      font-weight:800;
    }
    .nav-links a:hover{color:var(--ink)}

    .btn{
      min-height:50px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 26px;
      border-radius:16px;
      font-weight:950;
      border:2px solid var(--ink);
      background:var(--white);
      box-shadow:5px 5px 0 var(--ink);
      transition:transform .15s ease,box-shadow .15s ease;
      cursor:pointer;
    }
    .btn:hover{transform:translate(2px,2px);box-shadow:3px 3px 0 var(--ink)}
    .btn.primary{background:var(--yellow)}
    .btn.coral{background:var(--coral);color:#fff}
    .btn.simple{box-shadow:none;border-color:var(--line);background:rgba(255,255,255,.72);color:var(--ink)}

    .hero{
      position:relative;
      overflow:hidden;
      padding:28px 0 72px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.03fr .97fr;
      gap:50px;
      align-items:center;
    }
    .pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-bottom:24px;
    }
    .pill{
      width:fit-content;
      display:inline-flex;
      gap:8px;
      align-items:center;
      padding:9px 13px;
      border:2px solid var(--ink);
      border-radius:999px;
      background:var(--mint);
      box-shadow:4px 4px 0 var(--ink);
      font-size:12px;
      font-weight:950;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:0;
    }
    .pill.alt-one{
      background:#ffe8df;
    }
    .pill.alt-two{
      background:#fff0b8;
    }
    .pill i{width:9px;height:9px;background:var(--coral);border-radius:50%}
    h1{
      margin:0;
      font-size:clamp(46px,7.2vw,92px);
      line-height:.88;
      letter-spacing:-.075em;
      max-width:780px;
    }
    h1 .highlight{
      display:inline-block;
      background:linear-gradient(180deg,transparent 54%,rgba(255,209,102,.85) 54%);
      padding:0 6px;
      transform:rotate(-1deg);
    }
    .lead{
      margin:26px 0 0;
      max-width:680px;
      color:var(--muted);
      font-size:clamp(18px,2vw,22px);
      line-height:1.62;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:32px;
    }

    .price-strip{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:36px;
    }
    .price-chip{
      padding:14px 16px;
      border:2px solid var(--ink);
      border-radius:20px;
      background:#fff;
      box-shadow:5px 5px 0 rgba(37,33,44,.95);
      font-weight:900;
    }
    .price-chip span{display:block;color:var(--muted);font-size:13px;font-weight:700;margin-top:3px}

    .visual{
      position:relative;
      min-height:540px;
      margin-top:120px;
    }
    .screen{
      position:absolute;
      inset:42px 0 auto 48px;
      min-height:360px;
      border:3px solid var(--ink);
      border-radius:28px;
      background:#fff;
      box-shadow:14px 14px 0 var(--ink);
      overflow:hidden;
      transform:rotate(2deg);
    }
    .screen-top{
      height:52px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 18px;
      background:#ffe9e5;
      border-bottom:3px solid var(--ink);
    }
    .dot{width:12px;height:12px;border:2px solid var(--ink);border-radius:50%;background:var(--yellow)}
    .screen-body{padding:26px;background:#fff}
    .mock-hero{
      padding:24px;
      border-radius:22px;
      background:linear-gradient(135deg,var(--teal),#73e3d3);
      color:#06312e;
      border:2px solid var(--ink);
    }
    .mock-hero b{font-size:13px;text-transform:uppercase;letter-spacing:.12em}
    .mock-hero h2{margin:10px 0 0;font-size:34px;line-height:.96;letter-spacing:-.06em}
    .mock-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:44px;
    }
    .mock-card{
      min-height:82px;
      border:2px solid var(--ink);
      border-radius:18px;
      padding:13px;
      background:#fff7ec;
    }
    .mock-card strong{display:block;font-size:13px}
    .mock-card p{margin:7px 0 0;font-size:11px;color:var(--muted);line-height:1.32}

    .sticker{
      position:absolute;
      border:3px solid var(--ink);
      border-radius:22px;
      background:var(--yellow);
      box-shadow:8px 8px 0 var(--ink);
      padding:18px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .sticker.one{right:2px;top:-26px;transform:rotate(7deg);font-size:28px}
    .sticker.two{left:0;bottom:52px;background:var(--coral);color:#fff;transform:rotate(-6deg);font-size:24px}
    .sticker.three{right:42px;bottom:0;background:var(--mint);transform:rotate(4deg);font-size:20px}

    section{padding:46px 0 64px}
    .section-head{
      max-width:760px;
      margin-bottom:38px;
    }
    .kicker{
      color:var(--coral);
      font-size:12px;
      font-weight:950;
      letter-spacing:.14em;
      text-transform:uppercase;
      margin-bottom:12px;
    }
    h2{
      margin:0;
      font-size:clamp(34px,4vw,58px);
      line-height:.98;
      letter-spacing:-.06em;
    }
    .section-head p{
      margin:18px 0 0;
      color:var(--muted);
      font-size:18px;
      line-height:1.62;
    }

    .grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .card{
      position:relative;
      padding:30px;
      border:2px solid var(--ink);
      border-radius:28px;
      background:#fff;
      box-shadow:8px 8px 0 var(--ink);
      overflow:hidden;
    }
    .card::after{
      content:"";
      position:absolute;
      right:-24px;
      top:-24px;
      width:82px;
      height:82px;
      border-radius:50%;
      background:rgba(255,209,102,.6);
    }
    .num{
      width:44px;
      height:44px;
      border:2px solid var(--ink);
      border-radius:14px;
      display:grid;
      place-items:center;
      background:var(--mint);
      font-weight:950;
      margin-bottom:18px;
    }
    .card h3{
      margin:0;
      font-size:25px;
      line-height:1.04;
      letter-spacing:-.04em;
    }
    .card p{
      color:var(--muted);
      line-height:1.58;
      margin:14px 0 0;
    }

    .works{
      background:#fff;
      border-top:2px solid rgba(37,33,44,.08);
      border-bottom:2px solid rgba(37,33,44,.08);
    }
    .work{
      overflow:hidden;
      border:2px solid var(--ink);
      border-radius:30px;
      background:#fff;
      box-shadow:8px 8px 0 var(--ink);
    }
    .work-shot{
      min-height:190px;
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.42),transparent 28%),
        linear-gradient(135deg,var(--coral),var(--violet));
      color:#fff;
      border-bottom:2px solid var(--ink);
    }
    .work:nth-child(1) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.42),transparent 28%),
        linear-gradient(135deg,#f58d9d,#7c5cff);
      color:#fff;
    }
    .work:nth-child(2) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.35),transparent 28%),
        linear-gradient(135deg,#17b7b0,#7ce7d5);
      color:#06312e;
    }
    .work:nth-child(3) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.28),transparent 28%),
        linear-gradient(135deg,#f2c45d,#f7a95d);
      color:#3d2d00;
    }
    .work:nth-child(4) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.30),transparent 28%),
        linear-gradient(135deg,#5ea6ff,#8a7dff);
      color:#ffffff;
    }
    .work:nth-child(5) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.30),transparent 28%),
        linear-gradient(135deg,#7fd36b,#b2ec7a);
      color:#173b10;
    }
    .work-shot span{
      width:fit-content;
      padding:8px 12px;
      border-radius:999px;
      border:2px solid rgba(255,255,255,.92);
      font-size:12px;
      font-weight:950;
      background:rgba(0,0,0,.12);
      color:#ffffff;
    }
    .work-shot strong{
      font-size:32px;
      line-height:.96;
      letter-spacing:-.06em;
    }
    .work-body{padding:24px}
    .work-body h3{margin:0;font-size:23px;letter-spacing:-.04em}
    .work-body p{margin:12px 0 0;color:var(--muted);line-height:1.55}

    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .step{
      padding:24px;
      border-left:4px solid var(--coral);
      border-radius:24px;
      background:#fff;
      box-shadow:0 16px 38px rgba(37,33,44,.08);
    }
    .step span{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;
      height:34px;
      border-radius:50%;
      background:var(--ink);
      color:#fff;
      font-weight:950;
      margin-bottom:14px;
    }
    .step h3{margin:0;font-size:22px;letter-spacing:-.035em}
    .step p{margin:12px 0 0;color:var(--muted);line-height:1.55}

    .cta{
      background:
        radial-gradient(circle at 80% 10%,rgba(0,169,157,.18),transparent 32%),
        linear-gradient(135deg,#fff,#fff3df);
    }
    .cta-box{
      display:grid;
      grid-template-columns:1fr .85fr;
      gap:42px;
      align-items:start;
      padding:42px;
      border:3px solid var(--ink);
      border-radius:36px;
      background:#fff;
      box-shadow:12px 12px 0 var(--ink);
    }
    .cta-box p{
      color:var(--muted);
      line-height:1.65;
      font-size:18px;
    }
    .contact{
      display:grid;
      gap:12px;
      padding:26px;
      border:2px solid var(--ink);
      border-radius:28px;
      background:var(--cream);
    }
    label{font-size:13px;font-weight:900}
    input,select,textarea{
      width:100%;
      border:2px solid var(--ink);
      border-radius:15px;
      padding:13px 14px;
      font:inherit;
      background:#fff;
      color:var(--ink);
    }
    textarea{min-height:118px;resize:vertical}
    .oculto{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}

    footer{
      padding:30px 0;
      background:var(--ink);
      color:#f5eadc;
      font-size:14px;
    }
    .footer-inner{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    @media(max-width:980px){
      .nav-links{display:none}
      .hero-grid,.cta-box{grid-template-columns:1fr}
      .visual{min-height:500px}
      .screen{left:20px}
      .grid{grid-template-columns:1fr}
      .steps{grid-template-columns:repeat(2,1fr)}
    }
    @media(max-width:680px){
      .wrap{width:min(100% - 28px,var(--max))}
      .hero{padding:24px 0 54px}
      .hero-grid{gap:30px}
      .visual{min-height:430px;margin-top:44px}
      .screen{inset:30px 6px auto 10px;box-shadow:8px 8px 0 var(--ink)}
      .mock-grid,.steps{grid-template-columns:1fr}
      .sticker.one{right:0;top:-14px;font-size:20px}
      .sticker.two{bottom:32px;font-size:18px}
      .sticker.three{right:10px;font-size:16px}
      .brand-logo{width:56px;height:56px}
      section{padding:38px 0 52px}
      .cta-box{padding:26px;border-radius:28px}
    }
  
    .sticker.four{
      right:8px;
      top:108px;
      background:#fff;
      color:var(--ink);
      transform:rotate(-4deg);
      font-size:18px;
      line-height:1.05;
      text-align:center;
    }

    @media(max-width:680px){
      .sticker.four{
        right:2px;
        top:92px;
        font-size:15px;
        padding:14px;
      }
    }

  
    .captcha-box{
      display:grid;
      gap:8px;
      padding:14px;
      border:2px solid var(--ink);
      border-radius:18px;
      background:#fff;
    }
    .captcha-question{
      font-weight:950;
      color:var(--ink);
      font-size:14px;
    }

  
    .captcha-answer-line{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .captcha-answer-line input{
      flex:1;
      min-width:0;
    }
    .captcha-status{
      width:34px;
      height:34px;
      border:2px solid var(--ink);
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:950;
      font-size:18px;
      background:#fff;
      opacity:0;
      transform:scale(.82);
      transition:opacity .18s ease, transform .18s ease;
      flex:none;
    }
    .captcha-status.visible{
      opacity:1;
      transform:scale(1);
    }
    .captcha-status.ok{
      background:#d8fff4;
      color:#007f73;
    }
    .captcha-status.error{
      background:#ffe9e5;
      color:#c4312a;
    }

  
    html{
      scroll-padding-top:78px;
    }

    #inicio{
      scroll-margin-top:0px;
    }

    @media(max-width:680px){
      html{
        scroll-padding-top:66px;
      }

      #inicio{
        scroll-margin-top:0px;
      }
    }

  
    /* Ajuste final portada: menos espacio sobre la primera etiqueta */
    .hero{
      padding-top:28px !important;
    }

    @media(max-width:680px){
      .hero{
        padding-top:24px !important;
      }
    }

  
    /* Ajuste secciones: menos espacio antes de los títulos */
    section{
      padding-top:46px !important;
      padding-bottom:64px !important;
    }

    @media(max-width:680px){
      section{
        padding-top:38px !important;
        padding-bottom:52px !important;
      }
    }

  
    /* Hero: ambos bloques parten al mismo nivel */
    .hero-grid{
      align-items:start !important;
    }

  
    /* Ajuste dibujo: bajar un poco el mockup derecho */
    .visual{
      margin-top:120px !important;
    }

    @media(max-width:680px){
      .visual{
        margin-top:120px !important;
      }
    }

  
    /* Header con más aire */
    .nav-inner{
      min-height:90px !important;
      gap:24px !important;
    }

    .brand{
      gap:18px !important;
      padding:8px 0 !important;
    }

    .brand > div{
      line-height:1.04;
    }

    .brand small{
      margin-top:5px !important;
      line-height:1.35 !important;
    }

    .brand-logo{
      width:66px !important;
      height:66px !important;
    }

    @media(max-width:680px){
      .nav-inner{
        min-height:82px !important;
      }

      .brand{
        gap:12px !important;
        padding:6px 0 !important;
      }

      .brand-logo{
        width:56px !important;
        height:56px !important;
      }
    }

  
    /* Header: más aire en menú derecho */
    .nav-links{
      gap:28px !important;
    }

    .nav-links .btn,
    .nav-links a.btn{
      min-height:50px !important;
      padding-left:28px !important;
      padding-right:28px !important;
    }

    @media(max-width:980px){
      .nav-links{
        gap:20px !important;
      }
    }

  
    /* Ajuste botón del header: un poco más abajo */
    .nav-links .btn,
    .nav-links a.btn{
      margin-top:6px !important;
    }

    @media(max-width:980px){
      .nav-links .btn,
      .nav-links a.btn{
        margin-top:4px !important;
      }
    }

  
    /* Ajuste dibujo: bajar más el mockup derecho para reducir el aire abajo */
    .visual{
      margin-top:48px !important;
    }

    @media(max-width:680px){
      .visual{
        margin-top:120px !important;
      }
    }

  
    /* Ajuste dibujo: bajar bastante el mockup derecho */
    .visual{
      margin-top:120px !important;
    }

    @media(max-width:680px){
      .visual{
        margin-top:44px !important;
      }
    }

  
    /* Títulos de los bloques de ejemplos en blanco */
    .work-shot strong{
      color:#ffffff !important;
    }

    /* Fondos ajustados para mejor contraste */
    .work:nth-child(1) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.28),transparent 28%),
        linear-gradient(135deg,#eb738a,#774fe6) !important;
      color:#ffffff !important;
    }

    .work:nth-child(2) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.22),transparent 28%),
        linear-gradient(135deg,#0c9a93,#53cfc1) !important;
      color:#ffffff !important;
    }

    .work:nth-child(3) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.20),transparent 28%),
        linear-gradient(135deg,#dba53c,#ec9447) !important;
      color:#ffffff !important;
    }

    .work:nth-child(4) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.22),transparent 28%),
        linear-gradient(135deg,#4b8ef0,#6c62ef) !important;
      color:#ffffff !important;
    }

    .work:nth-child(5) .work-shot{
      background:
        radial-gradient(circle at 18% 8%,rgba(255,255,255,.20),transparent 28%),
        linear-gradient(135deg,#67bf53,#9ad95d) !important;
      color:#ffffff !important;
    }

  
    /* Ajuste menú superior derecho: bajar un poquito */
    .nav-links{
      margin-top:6px !important;
    }

    @media(max-width:980px){
      .nav-links{
        margin-top:4px !important;
      }
    }

  
    /* Bot de ayuda sin IA */
    .faq-bot-button{position:fixed;right:22px;bottom:22px;z-index:80;min-height:54px;padding:0 20px;border:2px solid var(--ink);border-radius:999px;background:var(--yellow);color:var(--ink);font-weight:950;box-shadow:6px 6px 0 var(--ink);cursor:pointer;display:inline-flex;align-items:center;gap:10px}
    .faq-bot-button span{width:26px;height:26px;border-radius:50%;display:grid;place-items:center;background:#fff;border:2px solid var(--ink);font-size:15px}
    .faq-bot-panel{position:fixed;right:22px;bottom:92px;z-index:81;width:min(390px,calc(100vw - 32px));max-height:min(640px,calc(100vh - 120px));border:2px solid var(--ink);border-radius:28px;background:#fff;box-shadow:10px 10px 0 var(--ink);overflow:hidden;display:none}
    .faq-bot-panel.activo{display:block}
    .faq-bot-head{padding:18px;background:linear-gradient(135deg,var(--mint),#fff0b8);border-bottom:2px solid var(--ink);display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
    .faq-bot-head strong{display:block;font-size:18px;letter-spacing:-.035em;color:var(--ink)}
    .faq-bot-head small{display:block;margin-top:4px;color:var(--muted);line-height:1.35;font-weight:700}
    .faq-bot-close{width:34px;height:34px;border:2px solid var(--ink);border-radius:50%;background:#fff;color:var(--ink);font-size:20px;line-height:1;cursor:pointer;flex:none;font-weight:950}
    .faq-bot-body{padding:16px;overflow:auto;max-height:445px;background:#fffbf4}
    .bot-msg{width:fit-content;max-width:100%;padding:12px 14px;border:2px solid var(--ink);border-radius:18px;background:#fff;box-shadow:4px 4px 0 rgba(37,33,44,.95);color:var(--ink);line-height:1.45;font-size:14px;margin-bottom:12px}
    .bot-msg.respuesta{background:#d8fff4}
    .bot-options{display:grid;gap:8px;margin-top:12px}
    .bot-option{width:100%;text-align:left;padding:10px 12px;border:2px solid var(--ink);border-radius:15px;background:#fff;color:var(--ink);font-weight:850;cursor:pointer;box-shadow:3px 3px 0 rgba(37,33,44,.95)}
    .bot-option:hover{background:#fff0b8}
    .faq-bot-input{display:flex;gap:8px;padding:12px;border-top:2px solid var(--ink);background:#fff}
    .faq-bot-input input{flex:1;min-width:0;border:2px solid var(--ink);border-radius:14px;padding:11px 12px;font:inherit;color:var(--ink);background:#fff}
    .faq-bot-input button{border:2px solid var(--ink);border-radius:14px;padding:0 14px;background:var(--coral);color:#fff;font-weight:950;cursor:pointer;box-shadow:3px 3px 0 var(--ink)}
    .bot-contact-link{display:inline-flex;margin-top:8px;font-weight:950;color:var(--ink);text-decoration:underline}
    @media(max-width:680px){.faq-bot-button{right:16px;bottom:16px;min-height:50px;padding:0 16px}.faq-bot-panel{right:16px;bottom:82px}}

  
    /* Bot: mostrar automáticamente la última respuesta */
    .faq-bot-body{
      scroll-behavior:smooth;
      padding-bottom:22px !important;
    }

  
    
    /* Botón WhatsApp: ícono real */
    .whatsapp-float{
      position:fixed;
      left:22px;
      bottom:22px;
      z-index:82;
      width:58px;
      height:58px;
      border:2px solid var(--ink);
      border-radius:50%;
      background:#25D366;
      color:#ffffff;
      box-shadow:6px 6px 0 var(--ink);
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition:transform .15s ease, box-shadow .15s ease;
      text-decoration:none;
    }
    .whatsapp-float:hover{
      transform:translate(2px,2px);
      box-shadow:4px 4px 0 var(--ink);
    }
    .whatsapp-icon{
      width:32px;
      height:32px;
      display:block;
      color:#ffffff;
      flex:none;
    }
    .whatsapp-icon svg{
      width:100%;
      height:100%;
      display:block;
      fill:currentColor;
    }
    @media(max-width:680px){
      .whatsapp-float{
        left:16px;
        bottom:16px;
        width:54px;
        height:54px;
      }
      .whatsapp-icon{
        width:30px;
        height:30px;
      }
    }


/* Avisos bonitos del formulario */
.form-alert{
  display:none;
  margin:0 0 18px;
  padding:14px 16px;
  border:2px solid var(--ink);
  border-radius:18px;
  background:#fff0b8;
  color:var(--ink);
  font-weight:850;
  box-shadow:4px 4px 0 var(--ink);
  line-height:1.45;
}
.form-alert.is-visible{
  display:block;
}
.form-alert.success{
  background:#d8fff4;
}
.form-alert.error{
  background:#ffe0dc;
}
.privacy-note{
  margin:6px 0 12px;
  color:var(--muted);
  font-size:11.5px;
  line-height:1.35;
  font-weight:600;
  opacity:.78;
}

/* Página de gracias */
.thanks-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:32px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,217,90,.35), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(216,255,244,.65), transparent 30%),
    var(--cream);
}
.thanks-card{
  width:min(760px,100%);
  background:#fffdf7;
  border:3px solid var(--ink);
  border-radius:34px;
  box-shadow:12px 12px 0 var(--ink);
  padding:38px;
  text-align:center;
}
.thanks-badge{
  width:74px;
  height:74px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  border:3px solid var(--ink);
  border-radius:50%;
  background:#d8fff4;
  font-size:34px;
  box-shadow:5px 5px 0 var(--ink);
}
.thanks-card h1{
  margin:0 0 12px;
  color:var(--ink);
  letter-spacing:-.05em;
  font-size:clamp(34px,6vw,64px);
  line-height:1;
}
.thanks-card p{
  margin:0 auto 24px;
  max-width:56ch;
  color:var(--muted);
  font-weight:750;
  line-height:1.55;
}
.thanks-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
.thanks-actions a{
  text-decoration:none;
}


/* Formulario de contacto más compacto */
.contact{
  gap:8px !important;
  padding:20px !important;
  border-radius:24px !important;
}
.contact label{
  font-size:12px !important;
  line-height:1.2 !important;
  margin-top:2px;
}
.contact input,
.contact select,
.contact textarea{
  padding:10px 12px !important;
  border-radius:13px !important;
  font-size:14px !important;
}
.contact textarea{
  min-height:86px !important;
}
.contact .captcha-box{
  gap:6px !important;
  padding:11px !important;
  border-radius:16px !important;
  margin-top:4px;
}
.contact .captcha-question{
  font-size:13px !important;
}
.contact .btn{
  min-height:44px !important;
  margin-top:4px;
}
.privacy-note{
  margin:4px 0 8px !important;
  color:var(--muted);
  font-size:10.5px !important;
  line-height:1.3 !important;
  font-weight:500 !important;
  opacity:.68 !important;
}


/* Footer alineado */
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  line-height:1.2;
}
.footer-logo{
  width:42px;
  height:42px;
  display:block;
  flex:none;
  border-radius:12px;
  background:#000 url("../img/logo-web-ui.png") center/contain no-repeat;
  border:2px solid #fff;
}
.footer-brand-text,
.footer-note{
  display:flex;
  align-items:center;
  min-height:42px;
  line-height:1.2;
}
.footer-note{
  text-align:right;
}
@media(max-width:760px){
  .footer-inner{
    align-items:flex-start;
  }
  .footer-note{
    text-align:left;
    min-height:auto;
  }
}
