:root {
    --nav-primary: #d17a5b;
    --nav-secondary: #e9ddcf;
    --nav-bg: #faf9f677;
    --nav-border: #666666;
    --nav-text: #1e1e1e;
    --font-primary: "Manrope", Arial, Helvetica, sans-serif;
    --font-heading: "Manrope", Arial, Helvetica, sans-serif;
    --border: rgba(209, 122, 91, 0.22);
    --radius-md: 24px;
    --text: #241d1a;
    --muted: rgba(30, 30, 30, 0.72);
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 112px 32px 32px;
    font-family: var(--font-primary);
    background:
        radial-gradient(circle at top left, #faf9f6, transparent 30%),
        radial-gradient(circle at bottom right, #e9ddcf, transparent 36%),
        linear-gradient(135deg, #faf9f6, #faf9f6);
}

.glass-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 32px;
    border-bottom: 1px solid rgba(209, 122, 91, 0.22);
    background: var(--nav-bg);
    color: var(--nav-text);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(209, 122, 91, 0.12);
    box-sizing: border-box;
    z-index: 1000;
}

.brand,
.navbar-links,
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand {
    color: inherit;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-heading);
}

.brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nav-secondary), var(--nav-primary));
    color: #ffffff;
}

.nav-link,
.icon-button,
.dropdown__menu button,
.primary-button,
.secondary-button {
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    text-decoration: none;
    padding: 10px 14px;
    transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    font: inherit;
}

.nav-link:hover,
.icon-button:hover,
.dropdown__menu button:hover {
    transform: translateY(-1px);
    background: transparent;
    color: #e4764e;
    text-shadow: 0 0 10px #d17a5bcc;
}

.nav-link.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--nav-secondary), var(--nav-primary));
    box-shadow: 0 12px 24px #d17a5b56;
}

.icon-button--label {
    min-width: 72px;
}

.dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--nav-border);
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.34);
}

.catalogo-contenedor {
    margin-top: 36px;
}

.catalogo-encabezado,
.catalogo-productos {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(250, 249, 246, 0.92);
    box-shadow: 0 18px 40px rgba(209, 122, 91, 0.12);
}

.catalogo-encabezado {
    margin-bottom: 24px;
    padding: 28px;
}

.catalogo-encabezado__etiqueta,
.pricing-lab__badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(209, 122, 91, 0.14);
    color: #a95b3f;
    font-size: 12px;
    font-weight: 700;
}

.catalogo-encabezado h1 {
    margin: 14px 0 10px;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
}

.catalogo-encabezado p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.catalogo-productos {
    padding: 24px;
}

.btn-filtro.activo {
    transform: translateY(-1px);
    background: transparent;
    color: #e4764e;
    text-shadow: 0 0 10px #d17a5bcc;
}

.catalogo-estado {
    min-height: 24px;
    margin-bottom: 16px;
    color: var(--muted);
    font-weight: 600;
}

.pricing-lab {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-lab__card {
    display: grid;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 28px rgba(209, 122, 91, 0.08);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.pricing-lab__card:hover,
.pricing-lab__card:focus-within {
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(209, 122, 91, 0.16), rgba(255, 255, 255, 0.9));
    border-color: rgba(209, 122, 91, 0.45);
    box-shadow: 0 18px 36px rgba(209, 122, 91, 0.18);
}

.pricing-lab__card:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(209, 122, 91, 0.16);
}

.pricing-lab__card h4 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.pricing-lab__imagen {
    width: 100%;
    height: 260px;
    min-height: 260px;
    object-fit: contain;
    padding: 22px;
    background: linear-gradient(135deg, rgba(250, 249, 246, 1), rgba(233, 221, 207, 1));
}

.pricing-lab__cuerpo {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.pricing-lab__cuerpo p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.pricing-lab__meta strong {
    color: var(--text);
}

.primary-button {
    background: linear-gradient(135deg, var(--nav-secondary), var(--nav-primary));
    color: #000000 ;
    box-shadow: 0 12px 24px rgba(209, 122, 91, 0.18);
    
}

.secondary-button {
    border-color: rgba(209, 122, 91, 0.22);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-1px);
}

.catalogo-paginacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.catalogo-paginacion__estado {
    min-width: 110px;
    text-align: center;
    color: var(--text);
    font-weight: 700;
}

.primary-button:disabled,
.secondary-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.site-footer {
    width: min(1120px, 100%);
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(209, 122, 91, 0.22);
    border-radius: 28px;
    background: var(--nav-bg);
    color: var(--nav-text);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(209, 122, 91, 0.12);
    text-align: center;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nav-secondary), var(--nav-primary));
    color: var(--color-negro);
    font-weight: 800;
}

.site-footer__name {
    font-weight: 800;
    font-family: var(--font-heading);
}

.site-footer__link,
.site-footer__social-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-footer__link:hover,
.site-footer__social-link:hover {
    opacity: 0.75;
}

.site-footer__social-link {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(229, 225, 230, 0.12);
    background: rgba(229, 225, 230, 0.06);
    font-size: 0.8rem;
    font-weight: 700;
}

.site-footer__social-link:hover {
    background: rgba(179, 162, 105, 0.14);
    border-color: rgba(179, 162, 105, 0.25);
}

.site-footer__copy {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 860px) {
    .glass-navbar {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 20px;
    }

    .navbar-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .navbar-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    body {
        padding: 132px 20px 20px;
    }

    .catalogo-encabezado,
    .catalogo-productos {
        padding: 20px;
    }

    .pricing-lab__imagen {
        height: 220px;
        min-height: 220px;
    }

    .site-footer__grid,
    .site-footer__bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}
