/* Apps para Vender — diseño moderno común para las apps del PÚBLICO (lo que ve quien saca turno o compra).
   Lo usa /comun/app-cliente.js. Los colores de la marca los pone el JS desde la configuración de cada app
   (--marca). Móvil primero; en PC la barra de abajo pasa a ser un menú arriba. */
:root{
  color-scheme:light;
  --marca:#6f4854;
  --marca-suave:color-mix(in srgb,var(--marca) 12%,#fff);
  --marca-texto:#fff;
  --fondo:#f6f4f3;
  --tarjeta:#ffffff;
  --tarjeta-2:#f0eceb;
  --tinta:#1b1719;
  --tinta-2:#5a5157;
  --apagado:#8c8288;
  --linea:#e6dfdf;
  --ok:#2f7a55;
  --estrella:#e2a100;
  --sombra:0 1px 2px rgba(20,16,18,.06),0 10px 28px -16px rgba(20,16,18,.35);
  --radio:18px;
  --f-titulo:"Poppins",system-ui,-apple-system,"Segoe UI",sans-serif;
  --f-texto:system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  --alto-abajo:66px;
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]){
    color-scheme:dark;
    --marca-suave:color-mix(in srgb,var(--marca) 22%,#1b181f);
    --fondo:#121014;--tarjeta:#1c191f;--tarjeta-2:#262229;--tinta:#f3eef1;--tinta-2:#c7bec4;
    --apagado:#978d95;--linea:#302b35;--ok:#7fc4a4;--sombra:0 1px 2px rgba(0,0,0,.4),0 14px 32px -20px rgba(0,0,0,.8);
  }
}
:root[data-theme="dark"]{
  color-scheme:dark;
  --marca-suave:color-mix(in srgb,var(--marca) 22%,#1b181f);
  --fondo:#121014;--tarjeta:#1c191f;--tarjeta-2:#262229;--tinta:#f3eef1;--tinta-2:#c7bec4;
  --apagado:#978d95;--linea:#302b35;--ok:#7fc4a4;--sombra:0 1px 2px rgba(0,0,0,.4),0 14px 32px -20px rgba(0,0,0,.8);
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body.ac{margin:0;background:var(--fondo);color:var(--tinta);font:15px/1.45 var(--f-texto);
  padding-bottom:calc(var(--alto-abajo) + env(safe-area-inset-bottom,0px));overflow-x:hidden}
.ac img{max-width:100%;display:block}
.ac a{color:inherit}
.ac button{font:inherit;color:inherit}
.ac [hidden]{display:none!important}
.ac-oculto{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.ac :focus-visible{outline:3px solid color-mix(in srgb,var(--marca) 55%,transparent);outline-offset:2px;border-radius:10px}

/* ---------- barra de arriba ---------- */
.ac-top{position:sticky;top:0;z-index:30;display:flex;align-items:center;gap:10px;
  padding:calc(8px + env(safe-area-inset-top,0px)) 12px 8px;background:color-mix(in srgb,var(--fondo) 88%,transparent);
  backdrop-filter:saturate(1.4) blur(12px);-webkit-backdrop-filter:saturate(1.4) blur(12px);border-bottom:1px solid var(--linea)}
.ac-icono-btn{width:42px;height:42px;border-radius:12px;border:0;background:var(--tarjeta);box-shadow:var(--sombra);
  display:grid;place-items:center;cursor:pointer;flex:none}
.ac-icono-btn svg{width:22px;height:22px}
.ac-marca{display:flex;align-items:center;gap:9px;text-decoration:none;min-width:0;flex:1}
.ac-marca img{width:34px;height:34px;border-radius:50%;object-fit:cover;flex:none;background:var(--marca-suave)}
.ac-marca span{font:600 16px/1.2 var(--f-titulo);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ac-topnav{display:none}
.ac-top-cta{display:none}

/* ---------- menú lateral ---------- */
.ac-velo{position:fixed;inset:0;z-index:40;background:rgba(10,8,10,.45);opacity:0;pointer-events:none;transition:opacity .2s}
.ac-velo.abierto{opacity:1;pointer-events:auto}
.ac-drawer{position:fixed;z-index:41;top:0;bottom:0;left:0;width:min(84vw,320px);background:var(--tarjeta);
  transform:translateX(-102%);transition:transform .25s ease;display:flex;flex-direction:column;
  padding:calc(16px + env(safe-area-inset-top,0px)) 14px calc(16px + env(safe-area-inset-bottom,0px));overflow-y:auto;visibility:hidden;transition:transform .25s ease,visibility 0s .25s}
.ac-drawer.abierto{transform:none;visibility:visible;box-shadow:0 0 40px rgba(0,0,0,.25);transition:transform .25s ease}
.ac-drawer-cab{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.ac-drawer-cab img{width:46px;height:46px;border-radius:50%;object-fit:cover;background:var(--marca-suave)}
.ac-drawer-cab b{font:600 17px/1.2 var(--f-titulo);flex:1}
.ac-drawer a.ac-dl{display:flex;align-items:center;gap:12px;padding:12px 10px;border-radius:12px;text-decoration:none;font-weight:600}
.ac-drawer a.ac-dl:hover,.ac-drawer a.ac-dl.activo{background:var(--marca-suave)}
.ac-drawer a.ac-dl i{font-style:normal;width:28px;text-align:center;font-size:19px}
.ac-drawer hr{border:0;border-top:1px solid var(--linea);margin:10px 0}
.ac-drawer small{color:var(--apagado);padding:6px 10px}

/* ---------- vistas ---------- */
.ac-vista{max-width:1120px;margin:0 auto;padding:0 0 24px}
.ac-vista:focus{outline:none}
.ac-bloque{padding:0 16px;margin-top:22px}
.ac-cab-sec{display:flex;align-items:baseline;justify-content:space-between;gap:10px;padding:0 16px;margin:24px 0 10px}
.ac-cab-sec h2{margin:0;font:600 18px/1.25 var(--f-titulo)}
.ac-cab-sec a{font-weight:700;font-size:14px;color:var(--marca);text-decoration:none;white-space:nowrap}
.ac-titulo-vista{padding:18px 16px 4px}
.ac-titulo-vista h1{margin:0;font:600 23px/1.2 var(--f-titulo)}
.ac-titulo-vista p{margin:6px 0 0;color:var(--tinta-2)}

/* hero */
.ac-hero{position:relative;margin:12px 16px 0;border-radius:24px;overflow:hidden;color:#fff;
  background:linear-gradient(135deg,var(--marca),color-mix(in srgb,var(--marca) 55%,#000));padding:22px 18px 18px;box-shadow:var(--sombra)}
.ac-hero::after{content:"";position:absolute;right:-60px;top:-60px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.22),transparent 70%)}
.ac-hero-fila{display:flex;align-items:center;gap:14px;position:relative;z-index:1}
.ac-hero img{width:64px;height:64px;border-radius:50%;object-fit:cover;border:3px solid rgba(255,255,255,.75);background:#fff;flex:none}
.ac-hero h1{margin:0;font:700 23px/1.15 var(--f-titulo)}
.ac-hero p{margin:4px 0 0;opacity:.92}
.ac-hero-datos{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px;position:relative;z-index:1}
.ac-pill{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.18);border-radius:99px;padding:5px 11px;font-size:13px;font-weight:600;text-decoration:none;color:inherit}
.ac-pill .ac-punto{width:8px;height:8px;border-radius:50%;background:#7ee2a8}
.ac-pill .ac-punto.cerrado{background:#ffb4a8}

/* botones de acción grandes */
.ac-acciones{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:0 16px;margin-top:16px}
.ac-accion{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;text-align:center;
  min-height:84px;padding:10px 4px;border-radius:16px;background:var(--tarjeta);box-shadow:var(--sombra);text-decoration:none;
  font-weight:700;font-size:12.5px;line-height:1.15;border:0;cursor:pointer}
.ac-accion i{font-style:normal;width:40px;height:40px;border-radius:12px;display:grid;place-items:center;background:var(--marca-suave);font-size:20px}
.ac-accion.pri{background:var(--marca);color:var(--marca-texto)}
.ac-accion.pri i{background:rgba(255,255,255,.2)}
.ac-accion:active{transform:scale(.97)}

/* slider horizontal */
.ac-slider{display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;padding:4px 16px 12px;scroll-padding:0 16px;
  scrollbar-width:none;-webkit-overflow-scrolling:touch}
.ac-slider::-webkit-scrollbar{display:none}
.ac-slider>*{scroll-snap-align:start;flex:none}
.ac-card{width:min(72vw,250px);background:var(--tarjeta);border-radius:var(--radio);box-shadow:var(--sombra);overflow:hidden;
  display:flex;flex-direction:column;text-decoration:none}
.ac-tapa{height:118px;position:relative;display:grid;place-items:center;font-size:42px;overflow:hidden;
  background:linear-gradient(140deg,color-mix(in srgb,var(--marca) 70%,#fff),var(--marca))}
.ac-tapa img{width:100%;height:100%;object-fit:cover;object-position:center 62%}
.ac-tapa .ac-etq{position:absolute;left:10px;top:10px;background:#fff;color:#1b1719;font-size:12px;font-weight:800;padding:3px 9px;border-radius:99px}
.ac-card-cuerpo{padding:11px 13px 13px;display:flex;flex-direction:column;gap:3px;flex:1}
.ac-card-cuerpo b{font:600 15px/1.25 var(--f-titulo)}
.ac-card-cuerpo small{color:var(--tinta-2);font-size:13px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.ac-card-pie{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:auto;padding-top:8px}
.ac-precio{font-weight:800;font-size:15px}
.ac-precio s{color:var(--apagado);font-weight:500;font-size:12.5px}
.ac-pm{display:flex;flex-direction:column;line-height:1.2;min-width:0}
.ac-meta{color:var(--apagado);font-size:12.5px}
.ac-mini-btn{border:0;border-radius:99px;background:var(--marca-suave);color:var(--tinta);font-weight:700;font-size:13px;padding:7px 12px;cursor:pointer;text-decoration:none;white-space:nowrap}
.ac-card.persona{width:min(42vw,160px);align-items:center;text-align:center;padding:14px 10px}
.ac-card.persona .ac-avatar{width:76px;height:76px;border-radius:50%;display:grid;place-items:center;font:700 28px var(--f-titulo);
  color:#fff;background:var(--marca);overflow:hidden}
.ac-card.persona .ac-avatar img{width:100%;height:100%;object-fit:cover}
.ac-card.persona b{margin-top:8px;font:600 15px var(--f-titulo)}
.ac-card.persona small{color:var(--tinta-2);font-size:12.5px}

/* opiniones */
.ac-resumen-op{display:flex;align-items:center;gap:8px;color:var(--tinta-2);font-size:13.5px}
.ac-estrellas{color:var(--estrella);letter-spacing:1px;font-size:14px}
.ac-opinion{width:min(80vw,300px);background:var(--tarjeta);border-radius:var(--radio);box-shadow:var(--sombra);padding:15px 15px 14px;display:flex;flex-direction:column;gap:8px}
.ac-opinion p{margin:0;font-size:14.5px;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.ac-opinion footer{display:flex;align-items:center;gap:9px;margin-top:auto}
.ac-opinion footer .ac-ini{width:32px;height:32px;border-radius:50%;background:var(--marca-suave);display:grid;place-items:center;font-weight:800;font-size:13px}
.ac-opinion footer b{font-size:13.5px}
.ac-opinion footer small{display:block;color:var(--apagado);font-size:12px}
.ac-puntos{display:flex;justify-content:center;gap:6px;margin-top:2px}
.ac-puntos span{width:7px;height:7px;border-radius:99px;background:var(--linea);transition:all .2s}
.ac-puntos span.on{width:20px;background:var(--marca)}
.ac-lista-op{display:grid;gap:12px;padding:0 16px;margin-top:14px}
.ac-lista-op .ac-opinion{width:auto}
.ac-lista-op .ac-opinion p{-webkit-line-clamp:unset;display:block}

/* grilla de la vista de sección */
.ac-grilla{display:grid;grid-template-columns:1fr;gap:12px;padding:0 16px;margin-top:14px}
.ac-grilla .ac-card{width:auto;flex-direction:row}
.ac-grilla .ac-tapa{width:104px;height:auto;min-height:104px;font-size:34px;flex:none}
.ac-grilla .ac-card.persona{flex-direction:column;width:auto}
.ac-grilla.personas{grid-template-columns:1fr 1fr}

/* info / contacto */
.ac-info{background:var(--tarjeta);border-radius:var(--radio);box-shadow:var(--sombra);padding:6px 14px}
.ac-info-fila{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid var(--linea);text-decoration:none}
.ac-info-fila:last-child{border-bottom:0}
.ac-info-fila i{font-style:normal;width:36px;height:36px;border-radius:10px;background:var(--marca-suave);display:grid;place-items:center;flex:none}
.ac-info-fila span{flex:1;min-width:0}
.ac-info-fila small{display:block;color:var(--apagado);font-size:12.5px}
.ac-info-fila em{font-style:normal;color:var(--marca);font-weight:700;font-size:13px}
.ac-horas{width:100%;border-collapse:collapse;font-size:14px}
.ac-horas td{padding:7px 0;border-bottom:1px solid var(--linea)}
.ac-horas td:last-child{text-align:right;color:var(--tinta-2)}
.ac-horas tr.hoy td{font-weight:800;color:var(--tinta)}

/* sacar turno */
.ac-paso{background:var(--tarjeta);border-radius:var(--radio);box-shadow:var(--sombra);padding:14px;margin:12px 16px 0}
.ac-paso h2{margin:0 0 10px;font:600 16px var(--f-titulo);display:flex;align-items:center;gap:8px}
.ac-paso h2 .n{width:24px;height:24px;border-radius:50%;background:var(--marca);color:var(--marca-texto);display:grid;place-items:center;font-size:12.5px}
.ac-opcion{display:flex;align-items:center;justify-content:space-between;gap:10px;width:100%;text-align:left;border:1.5px solid var(--linea);
  background:var(--tarjeta);border-radius:14px;padding:11px 12px;margin-bottom:8px;cursor:pointer}
.ac-opcion>b{white-space:nowrap;flex:none}
.ac-opcion small{display:block;color:var(--apagado);font-size:12.5px}
.ac-opcion.on{border-color:var(--marca);background:var(--marca-suave)}
.ac-chips{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;padding-bottom:2px}
.ac-chips::-webkit-scrollbar{display:none}
.ac-chip{flex:none;border:1.5px solid var(--linea);background:var(--tarjeta);border-radius:14px;padding:8px 12px;cursor:pointer;text-align:center;font-weight:700;min-width:62px}
.ac-chip small{display:block;font-weight:500;color:var(--apagado);font-size:11.5px}
.ac-chip.on{border-color:var(--marca);background:var(--marca);color:var(--marca-texto)}
.ac-chip.on small{color:inherit;opacity:.85}
.ac-horas-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.ac-campo{display:block;margin-bottom:10px}
.ac-campo span{display:block;font-weight:700;font-size:13px;margin-bottom:5px}
.ac-campo input{width:100%;font:inherit;padding:12px;border-radius:12px;border:1.5px solid var(--linea);background:var(--tarjeta-2);color:var(--tinta)}
.ac-campo input:focus{border-color:var(--marca);outline:none}
.ac-btn{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;border:0;border-radius:14px;padding:14px 16px;
  font-weight:800;font-size:16px;cursor:pointer;text-decoration:none;background:var(--marca);color:var(--marca-texto)}
.ac-btn.sec{background:var(--marca-suave);color:var(--tinta)}
.ac-btn[disabled]{opacity:.45;cursor:not-allowed}
.ac-resumen{margin:14px 16px 0;padding:12px 14px;border-radius:14px;background:var(--marca-suave);font-size:14px}
.ac-nota{color:var(--apagado);font-size:12.5px;text-align:center;margin:10px 16px 0}
.ac-vacio{color:var(--apagado);padding:10px 0}

/* barra de abajo */
.ac-abajo{position:fixed;left:0;right:0;bottom:0;z-index:30;display:grid;grid-template-columns:repeat(5,1fr);
  height:calc(var(--alto-abajo) + env(safe-area-inset-bottom,0px));padding-bottom:env(safe-area-inset-bottom,0px);
  background:var(--tarjeta);border-top:1px solid var(--linea);box-shadow:0 -8px 24px -18px rgba(0,0,0,.35)}
.ac-abajo a,.ac-abajo button{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;border:0;background:none;
  text-decoration:none;font-size:11.5px;font-weight:700;color:var(--apagado);cursor:pointer;padding:0}
.ac-abajo i{font-style:normal;font-size:21px;line-height:1}
.ac-abajo .activo{color:var(--marca)}
.ac-abajo .centro i{width:48px;height:48px;border-radius:50%;background:var(--marca);color:var(--marca-texto);display:grid;place-items:center;
  margin-top:-22px;box-shadow:0 8px 18px -6px color-mix(in srgb,var(--marca) 70%,transparent);font-size:22px}
.ac-abajo .centro{color:var(--tinta)}

.ac-pie{text-align:center;color:var(--apagado);font-size:12px;margin:28px 16px 8px}
.ac-pie .ac-demo{display:inline-block;margin-top:6px;padding:3px 10px;border-radius:99px;background:var(--tarjeta-2)}
.ac-cargando{padding:60px 16px;text-align:center;color:var(--apagado)}
.ac-aviso{position:fixed;left:50%;bottom:calc(var(--alto-abajo) + 18px);transform:translate(-50%,20px);opacity:0;z-index:50;
  background:var(--tinta);color:var(--fondo);padding:11px 16px;border-radius:12px;font-weight:700;transition:all .2s;max-width:90vw;text-align:center}
.ac-aviso.ver{opacity:1;transform:translate(-50%,0)}

@media (prefers-reduced-motion:reduce){*{transition:none!important;scroll-behavior:auto!important}}

/* ---------- PC ---------- */
@media (min-width:900px){
  body.ac{padding-bottom:0}
  .ac-abajo{display:none}
  .ac-top{padding:10px 24px}
  .ac-marca{flex:none}
  .ac-topnav{display:flex;gap:4px;flex:1;justify-content:center}
  .ac-topnav a{text-decoration:none;font-weight:700;font-size:14px;padding:8px 12px;border-radius:10px;color:var(--tinta-2)}
  .ac-topnav a.activo,.ac-topnav a:hover{background:var(--marca-suave);color:var(--tinta)}
  .ac-top-cta{display:inline-flex;align-items:center;gap:6px;background:var(--marca);color:var(--marca-texto)!important;text-decoration:none;
    font-weight:800;padding:10px 16px;border-radius:12px}
  .ac-hero{margin:20px 24px 0;padding:34px 32px}
  .ac-hero img{width:88px;height:88px}
  .ac-hero h1{font-size:32px}
  .ac-acciones{padding:0 24px;gap:14px}
  .ac-accion{flex-direction:row;min-height:66px;font-size:15px;gap:10px}
  .ac-cab-sec,.ac-bloque,.ac-titulo-vista{padding-left:24px;padding-right:24px}
  .ac-slider{padding-left:24px;padding-right:24px;scroll-padding:0 24px}
  .ac-card{width:250px}
  .ac-card.persona{width:170px}
  .ac-opinion{width:340px}
  .ac-grilla{grid-template-columns:repeat(2,1fr);padding:0 24px}
  .ac-grilla.personas{grid-template-columns:repeat(4,1fr)}
  .ac-lista-op{grid-template-columns:repeat(2,1fr);padding:0 24px}
  .ac-paso,.ac-resumen{margin-left:auto;margin-right:auto;max-width:640px}
  .ac-aviso{bottom:24px}
  .ac-contacto{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:start}
}

/* ---------- portada (foto del local) y detalles comunes nuevos (APPS-2) ---------- */
.ac-hero.con-foto{padding-top:130px;background:#222}
.ac-hero img.ac-hero-foto{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border:0;border-radius:0;background:none;z-index:0}
.ac-hero.con-foto::before{content:"";position:absolute;inset:0;z-index:0;
  background:linear-gradient(180deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.18) 30%,color-mix(in srgb,var(--marca) 40%,rgba(0,0,0,.86)) 72%)}
.ac-hero.con-foto::after{display:none}
.ac-hero.con-foto h1,.ac-hero.con-foto p{text-shadow:0 1px 10px rgba(0,0,0,.35)}
.ac-cab-ico{display:none}
.ac-opinion footer img.ac-ini{object-fit:cover;width:36px;height:36px;padding:0}
.ac-listo{text-align:center;padding:26px 0 0}
.ac-listo h1{margin:10px 0 4px;font:700 24px/1.2 var(--f-titulo)}
.ac-listo>p{margin:0 16px;color:var(--tinta-2)}
.ac-tick{width:68px;height:68px;border-radius:50%;margin:0 auto;display:grid;place-items:center;font-size:34px;font-weight:800;
  background:var(--ok);color:#fff}
.ac-campo input::placeholder{color:var(--apagado)}
@media (min-width:900px){ .ac-hero.con-foto{padding-top:170px} .ac-listo{max-width:640px;margin:0 auto} }

/* =====================================================================
   ESTILOS (datos.estilo o ?estilo=): mismo contenido, distinta cara.
   moderno = el de arriba (Poppins + Inter). Los demás cambian lo que sigue.
   ===================================================================== */

/* ---- elegante: Playfair Display en títulos + Inter en el texto; portada a todo el ancho, líneas finas ---- */
@media (prefers-color-scheme:light){
  body.ac-est-elegante{--fondo:#faf7f3;--tarjeta-2:#f3eee8;--linea:#e7ded3}
}
body.ac-est-elegante{--radio:8px;--sombra:none}
.ac-est-elegante .ac-hero{margin:0;border-radius:0;text-align:center;padding:34px 20px 22px;min-height:260px;display:flex;flex-direction:column;justify-content:flex-end}
.ac-est-elegante .ac-hero.con-foto{padding-top:150px;min-height:340px}
.ac-est-elegante .ac-hero-fila{flex-direction:column;gap:10px}
.ac-est-elegante .ac-hero h1{font-size:31px;font-weight:600;letter-spacing:.005em}
.ac-est-elegante .ac-hero p{font-size:15px;letter-spacing:.02em}
.ac-est-elegante .ac-hero-datos{justify-content:center}
.ac-est-elegante .ac-pill{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.4)}
.ac-est-elegante .ac-acciones{margin-top:18px}
.ac-est-elegante .ac-accion,.ac-est-elegante .ac-card,.ac-est-elegante .ac-opinion,.ac-est-elegante .ac-info,.ac-est-elegante .ac-paso{border:1px solid var(--linea);box-shadow:none}
.ac-est-elegante .ac-accion{border-radius:8px}
.ac-est-elegante .ac-accion i{border-radius:50%;background:transparent;border:1px solid color-mix(in srgb,var(--marca) 45%,transparent)}
.ac-est-elegante .ac-accion.pri i{border-color:rgba(255,255,255,.5)}
.ac-est-elegante .ac-cab-sec{margin:30px 16px 12px;padding:0 0 8px;border-bottom:1px solid var(--linea)}
.ac-est-elegante .ac-cab-sec h2{font-size:22px;font-weight:600}
.ac-est-elegante .ac-cab-sec a{font-size:13px;letter-spacing:.04em;text-transform:uppercase}
.ac-est-elegante .ac-tapa{height:150px}
.ac-est-elegante .ac-card-cuerpo b{font-size:17px}
.ac-est-elegante .ac-mini-btn{border-radius:4px;background:transparent;border:1px solid var(--tinta);font-size:12px;letter-spacing:.04em;text-transform:uppercase}
.ac-est-elegante .ac-opinion p{font:italic 500 16px/1.45 var(--f-titulo)}
.ac-est-elegante .ac-card.persona .ac-avatar{width:92px;height:92px}
.ac-est-elegante .ac-btn{border-radius:6px;letter-spacing:.03em}
@media (min-width:900px){
  .ac-est-elegante .ac-hero{margin:0;padding:60px 24px 32px}
  .ac-est-elegante .ac-hero.con-foto{padding-top:220px;min-height:440px}
  .ac-est-elegante .ac-hero h1{font-size:44px}
  .ac-est-elegante .ac-cab-sec{margin-left:24px;margin-right:24px}
}

/* ---- fresco: Nunito, todo redondo, colores suaves de la marca, íconos en los títulos ---- */
@media (prefers-color-scheme:light){
  body.ac-est-fresco{--fondo:color-mix(in srgb,var(--marca) 6%,#fff);--linea:color-mix(in srgb,var(--marca) 14%,#fff)}
}
body.ac-est-fresco{--radio:24px;--sombra:0 10px 26px -18px color-mix(in srgb,var(--marca) 60%,rgba(0,0,0,.4))}
.ac-est-fresco{font-size:15px}
.ac-est-fresco .ac-hero{border-radius:30px}
.ac-est-fresco .ac-hero h1{font-weight:800;font-size:26px}
.ac-est-fresco .ac-pill{background:#fff;color:var(--tinta)}
.ac-est-fresco .ac-accion{border-radius:22px}
.ac-est-fresco .ac-accion i{border-radius:50%;width:44px;height:44px}
.ac-est-fresco .ac-cab-sec h2{font-weight:800;font-size:19px;display:flex;align-items:center;gap:8px}
.ac-est-fresco .ac-cab-ico{display:inline-grid;place-items:center;width:32px;height:32px;border-radius:50%;background:var(--marca-suave);font-size:16px}
.ac-est-fresco .ac-cab-ico:empty{display:none}
.ac-est-fresco .ac-tapa{height:130px;margin:8px 8px 0;border-radius:18px}
.ac-est-fresco .ac-card-cuerpo b{font-weight:800}
.ac-est-fresco .ac-mini-btn{background:var(--marca);color:var(--marca-texto)}
.ac-est-fresco .ac-opinion{background:var(--marca-suave);box-shadow:none}
.ac-est-fresco .ac-card.persona .ac-avatar{box-shadow:0 0 0 4px var(--tarjeta),0 0 0 7px var(--marca-suave)}
.ac-est-fresco .ac-btn,.ac-est-fresco .ac-chip,.ac-est-fresco .ac-opcion{border-radius:99px}
.ac-est-fresco .ac-opcion{border-radius:18px}

/* ---- minimal: Inter, fondo blanco, sin degradés ni sombras, la foto aparte ---- */
@media (prefers-color-scheme:light){
  body.ac-est-minimal{--fondo:#fff;--tarjeta-2:#f5f5f5;--linea:#e8e8e8;--tinta-2:#555}
}
body.ac-est-minimal{--radio:12px;--sombra:none}
.ac-est-minimal .ac-top{background:color-mix(in srgb,var(--fondo) 94%,transparent)}
.ac-est-minimal .ac-icono-btn{box-shadow:none;border:1px solid var(--linea)}
.ac-est-minimal .ac-hero,.ac-est-minimal .ac-hero.con-foto{background:none;color:var(--tinta);box-shadow:none;border-radius:0;padding:20px 0 0;margin:0 16px;display:flex;flex-direction:column}
.ac-est-minimal .ac-hero::after,.ac-est-minimal .ac-hero.con-foto::before{display:none}
.ac-est-minimal .ac-hero img{border:1px solid var(--linea)}
.ac-est-minimal .ac-hero img.ac-hero-foto{position:static;order:3;height:190px;border-radius:12px;margin-top:16px;border:0}
.ac-est-minimal .ac-hero h1{font-weight:700;font-size:25px;letter-spacing:-.02em;text-shadow:none}
.ac-est-minimal .ac-hero p{color:var(--tinta-2);text-shadow:none}
.ac-est-minimal .ac-pill{background:var(--tarjeta-2);color:var(--tinta)}
.ac-est-minimal .ac-accion,.ac-est-minimal .ac-card,.ac-est-minimal .ac-opinion,.ac-est-minimal .ac-info,.ac-est-minimal .ac-paso{border:1px solid var(--linea);box-shadow:none}
.ac-est-minimal .ac-accion i{background:none;width:auto;height:auto;font-size:22px}
.ac-est-minimal .ac-cab-sec h2{font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--tinta-2)}
.ac-est-minimal .ac-tapa{background:var(--tarjeta-2)}
.ac-est-minimal .ac-mini-btn{background:var(--tinta);color:var(--fondo)}
.ac-est-minimal .ac-abajo{box-shadow:none}
.ac-est-minimal .ac-abajo .centro i{box-shadow:none}
@media (min-width:900px){
  .ac-est-minimal .ac-hero,.ac-est-minimal .ac-hero.con-foto{margin:0 24px;padding-top:28px}
  .ac-est-minimal .ac-hero img.ac-hero-foto{height:320px}
}

/* =====================================================================
   APPS-3 (25-09-2026): portada que pasa sola, 5 botones, carrito y pedido, Mis turnos, botón al costado,
   estilos «deportivo» y «audaz». Todo opcional: una app que no lo configura se ve igual que antes.
   ===================================================================== */
:root{--acento:var(--marca)}
/* portada que pasa sola */
.ac-hero-fotos{position:absolute;inset:0;z-index:0}
.ac-hero .ac-hero-fotos img.ac-hero-foto{opacity:0;transition:opacity 1.1s ease,transform 6s ease;transform:scale(1.04)}
.ac-hero .ac-hero-fotos img.ac-hero-foto.on{opacity:1;transform:scale(1)}
.ac-hero-puntos{position:absolute;z-index:2;right:14px;top:12px;display:flex;gap:5px}
.ac-hero-puntos span{width:7px;height:7px;border-radius:99px;background:rgba(255,255,255,.55);transition:all .3s}
.ac-hero-puntos span.on{width:20px;background:#fff}
.ac-est-minimal .ac-hero-fotos{position:relative;order:3;height:190px;border-radius:12px;overflow:hidden;margin-top:16px}
.ac-est-minimal .ac-hero .ac-hero-fotos img.ac-hero-foto{position:absolute;height:100%;margin:0;border-radius:0}
.ac-est-minimal .ac-hero-puntos{top:auto;bottom:14px;right:auto;left:50%;transform:translateX(-50%)}
.ac-est-minimal .ac-hero-puntos span{background:var(--linea)}
.ac-est-minimal .ac-hero-puntos span.on{background:var(--marca)}

/* 4 o 5 botones grandes: 5 en fila si entran; si no, 3 arriba y 2 abajo */
.ac-acciones.n1{grid-template-columns:1fr}.ac-acciones.n2{grid-template-columns:repeat(2,1fr)}.ac-acciones.n3{grid-template-columns:repeat(3,1fr)}
.ac-acciones.n5{grid-template-columns:repeat(5,1fr);gap:7px}
.ac-acciones.n5 .ac-accion{min-height:80px;font-size:11.5px;padding:9px 2px;border-radius:14px}
.ac-acciones.n5 .ac-accion i{width:36px;height:36px;font-size:18px}
@media (max-width:359px){
  .ac-acciones.n5{grid-template-columns:repeat(6,1fr)}
  .ac-acciones.n5 .ac-accion{grid-column:span 2}
  .ac-acciones.n5 .ac-accion:nth-child(n+4){grid-column:span 3}
}

/* franja de delivery en el inicio */
.ac-franja{display:flex;align-items:center;gap:10px;margin:14px 16px 0;padding:10px 14px;border-radius:14px;background:var(--marca-suave);text-decoration:none;font-size:13.5px}
.ac-franja i{font-style:normal;font-size:20px}
.ac-franja span{flex:1;min-width:0}
.ac-franja em{font-style:normal;font-weight:800;color:var(--marca);white-space:nowrap;font-size:13px}
.ac-sub{font:600 15px var(--f-titulo);margin:6px 0 4px}
.ac-td-sub{display:block;color:var(--apagado);font-size:12px;font-weight:500}

/* productos de la carta */
.ac-ops{display:flex;flex-wrap:wrap;gap:6px;margin-top:auto;padding-top:8px}
.ac-op{flex:1 1 auto;display:flex;flex-direction:column;align-items:center;border:1.5px solid var(--linea);background:var(--tarjeta);border-radius:12px;padding:5px 8px;cursor:pointer;min-width:74px}
.ac-op span{font-size:11.5px;color:var(--tinta-2);font-weight:600}
.ac-op b{font-size:13.5px;color:var(--acento)}
.ac-op:hover,.ac-op:active{border-color:var(--marca);background:var(--marca-suave)}
.ac-sumar{background:var(--marca);color:var(--marca-texto)}
.ac-card.ac-prod .ac-precio{color:var(--acento)}
.ac-cats{padding:6px 16px 2px;margin-top:6px}
.ac-cats .ac-chip{text-decoration:none;font-size:14px}

/* carrito */
.ac-badge{display:inline-grid;place-items:center;min-width:18px;height:18px;padding:0 5px;border-radius:99px;background:var(--acento);color:#fff;font-size:11px;font-weight:800;line-height:1}
.ac-abajo .centro{position:relative}
.ac-abajo .centro .ac-badge{position:absolute;top:-16px;left:calc(50% + 10px);box-shadow:0 0 0 2px var(--tarjeta)}
.ac-top-cta .ac-badge{background:#fff;color:var(--marca)}
.ac-carro-barra{position:fixed;z-index:29;left:12px;right:12px;bottom:calc(var(--alto-abajo) + 10px + env(safe-area-inset-bottom,0px));display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:12px 16px;border-radius:16px;background:var(--tinta);color:var(--fondo)!important;text-decoration:none;font-size:14.5px;box-shadow:0 12px 28px -10px rgba(0,0,0,.45)}
.ac-carro-barra em{font-style:normal;font-weight:800}
body.ac-con-carro .ac-vista{padding-bottom:80px}
.ac-linea{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid var(--linea)}
.ac-linea small{display:block;color:var(--apagado);font-size:12px}
.ac-linea.total{grid-template-columns:1fr auto;border-bottom:0;font-weight:700}
.ac-cant{display:inline-flex;align-items:center;gap:8px}
.ac-cant button{width:32px;height:32px;border-radius:50%;border:1.5px solid var(--linea);background:var(--tarjeta);font-size:18px;font-weight:800;cursor:pointer;line-height:1}
.ac-sub-lin{min-width:72px;text-align:right}
.ac-mini-tit{margin:12px 0 6px;font-weight:700;font-size:13px}
.ac-zonas .ac-opcion{margin-bottom:6px}
.ac-total{display:grid;grid-template-columns:1fr auto;gap:4px 12px}
.ac-total .gr{font-size:17px;font-weight:800;padding-top:4px;border-top:1px solid color-mix(in srgb,var(--tinta) 15%,transparent)}
.ac-vacio-grande{text-align:center;padding:26px 18px}
.ac-vacio-grande div{font-size:40px}
.ac-vacio-grande p{color:var(--tinta-2);margin:6px 0 0}

/* Mis turnos */
.ac-lista-turnos{display:grid;gap:12px;padding:0 16px;margin-top:14px}
.ac-turno-card{display:flex;gap:14px;background:var(--tarjeta);border-radius:var(--radio);box-shadow:var(--sombra);padding:14px}
.ac-turno-fecha{flex:none;width:58px;border-radius:14px;background:var(--marca);color:var(--marca-texto);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:8px 0}
.ac-turno-fecha b{font:700 24px/1 var(--f-titulo)}
.ac-turno-fecha small{text-transform:uppercase;font-weight:700;font-size:12px}
.ac-turno-txt{flex:1;min-width:0}
.ac-turno-txt small{display:block;color:var(--tinta-2);font-size:13px;margin-top:2px}
.ac-turno-btns{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap}
.ac-peligro{background:transparent;border:1.5px solid #c9483b;color:#c9483b}
.ac-peligro.seguro{background:#c9483b;color:#fff}

/* botón redondo al costado */
.ac-flota{position:fixed;z-index:31;right:14px;bottom:calc(var(--alto-abajo) + 16px + env(safe-area-inset-bottom,0px));width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;background:var(--marca);color:var(--marca-texto)!important;text-decoration:none;box-shadow:0 10px 24px -8px rgba(0,0,0,.5);transition:transform .2s,bottom .2s}
.ac-flota.wa{background:#25d366;color:#fff!important}
.ac-flota svg{width:30px;height:30px}
.ac-flota i{font-style:normal;font-size:24px}
.ac-flota .ac-badge{position:absolute;top:-2px;right:-2px}
.ac-flota:active{transform:scale(.94)}
body.ac-con-carro .ac-flota{bottom:calc(var(--alto-abajo) + 78px + env(safe-area-inset-bottom,0px))}

@media (min-width:900px){
  .ac-acciones.n5{gap:12px}
  .ac-acciones.n5 .ac-accion{flex-direction:row;min-height:62px;font-size:14px;gap:8px;padding:10px 8px}
  .ac-franja{margin:16px 24px 0}
  .ac-cats{padding-left:24px;padding-right:24px}
  .ac-lista-turnos{grid-template-columns:repeat(2,1fr);padding:0 24px}
  .ac-carro-barra{left:auto;right:24px;bottom:24px;width:360px}
  .ac-flota{bottom:24px;right:24px}
  body.ac-con-carro .ac-flota{bottom:96px}
  .ac-grilla .ac-card.ac-prod{flex-direction:row}
  .ac-hero-puntos{right:24px;top:18px}
}

/* ---- deportivo: títulos condensados en mayúscula, portada con corte en diagonal, acento de color ---- */
@media (prefers-color-scheme:light){
  body.ac-est-deportivo{--fondo:#f3f5f2;--tarjeta-2:#eaeee8;--linea:#dde3da}
}
body.ac-est-deportivo{--radio:14px}
.ac-est-deportivo .ac-hero{margin:0;border-radius:0;padding:24px 18px 44px;clip-path:polygon(0 0,100% 0,100% calc(100% - 26px),0 100%)}
.ac-est-deportivo .ac-hero.con-foto{padding-top:170px;min-height:330px}
.ac-est-deportivo .ac-hero.con-foto::before{background:linear-gradient(180deg,rgba(0,0,0,0) 20%,color-mix(in srgb,var(--marca) 55%,rgba(0,0,0,.85)) 78%)}
.ac-est-deportivo .ac-hero h1{font-size:34px;font-weight:800;text-transform:uppercase;letter-spacing:.01em;line-height:1}
.ac-est-deportivo .ac-hero h1::after{content:"";display:block;width:54px;height:5px;border-radius:3px;background:var(--acento);margin-top:8px}
.ac-est-deportivo .ac-hero-fila img{border-radius:14px}
.ac-est-deportivo .ac-pill{background:rgba(0,0,0,.35);backdrop-filter:blur(4px)}
.ac-est-deportivo .ac-acciones{margin-top:-4px;position:relative;z-index:2}
.ac-est-deportivo .ac-accion.pri{background:var(--acento)}
.ac-est-deportivo .ac-accion i{border-radius:10px}
.ac-est-deportivo .ac-cab-sec h2{font-size:22px;font-weight:800;text-transform:uppercase;letter-spacing:.01em;display:flex;align-items:center;gap:8px}
.ac-est-deportivo .ac-cab-sec h2::before{content:"";width:5px;height:20px;border-radius:3px;background:var(--acento)}
.ac-est-deportivo .ac-titulo-vista h1{font-size:28px;font-weight:800;text-transform:uppercase}
.ac-est-deportivo .ac-card{border-bottom:4px solid var(--acento)}
.ac-est-deportivo .ac-card.persona{border-bottom-color:var(--marca)}
.ac-est-deportivo .ac-tapa{height:136px}
.ac-est-deportivo .ac-tapa .ac-etq{background:var(--acento);color:#fff;border-radius:6px;text-transform:uppercase;letter-spacing:.03em}
.ac-est-deportivo .ac-card-cuerpo b{font-size:17px;font-weight:700;text-transform:uppercase;letter-spacing:.01em}
.ac-est-deportivo .ac-mini-btn{background:var(--marca);color:var(--marca-texto);border-radius:8px;text-transform:uppercase;font-size:12px;letter-spacing:.04em}
.ac-est-deportivo .ac-btn{border-radius:10px;text-transform:uppercase;letter-spacing:.04em}
.ac-est-deportivo .ac-opinion{border-left:4px solid var(--acento)}
.ac-est-deportivo .ac-abajo .centro i{border-radius:16px;background:var(--acento)}
.ac-est-deportivo .ac-chip.on{background:var(--marca);border-color:var(--marca)}
@media (min-width:900px){
  .ac-est-deportivo .ac-hero{margin:0;padding:40px 32px 70px}
  .ac-est-deportivo .ac-hero.con-foto{padding-top:250px;min-height:470px}
  .ac-est-deportivo .ac-hero h1{font-size:54px}
  .ac-est-deportivo .ac-top-cta{background:var(--acento)}
}

/* ---- audaz: fondo cálido, títulos gruesos, tarjetas con borde marcado, sello de color ---- */
@media (prefers-color-scheme:light){
  body.ac-est-audaz{--fondo:#fdf6ec;--tarjeta-2:#f8ecdb;--linea:#eeddc6;--tinta:#2a1a14;--tinta-2:#5e4a40}
}
body.ac-est-audaz{--radio:20px;--sombra:0 2px 0 rgba(42,26,20,.08),0 12px 26px -18px rgba(42,26,20,.5)}
.ac-est-audaz .ac-top{border-bottom:3px solid var(--marca)}
.ac-est-audaz .ac-hero{border-radius:28px}
.ac-est-audaz .ac-hero.con-foto{padding-top:160px;min-height:310px;display:flex;flex-direction:column;justify-content:flex-end}
.ac-est-audaz .ac-hero.con-foto::before{background:linear-gradient(180deg,rgba(0,0,0,0) 25%,rgba(20,8,4,.82) 80%)}
.ac-est-audaz .ac-hero h1{font-size:32px;font-weight:400;letter-spacing:0}
.ac-est-audaz .ac-hero p{font-weight:500}
.ac-est-audaz .ac-hero-fila img{border-color:var(--acento)}
.ac-est-audaz .ac-pill{background:var(--acento);color:#2a1a14}
.ac-est-audaz .ac-pill .ac-punto{background:#1c8a4a}
.ac-est-audaz .ac-pill .ac-punto.cerrado{background:#b3261e}
.ac-est-audaz .ac-accion{border:2px solid var(--linea);box-shadow:none}
.ac-est-audaz .ac-accion.pri{border-color:var(--marca)}
.ac-est-audaz .ac-accion i{background:color-mix(in srgb,var(--acento) 30%,#fff);border-radius:50%}
.ac-est-audaz .ac-accion.pri i{background:rgba(255,255,255,.22)}
.ac-est-audaz .ac-cab-sec h2{font-size:23px;font-weight:400;display:flex;align-items:center;gap:8px}
.ac-est-audaz .ac-cab-ico{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:var(--acento);font-size:17px}
.ac-est-audaz .ac-cab-ico:empty{display:none}
.ac-est-audaz .ac-cab-sec a{background:var(--marca-suave);padding:4px 10px;border-radius:99px;font-size:13px}
.ac-est-audaz .ac-card{border:2px solid var(--linea);box-shadow:none}
.ac-est-audaz .ac-tapa{height:140px}
.ac-est-audaz .ac-tapa .ac-etq{background:var(--acento);color:#2a1a14;transform:rotate(-4deg);font-size:12.5px;padding:4px 10px;box-shadow:0 2px 6px rgba(0,0,0,.2)}
.ac-est-audaz .ac-card-cuerpo b{font-weight:400;font-size:18px}
.ac-est-audaz .ac-precio{color:var(--marca);font-size:16.5px}
.ac-est-audaz .ac-mini-btn{background:var(--marca);color:var(--marca-texto)}
.ac-est-audaz .ac-opinion{border:2px solid var(--linea);box-shadow:none}
.ac-est-audaz .ac-estrellas{color:var(--acento)}
.ac-est-audaz .ac-btn{border-radius:99px}
.ac-est-audaz .ac-chip.on{background:var(--marca);border-color:var(--marca)}
.ac-est-audaz .ac-carro-barra{background:var(--marca);color:var(--marca-texto)!important}
.ac-est-audaz .ac-badge{color:#2a1a14}
.ac-est-audaz .ac-top-cta .ac-badge{background:var(--acento)}
@media (min-width:900px){
  .ac-est-audaz .ac-hero.con-foto{padding-top:240px;min-height:440px}
  .ac-est-audaz .ac-hero h1{font-size:46px}
}

/* ---- íconos de línea (APPS-3): nunca emojis como íconos de pantalla ---- */
.ac-ic{width:1.15em;height:1.15em;flex:none;vertical-align:-.18em;display:inline-block}
.ac-accion i .ac-ic{width:22px;height:22px}
.ac-acciones.n5 .ac-accion i .ac-ic{width:20px;height:20px}
.ac-accion i{color:var(--marca)}
.ac-accion.pri i{color:inherit}
.ac-abajo i .ac-ic{width:23px;height:23px}
.ac-abajo .centro i .ac-ic{width:24px;height:24px}
.ac-drawer a.ac-dl i{display:grid;place-items:center;color:var(--marca)}
.ac-drawer a.ac-dl i .ac-ic{width:20px;height:20px}
.ac-info-fila i{color:var(--marca)}
.ac-info-fila i .ac-ic{width:19px;height:19px}
.ac-tapa>span{display:grid;place-items:center;color:rgba(255,255,255,.92)}
.ac-tapa>span .ac-ic{width:44px;height:44px;stroke-width:1.4}
.ac-flota i{display:grid;place-items:center}.ac-flota i .ac-ic{width:26px;height:26px}
.ac-cab-ico .ac-ic{width:18px;height:18px}
.ac-vacio-grande>div{color:var(--marca)}
.ac-vacio-grande>div .ac-ic{width:42px;height:42px;stroke-width:1.5}
.ac-tick .ac-ic{width:34px;height:34px;stroke-width:2.6}
.ac-btn .ac-ic{width:20px;height:20px}
.ac-pill .ac-ic{width:14px;height:14px}
.ac-chip .ac-ic{width:16px;height:16px;margin-right:4px}
.ac-franja i{color:var(--marca)}.ac-franja i .ac-ic{width:22px;height:22px}
.ac-sub .ac-ic{color:var(--marca)}
.ac-top-cta .ac-ic{width:18px;height:18px}
.ac-carro-barra .ac-ic{width:18px;height:18px}
.ac-est-fresco .ac-cab-ico,.ac-est-audaz .ac-cab-ico{color:var(--marca)}
.ac-est-audaz .ac-cab-ico{color:#2a1a14}
.ac-est-audaz .ac-marca span,.ac-est-audaz .ac-drawer-cab b,.ac-est-audaz .ac-card.persona b,.ac-est-audaz .ac-titulo-vista h1,.ac-est-audaz .ac-paso h2,.ac-est-audaz .ac-listo h1,.ac-est-audaz .ac-turno-fecha b{font-weight:400}
.ac-est-audaz .ac-titulo-vista h1{font-size:28px}
.ac-est-audaz .ac-marca span{font-size:19px}
.ac-est-fresco .ac-hero h1{font-weight:700}
.ac-est-fresco .ac-cab-sec h2{font-weight:700}
.ac-est-fresco .ac-card-cuerpo b{font-weight:600}
.ac-est-minimal .ac-accion i{color:var(--tinta)}
.ac-est-audaz .ac-op b,.ac-est-audaz .ac-card.ac-prod .ac-precio{color:var(--marca)}
body.ac-con-carro .ac-aviso{bottom:calc(var(--alto-abajo) + 82px)}
@media (min-width:900px){ body.ac-con-carro .ac-aviso{bottom:100px} }
