/* Holmo style module: 05-content.css */
        .info-block {
            padding: 24px 16px;
            background: var(--bg-color);
            border-top: 1px solid var(--border-light);
        }
        .info-tag {
            font-size: 9.5px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            font-weight: 600;
        }
        .info-heading {
            font-family: var(--font-title);
            font-size: 22px;
            font-weight: 500;
            margin: 2px 0 14px 0;
            letter-spacing: 0.5px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 18px;
        }
        .trust-item {
            background: #ffffff;
            border: 1px solid var(--border-light);
            padding: 10px 6px;
            text-align: center;
            border-radius: 4px;
        }
        .trust-item b {
            display: block;
            font-size: 15px;
            margin-bottom: 2px;
        }
        .trust-item span {
            font-size: 9px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.2;
            display: block;
        }

        .sensory-bars {
            background: #ffffff;
            border: 1px solid var(--border-light);
            padding: 14px;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .bar-wrap {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .bar-head {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .bar-bg {
            height: 6px;
            background: #eee9e0;
            border-radius: 99px;
            overflow: hidden;
        }
        .bar-meter {
            height: 100%;
            background: var(--text-main);
            border-radius: 99px;
        }

        .notice-box {
            background: #ffffff;
            border-left: 3px solid var(--text-main);
            padding: 12px 14px;
            border-radius: 0 4px 4px 0;
            margin-top: 14px;
            border-top: 1px solid var(--border-light);
            border-right: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .notice-box h4 {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .notice-box p {
            font-size: 10.5px;
            color: var(--text-muted);
            line-height: 1.45;
        }

        /* Acordeón FAQ */
        .faq-item {
            border: 1px solid var(--border-light);
            background: #ffffff;
            border-radius: 4px;
            margin-bottom: 8px;
            overflow: hidden;
        }
        .faq-q {
            width: 100%;
            padding: 13px 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border: none;
            font-size: 12px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            color: var(--text-main);
        }
        .faq-a {
            padding: 0 14px 12px 14px;
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.45;
            display: none;
        }
        .faq-item.open .faq-a {
            display: block;
        }

        /* ----------------------------------
           STICKY BAR INFERIOR
           ---------------------------------- */
