:root {
    --ds-blue: #2563eb;
    --ds-blue-dark: #1d4ed8;
    --ds-blue-light: #3b82f6;
    --ds-orange: #f97316;
    --ds-orange-dark: #ea580c;
    --ds-white: #ffffff;
    --ds-gray-50: #f8fafc;
    --ds-gray-100: #f1f5f9;
    --ds-gray-200: #e2e8f0;
    --ds-gray-500: #64748b;
    --ds-gray-700: #334155;
    --ds-gray-900: #0f172a;
    --ds-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --ds-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --ds-radius: 1rem;
    --ds-radius-lg: 1.25rem;
    --font-display: "Instrument Sans", system-ui, sans-serif;
    --font-body: "Instrument Sans", system-ui, sans-serif;
}

* { scroll-behavior: smooth; }

body.public-site {
    font-family: var(--font-body);
    color: var(--ds-gray-700);
    background: var(--ds-gray-50);
    line-height: 1.65;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--ds-gray-200);
    z-index: 1040;
}

.site-logo { height: 52px; width: auto; max-width: 180px; }

.site-header-top { padding-bottom: 0.75rem !important; }

.site-nav-desktop {
    border-top: 1px solid var(--ds-gray-100);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    overflow-x: auto;
}

.site-nav-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0 0 0.25rem;
    min-width: max-content;
}

.site-nav-link {
    display: inline-flex;
    white-space: nowrap;
    border-radius: 0.65rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ds-gray-700);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav-link:hover {
    background: var(--ds-gray-100);
    color: var(--ds-blue-dark);
}

.site-nav-link--active {
    background: var(--ds-blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.site-mobile-toggle {
    border: 1px solid var(--ds-gray-200);
    background: #fff;
    border-radius: 0.65rem;
    padding: 0.55rem;
    color: var(--ds-gray-700);
}

.site-mobile-toggle .icon-close { display: none; }
.site-mobile-toggle.is-open .icon-menu { display: none; }
.site-mobile-toggle.is-open .icon-close { display: block; }

.site-mobile-menu {
    border-top: 1px solid var(--ds-gray-200);
    background: #fff;
}

.site-mobile-menu[hidden] { display: none !important; }

.site-mobile-link {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: 0.65rem;
    color: var(--ds-gray-700);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.site-mobile-link:hover { background: var(--ds-gray-100); }

.site-mobile-link--active {
    background: rgba(37, 99, 235, 0.08);
    color: var(--ds-blue-dark);
}

.site-mobile-link--cta {
    margin-top: 0.5rem;
    background: var(--ds-blue);
    color: #fff;
    text-align: center;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ds-gray-200);
}

.page-hero--image { padding: 0; }

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.88) 0%, rgba(248, 250, 252, 0.94) 55%, rgba(248, 250, 252, 0.98) 100%);
}

.page-hero--home .page-hero-overlay {
    background: linear-gradient(105deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.82) 45%, rgba(248, 250, 252, 0.55) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2.5rem;
}

.page-hero--home .page-hero-content {
    padding: 4.5rem 0 4rem;
}

.service-link-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ds-gray-200);
    border-radius: var(--ds-radius);
    padding: 1.35rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--ds-shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ds-shadow);
    border-color: rgba(37, 99, 235, 0.25);
    color: inherit;
}

.service-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--ds-blue);
    margin-bottom: 1rem;
    transition: background 0.2s ease;
}

.service-link-card:hover .service-icon-box {
    background: rgba(37, 99, 235, 0.14);
}

.service-link-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ds-gray-900);
    margin-bottom: 0.5rem;
}

.service-link-card-text {
    flex: 1;
    color: var(--ds-gray-500);
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
}

.service-link-card-more {
    color: var(--ds-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.brand-logo,
.footer-logo,
.site-logo { height: auto; max-width: 180px; }

.nav-link {
    color: var(--ds-gray-700);
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link--active {
    color: var(--ds-blue);
}

.navbar-toggler { border-color: var(--ds-gray-200); }

.btn-ds-primary {
    background: linear-gradient(135deg, var(--ds-blue), var(--ds-blue-light));
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ds-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(29, 78, 216, 0.32);
}

.btn-ds-secondary {
    background: var(--ds-orange);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-ds-secondary:hover {
    background: var(--ds-orange-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ds-ghost,
.btn-ds-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: inherit;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-ds-ghost {
    border-color: var(--ds-gray-200);
    color: var(--ds-gray-900);
    background: rgba(255, 255, 255, 0.7);
}

.btn-ds-ghost:hover { background: #fff; color: var(--ds-blue); }

.btn-ds-light {
    background: #fff;
    color: var(--ds-blue-dark);
    border: none;
    font-weight: 700;
    border-radius: 999px;
}

.btn-ds-light:hover { color: var(--ds-blue-dark); background: #fff; }

.btn-ds-ghost-light { color: #fff; }
.btn-ds-ghost-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.18), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.14), transparent 30%),
        linear-gradient(135deg, #eff6ff 0%, #f8fafc 45%, #fff7ed 100%);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow,
.page-eyebrow {
    color: var(--ds-orange);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.hero-title,
.page-title,
.section-title {
    font-family: var(--font-display);
    color: var(--ds-gray-900);
    font-weight: 700;
    line-height: 1.15;
}

.hero-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-title { font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

.hero-lead,
.page-lead,
.section-subtitle {
    color: var(--ds-gray-500);
    font-size: 1.05rem;
    max-width: 48rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-radius: var(--ds-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--ds-shadow-soft);
}

.hero-panel-badge {
    display: inline-block;
    background: rgba(29, 78, 216, 0.1);
    color: var(--ds-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hero-panel-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ds-gray-900);
    margin-bottom: 0.75rem;
}

.hero-panel-text { margin-bottom: 1rem; }

.hero-panel-link {
    color: var(--ds-blue);
    font-weight: 600;
    text-decoration: none;
}

.page-hero {
    text-align: left;
}

.page-hero:not(.page-hero--image) {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(180deg, #eff6ff, var(--ds-gray-50));
    border-bottom: 1px solid var(--ds-gray-200);
}

.section-block { padding: 4rem 0; }
.section-block--soft { background: var(--ds-white); }
.section-block--cta { background: linear-gradient(135deg, var(--ds-blue-dark), var(--ds-blue)); }

.section-head { margin-bottom: 2rem; }

.ds-card,
.trust-card,
.info-panel,
.client-card,
.remote-tool,
.explore-card,
.catalog-teaser,
.cta-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ds-gray-200);
    border-radius: var(--ds-radius);
    box-shadow: var(--ds-shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ds-card,
.trust-card,
.client-card,
.explore-card { padding: 1.35rem; }

.ds-card:hover,
.explore-card:hover,
.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ds-shadow);
}

.ds-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(249, 115, 22, 0.12));
    color: var(--ds-blue);
    font-weight: 800;
    margin-bottom: 1rem;
}

.ds-card-title,
.trust-card-title,
.explore-card-title,
.client-card-title {
    font-family: var(--font-display);
    color: var(--ds-gray-900);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.ds-card-text,
.trust-card-text,
.explore-card-text,
.client-card-text { color: var(--ds-gray-500); margin-bottom: 0.75rem; }

.ds-card-link,
.explore-card-link {
    color: var(--ds-blue);
    font-weight: 600;
    text-decoration: none;
}

.explore-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.catalog-teaser,
.info-panel,
.cta-panel { padding: 2rem; }

.cta-panel { border: none; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(8px); }

.check-list,
.steps-list,
.tips-list,
.contact-list { color: var(--ds-gray-700); }

.check-list li,
.steps-list li {
    margin-bottom: 0.65rem;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ds-orange);
    font-weight: 700;
}

.steps-list { padding-left: 1.2rem; }
.steps-list li { margin-bottom: 0.75rem; }

.remote-tools {
    display: grid;
    gap: 2rem;
    margin: 2.5rem 0;
}

.remote-tool {
    padding: 0;
    overflow: hidden;
}

.remote-tool__header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--ds-gray-200);
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.remote-tool__brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2rem;
}

.remote-tool__logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 72px;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--ds-gray-200);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.remote-tool__logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 56px;
    object-fit: contain;
}

.remote-tool__intro {
    flex: 1 1 16rem;
    min-width: 0;
}

.remote-tool__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ds-gray-900);
    margin: 0 0 0.5rem;
}

.remote-tool__subtitle {
    color: var(--ds-gray-500);
    margin: 0 0 1rem;
    line-height: 1.6;
    max-width: 38rem;
}

.remote-tool__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(29, 78, 216, 0.25);
    background: rgba(29, 78, 216, 0.06);
    color: var(--ds-blue);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.remote-tool__link:hover {
    background: rgba(29, 78, 216, 0.12);
    border-color: rgba(29, 78, 216, 0.4);
    color: var(--ds-blue-dark);
}

.remote-tool__body {
    padding: 1.75rem 2rem 2rem;
}

.remote-tool__steps-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ds-gray-900);
    margin: 0 0 1.25rem;
}

.remote-tool__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.remote-tool__steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: var(--ds-gray-50);
    border: 1px solid var(--ds-gray-200);
}

.remote-tool__step-num {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ds-blue), var(--ds-blue-dark));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.remote-tool__step-text {
    color: var(--ds-gray-700);
    line-height: 1.55;
    padding-top: 0.15rem;
}

.info-panel--spacious {
    padding: 2.25rem 2rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .remote-tool__header {
        padding: 2.25rem 2.5rem 1.75rem;
    }

    .remote-tool__body {
        padding: 2rem 2.5rem 2.25rem;
    }

    .info-panel--spacious {
        padding: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .remote-tool__logo-wrap {
        width: 100%;
        min-width: 0;
    }
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.tips-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--ds-gray-200);
    border-radius: var(--ds-radius);
    padding: 1rem 1.1rem;
}

.tips-list-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(29, 78, 216, 0.1);
    color: var(--ds-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.client-card-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--ds-gray-900);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.client-card-logo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--ds-gray-200);
    margin-bottom: 1rem;
    overflow: hidden;
}

.client-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-card-sector {
    color: var(--ds-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-note,
.page-footer-note { color: var(--ds-gray-500); }

.map-wrap iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: var(--ds-radius);
    box-shadow: var(--ds-shadow-soft);
}

.contact-list li { margin-bottom: 1rem; }
.contact-list a { color: var(--ds-blue); }

.site-footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--ds-gray-200);
    color: var(--ds-gray-700);
}

.footer-text {
    color: var(--ds-gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--ds-gray-900);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a {
    color: var(--ds-gray-700);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--ds-blue-dark);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
    color: var(--ds-gray-700);
}

.footer-bottom {
    border-top: 1px solid var(--ds-gray-100);
    color: var(--ds-gray-500);
}

.floating-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    z-index: 1050;
    transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: scale(1.06);
}

/* Catálogo */
.catalogo-hero { padding-top: 2rem; }

.catalogo-title {
    font-family: var(--font-display);
    color: var(--ds-gray-900);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.catalogo-lead { color: var(--ds-gray-500); }

.catalogo-toolbar {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ds-gray-200);
    border-radius: var(--ds-radius-lg);
    padding: 1.25rem;
    box-shadow: var(--ds-shadow-soft);
}

.catalogo-toolbar-body {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.catalogo-toolbar-filtros {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.catalogo-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-catalogo-primary {
    background: var(--ds-blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
}

.btn-catalogo-primary:hover { background: var(--ds-blue-dark); color: #fff; }

.btn-catalogo-ghost {
    border: 1px solid var(--ds-gray-200);
    background: #fff;
    color: var(--ds-gray-900);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
}

.btn-catalogo-wa {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
}

.btn-catalogo-wa:hover { background: #1ebe57; color: #fff; }

.catalogo-section-title {
    font-family: var(--font-display);
    color: var(--ds-gray-900);
    font-size: 1.35rem;
}

.catalogo-card {
    background: #fff;
    border: 1px solid var(--ds-gray-200);
    border-radius: var(--ds-radius);
    overflow: hidden;
    box-shadow: var(--ds-shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalogo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ds-shadow);
}

.catalogo-card-image-wrap { display: block; position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--ds-gray-100); }

.catalogo-card-image,
.catalogo-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogo-card-image-placeholder,
.catalogo-detail-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ds-gray-500);
    min-height: 220px;
}

.catalogo-badge-destacado {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--ds-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.catalogo-card-body { padding: 1rem; }
.catalogo-card-meta { color: var(--ds-gray-500); font-size: 0.82rem; }

.catalogo-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.catalogo-card-title a { color: var(--ds-gray-900); text-decoration: none; }
.catalogo-card-title a:hover { color: var(--ds-blue); }

.catalogo-card-desc {
    color: var(--ds-gray-500);
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalogo-card-price {
    font-weight: 700;
    color: var(--ds-gray-900);
    margin-bottom: 0.35rem;
}

.catalogo-card-price--consultar { color: var(--ds-gray-500); font-weight: 600; }

.catalogo-stock-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.catalogo-stock--disponible { background: #dcfce7; color: #166534; }
.catalogo-stock--sin-stock { background: #fee2e2; color: #991b1b; }
.catalogo-stock--pocas { background: #ffedd5; color: #9a3412; }
.catalogo-stock--consultar { background: var(--ds-gray-100); color: var(--ds-gray-500); }

.catalogo-back-link {
    color: var(--ds-blue);
    text-decoration: none;
    font-weight: 600;
}

.catalogo-detail-image-wrap {
    border-radius: var(--ds-radius-lg);
    overflow: hidden;
    background: var(--ds-gray-100);
    border: 1px solid var(--ds-gray-200);
}

.catalogo-detail-chip {
    display: inline-block;
    background: rgba(29, 78, 216, 0.08);
    color: var(--ds-blue);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-right: 0.35rem;
    margin-bottom: 0.35rem;
}

.catalogo-detail-title {
    font-family: var(--font-display);
    color: var(--ds-gray-900);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.catalogo-detail-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ds-blue-dark);
}

.catalogo-detail-desc { color: var(--ds-gray-700); white-space: pre-wrap; }

@media (max-width: 991.98px) {
    .hero-section { padding-top: 3.5rem; }
    .hero-actions .btn { width: 100%; }
    .section-block { padding: 3rem 0; }
}

@media (max-width: 575.98px) {
    .floating-whatsapp { right: 1rem; bottom: 1rem; }
}
