@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
    --vino: #ff3b00;
    --vino-profundo: #4a0008;
    --oro: #d4b483;
    --crema: #f6f1e8;
    --tinta: #1a1210;
    --papel: #fffdf9;
}

* { box-sizing: border-box; }

html {
    background:
        radial-gradient(circle at 10% 0%, rgba(243, 92, 20, 0.09), transparent 34%),
        radial-gradient(circle at 90% 80%, rgba(243, 92, 20, 0.07), transparent 30%),
        #f6f1eb;
}

body.catalogo {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Manrope, Calibri, sans-serif;
    background: #fff;
    color: #1b130d;
}

a { color: inherit; }

.barra {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px;
    background: #fff;
    color: #2a2420;
    border-bottom: 1px solid #f0e6df;
    box-shadow: 0 1px 0 rgba(255, 59, 0, 0.08);
}

.marca {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    flex: none;
}
.radar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.radar-disco {
    position: relative;
    width: 48px;
    height: 48px;
    flex: none;
    border-radius: 50%;
    border: 1px solid rgba(255, 59, 0, 0.35);
    background:
        radial-gradient(circle, transparent 18%, rgba(255, 59, 0, 0.28) 18.6% 19.4%, transparent 20% 38%, rgba(255, 59, 0, 0.22) 38.6% 39.4%, transparent 40% 62%, rgba(255, 59, 0, 0.16) 62.6% 63.6%, transparent 64%),
        #fff8f5;
    overflow: hidden;
}
.radar-barrido {
    position: absolute;
    inset: -20%;
    background: conic-gradient(from 0deg, transparent 0deg 250deg, rgba(255, 59, 0, 0.08) 280deg, rgba(255, 59, 0, 0.55) 360deg);
    animation: radar-giro 2.6s linear infinite;
}
.radar-centro {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: #ff3b00;
    box-shadow: 0 0 0 3px rgba(255, 59, 0, 0.18);
}
.radar-punto {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff3b00;
    opacity: 0;
    animation: radar-blip 2.6s ease-out infinite;
}
.radar-punto-a { left: 62%; top: 28%; }
.radar-punto-b { left: 30%; top: 58%; animation-delay: 0.9s; }
.radar-punto-c { left: 70%; top: 66%; animation-delay: 1.7s; }
.radar-texto {
    color: #8a756c;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.radar-texto::after {
    content: "";
    display: inline-block;
    width: 1.2em;
    animation: radar-puntos 1.4s steps(1) infinite;
}
@keyframes radar-giro {
    to { transform: rotate(360deg); }
}
@keyframes radar-blip {
    0%, 55% { opacity: 0; transform: scale(0.4); }
    68% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.6); }
}
@keyframes radar-puntos {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
}
@media (prefers-reduced-motion: reduce) {
    .radar-barrido, .radar-punto, .radar-texto::after { animation: none; }
    .radar-punto { opacity: 0.8; }
}

.menu-boton {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #f0e6df;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}
.menu-boton span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #ff3b00;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.barra.menu-abierto .menu-boton span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.barra.menu-abierto .menu-boton span:nth-child(2) { opacity: 0; }
.barra.menu-abierto .menu-boton span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.barra nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.barra nav a {
    margin: 0;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: #8a756c;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.barra nav a img, .pie a img, .meta img, .tienda-marca img {
    width: 18px;
    height: 18px;
    flex: none;
    object-fit: contain;
}
.tienda-marca img { width: 14px; height: 14px; }
.barra nav a:hover {
    background: #fff6f2;
    color: #ff3b00;
}
.barra nav a[aria-current="page"] {
    background: #fff1eb;
    color: #ff3b00;
    box-shadow: none;
}
[data-tip] { position: relative; }
[data-tip]::after,
[data-tip]::before {
    position: absolute;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 40;
}
[data-tip]::after {
    content: attr(data-tip);
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(4px);
    background: #111;
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    line-height: 1.3;
}
[data-tip]::before {
    content: "";
    bottom: calc(100% + 4px);
    transform: translateX(-50%) translateY(4px);
    border: 6px solid transparent;
    border-top-color: #111;
}
[data-tip]:hover::after,
[data-tip]:hover::before,
[data-tip]:focus-visible::after,
[data-tip]:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.barra [data-tip]::after {
    bottom: auto;
    top: calc(100% + 10px);
}
.barra [data-tip]::before {
    bottom: auto;
    top: 100%;
    border-top-color: transparent;
    border-bottom-color: #111;
}
.kicker {
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--oro);
    margin: 0 0 12px;
}

.ficha h1, .tarjeta h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.envoltorio { margin: 0 auto; padding: 8px 24px 48px; width: 100%; max-width: 1180px; flex: 1; }

.filtros-abrir { display: none; }
.filtros-panel { display: contents; }
.filtros {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.7fr) auto;
    gap: 10px;
    align-items: center;
    width: calc(100% - 48px);
    max-width: 1132px;
    margin: 12px auto 8px;
    padding: 16px;
    position: relative;
    z-index: 2;
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(212, 180, 131, 0.45);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(26, 18, 16, 0.06);
}

.filtros input, .filtros select, .formulario input, .formulario textarea, .formulario select, .fecha-boton {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(212, 180, 131, 0.7);
    border-radius: 12px;
    background: var(--papel);
    font: inherit;
    color: var(--tinta);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.filtros .select-nativo,
.formulario .select-nativo,
.contacto-caja .select-nativo {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}
.selector { position: relative; }
.filtros .selector-boton, .formulario .selector-boton, .contacto-caja .selector-boton {
    width: 100%;
    text-align: left;
    background: #fffdf9 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1.2 6 6.2 11 1.2' fill='none' stroke='%23ff3b00' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right 14px center / 12px 8px no-repeat;
    color: #1a1210;
    border: 1px solid rgba(212, 180, 131, 0.7);
    border-radius: 12px;
    padding: 12px 36px 12px 14px;
    letter-spacing: 0;
    text-transform: none;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    cursor: pointer;
}
.selector.abierto .selector-boton,
.filtros .selector-boton:focus-visible,
.formulario .selector-boton:focus-visible,
.contacto-caja .selector-boton:focus-visible {
    border-color: rgba(255, 59, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 59, 0, 0.12);
    outline: none;
}
.selector-panel[hidden] { display: none; }
.selector-panel {
    position: absolute;
    z-index: 31;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow: auto;
    background: #fffdf9;
    border-radius: 16px;
    border: 1px solid rgba(212, 180, 131, 0.55);
    box-shadow: 0 16px 40px rgba(26, 18, 16, 0.08);
    padding: 6px;
}
.selector-panel button {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    color: #1a1210;
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: none;
    cursor: pointer;
}
.selector-panel button:hover { background: #fff4ef; color: #1a1210; }
.selector-panel button.activo {
    background: #fff1eb;
    color: #ff3b00;
    box-shadow: inset 3px 0 0 #ff3b00;
}
.filtros select:focus, .formulario select:focus, .fecha-boton:focus-visible, .filtros input:focus {
    outline: none;
    border-color: rgba(138, 106, 59, 0.7);
    box-shadow: 0 0 0 3px rgba(212, 180, 131, 0.35);
}
.precio-rango {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(255, 59, 0, 0.16);
    border-radius: 12px;
    padding: 8px 12px;
    min-width: 0;
}
.precio-etiqueta {
    color: #ff3b00;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex: none;
}
.precio-valor {
    flex: none;
    min-width: 7.5rem;
    color: #1a1210;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.precio-valor[data-precio-max] { text-align: right; }
.precio-pista {
    position: relative;
    flex: 1;
    height: 28px;
    min-width: 88px;
}
.precio-pista::before,
.precio-pista::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 4px;
    border-radius: 999px;
    transform: translateY(-50%);
}
.precio-pista::before {
    left: 0;
    right: 0;
    background: #efe6dc;
}
.precio-pista::after {
    left: var(--precio-desde, 0%);
    right: calc(100% - var(--precio-hasta, 100%));
    background: #ff3b00;
}
.filtros .precio-control {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    appearance: none;
}
.precio-control::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}
.precio-control::-webkit-slider-thumb {
    appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    border: 2px solid #ff3b00;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(26, 18, 16, 0.16);
    cursor: grab;
}
.precio-control::-moz-range-track {
    height: 4px;
    background: transparent;
    border: 0;
}
.precio-control::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border: 2px solid #ff3b00;
    border-radius: 50%;
    background: #fff;
    cursor: grab;
}
.precio-control-max { z-index: 2; }
.logo-sitio {
    height: 64px;
    width: auto;
    display: block;
}
.fecha { position: relative; }
.filtros .fecha-boton, .formulario .fecha-boton {
    background: #fff;
    color: var(--tinta);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    text-align: left;
}
.fecha-boton { text-align: left; cursor: pointer; }
.fecha-panel {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    width: 308px;
    padding: 16px 14px 12px;
    background: #fffdf9;
    border-radius: 18px;
    border: 1px solid rgba(212, 180, 131, 0.55);
    box-shadow: 0 16px 40px rgba(26, 18, 16, 0.08);
}
.fecha-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fecha-nav button {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 1px solid rgba(212, 180, 131, 0.55);
    border-radius: 50%;
    background: #fff;
    color: #ff3b00;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0;
    text-transform: none;
    font-size: 1.15rem;
    line-height: 30px;
    box-shadow: none;
}
.fecha-nav button:hover { background: #fff4ef; }
.fecha-titulo {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #1a1210;
}
.fecha-dias {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.fecha-nombre {
    text-align: center;
    font-size: 0.68rem;
    color: #a89890;
    padding: 4px 0 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.fecha-nombre.fin { color: #ff3b00; }
.fecha-panel .fecha-dia {
    width: 100%;
    height: 36px;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #1a1210;
    border-radius: 10px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 36px;
    box-shadow: none;
}
.fecha-panel .fecha-dia.fuera { color: #d9d0c8; }
.fecha-panel .fecha-dia.hoy { box-shadow: inset 0 0 0 1px rgba(255, 59, 0, 0.55); color: #ff3b00; }
.fecha-panel .fecha-dia:hover { background: #fff4ef; color: #ff3b00; }
.fecha-panel .fecha-dia.elegido,
.fecha-panel .fecha-dia.elegido:hover { background: #ff3b00; color: #fff; box-shadow: none; }
.fecha-panel .fecha-dia.en-rango { background: #ffe4d8; color: #1a1210; border-radius: 0; }
.fecha-panel .fecha-dia.en-rango.elegido { border-radius: 10px; }
.fecha-atajos { display: flex; gap: 6px; margin-bottom: 12px; }
.fecha-atajos button {
    flex: 1;
    min-width: 0;
    height: auto;
    padding: 8px 6px;
    border: 1px solid rgba(212, 180, 131, 0.55);
    border-radius: 999px;
    background: #fff;
    color: #1a1210;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    box-shadow: none;
}
.fecha-atajos button.activo,
.fecha-atajos button:hover { background: #ff3b00; color: #fff; border-color: #ff3b00; }
.fecha-ayuda { margin: 0 0 8px; font-size: 0.78rem; color: #8a7b72; }
.fecha-aplicar {
    width: 100%;
    margin-top: 12px;
    border: 0;
    border-radius: 12px;
    background: #ff3b00;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    cursor: pointer;
    padding: 10px 14px;
    box-shadow: none;
}
.hora-fila { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.filtros button[type="submit"], .formulario > button[type="submit"], .btn-solido {
    background: linear-gradient(135deg, #ff5a1f, #e10600);
    color: #fff;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    padding: 12px 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
.fecha-panel button.fecha-dia,
.fecha-panel button.fecha-antes,
.fecha-panel button.fecha-despues,
.selector button.selector-boton,
.selector-panel button {
    background-image: none;
    text-transform: none;
    letter-spacing: 0;
}

.rejilla {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tarjeta {
    background: var(--papel);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212, 180, 131, 0.35);
    box-shadow: 0 16px 40px rgba(26, 18, 16, 0.06);
    animation: subir 0.55s ease both;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.rejilla .tarjeta:nth-child(8n+2) { animation-delay: 0.05s; }
.rejilla .tarjeta:nth-child(8n+3) { animation-delay: 0.1s; }
.rejilla .tarjeta:nth-child(8n+4) { animation-delay: 0.15s; }
.rejilla .tarjeta:nth-child(8n+5) { animation-delay: 0.2s; }
.rejilla .tarjeta:nth-child(8n+6) { animation-delay: 0.25s; }
.rejilla .tarjeta:nth-child(8n+7) { animation-delay: 0.3s; }
.rejilla .tarjeta:nth-child(8n+8) { animation-delay: 0.35s; }
@keyframes subir {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.tarjeta.vista {
    transform: none;
    opacity: 1;
}

.tarjeta:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 59, 0, 0.45);
    box-shadow: 0 16px 32px rgba(255, 59, 0, 0.16);
}
.descuento {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
    background: #ff3b00;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 7px;
    border-radius: 8px;
    animation: pulso-oferta 1.6s ease-in-out infinite;
}
@keyframes pulso-oferta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.foto {
    display: block;
    position: relative;
    overflow: hidden;
    height: 140px;
}

.foto img, .ficha-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tarjeta:hover .foto img { transform: scale(1.06); }

.etiqueta {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(26, 18, 16, 0.72);
    color: var(--oro);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cuerpo { padding: 8px 10px 12px; }

.tarjeta h2 { font-family: Outfit, Calibri, sans-serif; font-size: 0.92rem; font-weight: 600; line-height: 1.2; margin: 2px 0 4px; }
.tarjeta h2 a { text-decoration: none; }
.vende { margin: 0; color: #5c463c; font-size: 0.78rem; }
.precio { font-size: 0.9rem; margin: 6px 0 4px; }
.precio s { color: #9a8b7c; margin-right: 8px; }
.precio strong { color: var(--vino); font-size: 1.15rem; }
.meta { color: #6d5c52; font-size: 0.72rem; margin: 0; display: flex; align-items: center; gap: 4px; }
.meta svg { width: 16px; height: 16px; color: #ff3b00; flex: none; }
.velo {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(26, 18, 16, 0.55);
    animation: aparecer-velo 0.28s ease;
}
.velo[hidden] { display: none; }
@keyframes aparecer-velo {
    from { opacity: 0; }
    to { opacity: 1; }
}
.panel {
    position: fixed;
    z-index: 41;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.96);
    opacity: 0;
    width: min(440px, calc(100% - 32px));
    max-height: min(86vh, 720px);
    overflow: auto;
    background: #fffdf9;
    border-radius: 22px;
    padding: 22px 22px 26px;
    box-shadow: 0 24px 70px rgba(26, 18, 16, 0.28);
}
.panel.abierto {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.panel[hidden] { display: none; }
@keyframes aparecer-panel {
    from { opacity: 0; transform: translate(-50%, -42%) scale(0.94); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.accion-admin { margin: 0 0 16px; }
.accion-admin .btn-solido { display: inline-block; }
.panel img { width: 100%; height: 240px; object-fit: cover; border-radius: 16px; }
#cerrar-ficha {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #ff3b00;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(42, 36, 32, 0.12);
}

.vacio { padding: 48px 0; text-align: center; }

.ficha {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    animation: sube 0.8s ease both;
}

.ficha-foto {
    height: 520px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(74, 0, 8, 0.25);
}

.ficha h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 0.95; margin: 8px 0 12px; }
.ficha .btn-solido { display: inline-block; text-decoration: none; margin-top: 12px; }

.formulario { display: grid; gap: 14px; max-width: 760px; }
.formulario label { display: grid; gap: 6px; font-size: 0.92rem; }
.tabla { width: 100%; border-collapse: collapse; background: var(--papel); border-radius: 18px; overflow: hidden; }
.tabla th, .tabla td { text-align: left; padding: 14px; border-bottom: 1px solid rgba(152, 0, 0, 0.08); }
.tabla th { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vino); }
.aviso { background: #fff4e4; border-left: 4px solid var(--oro); padding: 14px 16px; border-radius: 12px; }
.form-eliminar, .form-activa { display: inline; }
.foto-previa { max-width: 240px; height: auto; }
.fila-activa { align-items: center; grid-template-columns: auto auto; justify-content: start; }
.interruptor { position: relative; display: inline-block; width: 46px; height: 26px; }
.interruptor input { opacity: 0; width: 0; height: 0; }
.interruptor span { position: absolute; inset: 0; background: #c8bdb4; border-radius: 999px; cursor: pointer; }
.interruptor span::after { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; }
.interruptor input:checked + span { background: #ff3b00; }
.interruptor input:checked + span::after { transform: translateX(20px); }

@keyframes sube {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
    .rejilla { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
    .menu-boton { display: inline-block; }
    .radar { flex: none; margin-left: 12px; }
    .radar-texto { display: none; }
    .barra nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 4px;
        padding: 10px;
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(26, 18, 16, 0.12);
        transform-origin: top right;
        transform: translateY(-8px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    }
    .barra.menu-abierto nav {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .barra nav a {
        margin-left: 0;
        padding: 12px 10px;
        border-radius: 12px;
    }
    .barra nav a:hover { background: #fff4ef; }
}
@media (max-width: 800px) {
    .filtros {
        grid-template-columns: 1fr auto;
        gap: 8px;
        margin: 8px 10px;
        padding: 8px;
    }
    .filtros-abrir {
        display: inline-flex;
        align-items: center;
        height: 40px;
        padding: 0 14px;
        border: 0;
        border-radius: 999px;
        background: #fff1eb;
        color: #ff3b00;
        font-weight: 700;
        cursor: pointer;
    }
    .filtros-panel { display: none; }
    .filtros.abierto .filtros-panel {
        display: grid;
        grid-column: 1 / -1;
        gap: 8px;
    }
    .filtros.abierto .filtros-abrir { background: #ff3b00; color: #fff; }
    .precio-rango { grid-column: auto; padding: 6px 10px; }
}
@media (max-width: 720px) {
    .rejilla { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logo-sitio { height: 48px; }
    .foto { height: 120px; }
    .ficha { grid-template-columns: 1fr; }
    .ficha-foto { height: 320px; }
    .barra { padding: 14px 18px; }
}

body.catalogo {
    background: transparent;
    color: #1b130d;
}
body.catalogo::before,
body.catalogo::after {
    content: "";
    position: fixed;
    inset: -20%;
    z-index: 0;
    pointer-events: none;
    background-repeat: repeat;
}
body.catalogo::before {
    opacity: 1;
    background-image: url("../imagenes/iconos/red.svg?v=2");
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: none;
}
body.catalogo::after {
    opacity: 1;
    background-image:
        linear-gradient(90deg, transparent 0%, rgba(243, 92, 20, 0.04) 38%, rgba(243, 92, 20, 0.32) 50%, rgba(243, 92, 20, 0.04) 62%, transparent 100%),
        linear-gradient(transparent 0%, rgba(243, 92, 20, 0.04) 38%, rgba(243, 92, 20, 0.28) 50%, rgba(243, 92, 20, 0.04) 62%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(243, 92, 20, 0.03) 38%, rgba(243, 92, 20, 0.22) 50%, rgba(243, 92, 20, 0.03) 62%, transparent 100%);
    background-repeat: no-repeat;
    background-size: 220px 6px, 6px 200px, 180px 5px;
    background-position: -240px 90px, 180px -220px, -200px 270px;
    animation: pulso-red 18s linear infinite;
}
body.catalogo > * { position: relative; z-index: 1; }
@keyframes pulso-red {
    0% { background-position: -240px 90px, 180px -220px, -200px 270px; }
    100% { background-position: calc(100% + 240px) 90px, 180px calc(100% + 220px), calc(100% + 200px) 450px; }
}
@media (prefers-reduced-motion: reduce) {
    body.catalogo::before,
    body.catalogo::after { animation: none; }
}
@media (max-width: 800px) {
    .barra { padding: 12px 16px; }
    .envoltorio { padding: 8px 16px 40px; }
    .filtros { width: auto; margin: 12px 16px; }
}
.logo-sitio { height: 44px; width: auto; }
.barra {
    height: 74px;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(27, 19, 13, 0.1);
    box-shadow: none;
    backdrop-filter: blur(14px);
}
.barra nav {
    gap: 6px;
    flex: none;
}
.barra nav a {
    border-radius: 999px;
    padding: 10px 16px;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a7a6b;
}
.barra nav a[aria-current="page"],
.barra nav a:hover {
    color: #F35C14;
    background: #fff1e8;
    box-shadow: inset 0 0 0 1px rgba(243, 92, 20, 0.25);
}
.envoltorio { max-width: 1180px; margin-left: auto; margin-right: auto; }
.resultados {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 8px 0 22px;
}
.resultados h2 {
    margin: 0;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.resultados .cuenta { margin: 0; color: #8a7a6b; font-family: Sora, Manrope, sans-serif; font-weight: 700; }
.resultados .cuenta b { color: #F35C14; }
.rejilla { gap: 22px; }
.tarjeta .foto > img { width: 100%; height: 100%; object-fit: cover; }
.foto { height: 200px; background: #fff1e8; }
.tarjeta .foto .tienda-marca img { display: none; }
.tarjeta h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.precio, .precio strong { white-space: nowrap; }
.tarjeta {
    border: 1px solid rgba(27, 19, 13, 0.1);
    border-radius: 22px;
    box-shadow: 0 1px 2px rgba(27, 19, 13, 0.05), 0 4px 14px rgba(27, 19, 13, 0.06);
}
.tarjeta:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 92, 20, 0.35);
    box-shadow: 0 2px 6px rgba(27, 19, 13, 0.06), 0 16px 40px -12px rgba(27, 19, 13, 0.18);
}
.foto { height: 172px; background: #fff1e8; }
.tienda-marca, .descuento {
    position: absolute;
    top: 12px;
    z-index: 2;
    border-radius: 999px;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}
.tienda-marca {
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.92);
    color: #1b130d;
    box-shadow: 0 2px 8px rgba(27, 19, 13, 0.12);
}
.tienda-marca svg { width: 12px; height: 12px; color: #F35C14; }
.descuento {
    right: 12px;
    left: auto;
    padding: 6px 10px;
    background: linear-gradient(120deg, #F35C14, #ff8a3d);
    color: #fff;
}
.etiqueta { display: none; }
.marcas-oferta { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; }
.marcas-oferta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff1e8;
    color: #F35C14;
    font-size: 0.72rem;
    font-weight: 700;
}
.tarjeta h2 { font-family: Sora, Manrope, sans-serif; font-size: 1.02rem; font-weight: 700; }
.vende {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #8a7a6b;
    font-size: 0.83rem;
}
.precio strong { font-family: Sora, Manrope, sans-serif; font-size: 1.35rem; font-weight: 800; color: #1b130d; }
.ver-ficha {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #F35C14;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}
.filtros {
    border-radius: 22px;
    box-shadow: 0 2px 6px rgba(27, 19, 13, 0.06), 0 16px 40px -12px rgba(27, 19, 13, 0.18);
    border: 1px solid rgba(27, 19, 13, 0.1);
}
.filtros input[type="search"], .fecha-boton {
    border-radius: 14px;
    border: 1.5px solid rgba(27, 19, 13, 0.1);
}
.filtros button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(120deg, #F35C14, #ff8a3d);
    color: #fff;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    box-shadow: 0 12px 34px -8px rgba(243, 92, 20, 0.45);
    cursor: pointer;
}
.filtros button[type="submit"] img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.filtros input[type="search"] {
    height: 52px;
    padding-left: 44px;
    background-image: url("../imagenes/iconos/buscar.png");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 18px 18px;
}
.filtros .fecha-boton {
    height: 52px;
    padding-left: 44px;
    background-image: url("../imagenes/iconos/calendario.png");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 18px 18px;
}
.legal {
    max-width: 860px;
    margin: 28px auto 70px;
    padding: 48px clamp(24px, 6vw, 64px);
    background: #fff;
    border: 1px solid rgba(27, 19, 13, 0.1);
    border-radius: 28px;
    box-shadow: 0 1px 2px rgba(27, 19, 13, 0.05);
}
.legal h1, .legal h2, .contacto h1, .resultados h2 {
    font-family: Sora, Manrope, sans-serif;
}
.legal a { color: #F35C14; font-weight: 700; }
@media (max-width: 1500px) {
    .filtros {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
        width: calc(100% - 32px);
    }
    .filtros button[type="submit"] { grid-column: 3; grid-row: 1; }
    .precio-rango { grid-column: 1 / -1; }
    .radar-texto { display: none; }
    .barra nav { min-width: max-content; }
}
@media (max-width: 800px) {
    .barra { padding: 12px 16px; }
    .envoltorio { padding: 8px 16px 40px; }
    .filtros { width: auto; margin: 12px 16px; grid-template-columns: 1fr auto; }
    .filtros button[type="submit"] { grid-column: auto; grid-row: auto; }
    .precio-rango { grid-column: auto; }
    .legal { margin: 16px 16px 40px; padding: 28px 16px; }
    body.catalogo > .barra { z-index: 40; overflow: visible; }
    .barra nav { min-width: 0; z-index: 41; }
}
.filtros {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(140px, 0.7fr) auto;
}
.filtros button[type="submit"] { grid-column: 4; grid-row: 1; }
.filtros select[name="clase"] { height: 52px; }
.precio-rango { grid-column: 1 / -1; overflow: visible; }
.precio-pista { flex: 1; min-width: 120px; }
@media (max-width: 800px) {
    .filtros { grid-template-columns: 1fr auto; }
    .filtros button[type="submit"] { grid-column: auto; grid-row: auto; }
    .precio-rango { grid-column: auto; }
}
body.catalogo > header.barra {
    z-index: 100;
    overflow: visible;
}
@media (max-width: 800px) {
    body.catalogo > header.barra {
        backdrop-filter: none;
    }
    body.catalogo > header.barra.menu-abierto nav {
        z-index: 101;
    }
}
body.catalogo > form.filtros { z-index: 20; overflow: visible; }
.fecha-panel { z-index: 40; }
.tarjeta .precio {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 8px;
    white-space: normal;
    overflow: visible;
}
.tarjeta .precio s,
.tarjeta .precio strong { white-space: nowrap; }
.tarjeta .precio strong { font-size: clamp(1.05rem, 1.15vw, 1.35rem); }
.envoltorio, .filtros { max-width: none; }
.filtros { width: calc(100% - 48px); }
.rejilla {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(max(190px, calc((100% - 112px) / 8)), 1fr));
}
main.envoltorio.ficha {
    max-width: 980px;
    width: calc(100% - 48px);
    margin: 28px auto 48px;
    padding: 0;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    align-items: stretch;
    background: #fffdf9;
    border: 1px solid rgba(27, 19, 13, 0.1);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(27, 19, 13, 0.05), 0 24px 50px -20px rgba(27, 19, 13, 0.22);
}
main.envoltorio.ficha .ficha-foto {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    background: #f6f1eb;
}
main.envoltorio.ficha > div {
    padding: 36px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
main.envoltorio.ficha h1 {
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
main.envoltorio.ficha .vende { font-size: 0.95rem; margin: 0 0 14px; }
main.envoltorio.ficha .precio { margin: 0 0 16px; }
main.envoltorio.ficha .precio strong { font-size: 1.85rem; }
main.envoltorio.ficha .descripcion {
    margin: 0 0 16px;
    color: #3d322b;
    font-size: 1rem;
    line-height: 1.55;
}
main.envoltorio.ficha .meta { margin: 0 0 18px; font-size: 0.85rem; }
main.envoltorio.ficha .ficha-volver {
    color: #8a7a6b;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}
main.envoltorio.ficha .btn-solido {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 12px 18px;
}
main.envoltorio.ficha .btn-solido img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
@media (max-width: 800px) {
    .filtros { width: auto; margin: 12px 16px; }
    .envoltorio { padding: 8px 16px 40px; }
    .rejilla { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .foto { height: 132px; }
    main.envoltorio.ficha {
        width: calc(100% - 32px);
        margin: 16px auto 32px;
        grid-template-columns: 1fr;
    }
    main.envoltorio.ficha .ficha-foto { min-height: 0; height: 240px; }
    main.envoltorio.ficha > div { padding: 18px 16px 22px; }
    main.envoltorio.ficha .precio strong { font-size: 1.45rem; }
}
.filtros {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.filtros input[type="search"] { width: 380px; flex: 0 1 380px; }
.filtros .fecha { width: 180px; flex: 0 0 180px; }
.filtros .selector { width: auto; flex: 0 0 auto; }
.filtros .selector.abierto { z-index: 60; }
.filtros .selector button.selector-boton {
    width: auto;
    min-width: 148px;
    height: 52px;
    padding-right: 42px;
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1.2 6 6.2 11 1.2' fill='none' stroke='%23ff3b00' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 9px;
}
.ver-ficha {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff1e8;
    color: #F35C14;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}
.ver-ficha img { width: 16px; height: 16px; }
.filtros .selector-panel { right: auto; width: max-content; min-width: 100%; z-index: 60; }
.filtros button[type="submit"] { grid-column: auto; grid-row: auto; flex: 0 0 auto; }
.precio-rango {
    flex: 1 1 840px;
    width: auto;
    min-width: min(100%, 520px);
    max-width: 100%;
    position: relative;
    z-index: 1;
}
.precio-pista { flex: 1 1 360px; min-width: 220px; }
@media (max-width: 900px) {
    .precio-rango { flex: 1 1 100%; min-width: 0; }
    .precio-pista { min-width: 140px; }
}
.cabecera { position: sticky; top: 0; z-index: 40; }
.barra { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; align-items: center; }
.barra-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 7px 28px;
    background: #1b130d;
    color: #fff;
    font-size: 0.82rem;
}
.barra-top p { margin: 0; }
.barra-top a { color: #fff; font-weight: 700; text-decoration: none; margin-left: 14px; }
.radar { justify-self: center; }
.barra nav { justify-self: end; gap: 6px; }
.barra nav a {
    height: 38px;
    padding: 0 12px;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.88rem;
    color: #1b130d;
    background: #fff7f3;
}
@media (max-width: 800px) {
    .barra-top { padding: 7px 16px; }
    .menu-boton { grid-column: 3; justify-self: end; }
    .barra nav { justify-self: stretch; }
}
.rejilla {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 16px;
}
.rejilla > .tarjeta {
    width: 228px;
    flex: 0 0 228px;
    max-width: 228px;
}
.tarjeta-acciones {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.tarjeta-acciones .ver-ficha,
.tarjeta-acciones .guardar-luego {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    min-height: 36px;
    padding: 6px 6px;
    line-height: 1;
    white-space: nowrap;
    font-size: 0.78rem;
}
.tarjeta-acciones img {
    width: 16px;
    height: 16px;
    margin: 0;
    flex: none;
    display: block;
}
@media (max-width: 800px) {
    .rejilla > .tarjeta {
        width: calc(50% - 8px);
        flex-basis: calc(50% - 8px);
        max-width: none;
    }
}
.nl-flotante {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: max-content;
    max-width: calc(100vw - 24px);
    margin: 0;
    padding: 0;
}
.nl-flotante > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 12px 18px;
    border-radius: 999px;
    background: #F35C14;
    color: #fff;
    font-family: Sora, Manrope, sans-serif;
    font-weight: 700;
    box-shadow: 0 12px 30px -10px rgba(243, 92, 20, 0.7);
}
.nl-flotante > summary::-webkit-details-marker { display: none; }
.nl-flotante > summary img { width: 22px; height: 22px; display: block; flex: none; }
.nl-flotante:not([open]) > form { display: none; }
.nl-flotante[open] .nl-guia { display: none; }
.nl-guia {
    order: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    max-width: calc(100vw - 36px);
}
.nl-guia img { pointer-events: none; }
.nl-dialogo {
    margin: 0 128px 8px 0;
    max-width: 168px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #fff;
    color: #1b130d;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(27, 19, 13, 0.16);
}
.nl-guia img {
    width: 120px;
    min-width: 0;
    max-width: 120px;
    max-height: 160px;
    height: auto;
    flex: 0 0 120px;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    background: transparent;
}
.nl-flotante form#form-suscripcion {
    max-height: min(70vh, 640px);
    overflow: auto;
    padding: 18px;
    gap: 14px;
}
.cabecera {
    background: #120c09;
    box-shadow: 0 18px 36px -22px rgba(0, 0, 0, 0.85);
}
.barra {
    height: 88px;
    padding: 0 28px;
    display: grid;
    grid-template-columns: auto minmax(160px, 1fr) auto;
    background: linear-gradient(90deg, #120c09 0%, #3a1a0c 48%, #120c09 100%);
    border-bottom: 4px solid #F35C14;
    color: #fff;
    box-shadow: none;
}
.logo-sitio { height: 56px; }
.radar-texto { color: #ffd4c2; font-weight: 800; }
.radar-disco {
    background: #2a1610;
    border-color: rgba(243, 92, 20, 0.75);
    box-shadow: 0 0 0 6px rgba(243, 92, 20, 0.16);
}
.barra nav {
    gap: 8px;
}
.barra nav a,
.barra .barra-saludo {
    color: #fff;
    background: transparent;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}
.barra nav a:hover,
.barra nav a[aria-current="page"] {
    color: #fff;
    background: #F35C14;
    box-shadow: none;
}
.barra-saludo {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffd4c2;
}
.barra nav a.barra-cta {
    background: #fff;
    color: #1b130d;
}
.barra nav a.barra-cta:hover {
    background: #F35C14;
    color: #fff;
}
.menu-boton {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}
.menu-boton span { background: #fff; }
@media (max-width: 800px) {
    .barra { height: 72px; padding: 0 16px; }
    .logo-sitio { height: 44px; }
    .barra nav {
        background: #1b130d;
        border-color: rgba(243, 92, 20, 0.45);
    }
    .barra nav a:hover { background: #F35C14; color: #fff; }
    .barra-saludo { max-width: none; }
}
body.catalogo > .nl-anuncio {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: calc(100vw - 24px);
}
.nl-flotante-boton {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #F35C14;
    color: #fff;
    font-family: Sora, Manrope, sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px -10px rgba(243, 92, 20, 0.7);
}
.nl-flotante-boton img { width: 22px; height: 22px; display: block; }
