/* --- SECTION: FONT FACES --- */
@font-face {
    font-family: 'BasierCircle';
    src: url('/css/fonts/BasierCircle-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BasierCircle';
    src: url('/css/fonts/BasierCircle-Medium.woff2') format('woff2');
    font-weight: 800; /* Maps Medium variant to 800 weight to force browser swap */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaStd';
    src: url('/css/fonts/FuturaStd-Bold.woff2') format('woff2');
    font-display: swap;
}

/* Updated to Bold variant */
@font-face {
    font-family: 'BasierCircle';
    src: url('/css/fonts/BasierCircle-Bold.woff2') format('woff2');
    font-weight: 700; /* Standard for Bold, but we will force it in the rule */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaStd';
    src: url('/css/fonts/FuturaStd-Bold.woff2') format('woff2');
    font-display: swap;
}

/* --- SECTION: CORE BLOG LAYOUT --- */
.blog-content {
    background-color: #F6F6F6;
    color: #222;
    font-family: 'BasierCircle', sans-serif;
    letter-spacing: 0.2px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    font-family: 'FuturaStd', sans-serif;
}

.blog-content h1 {
    letter-spacing: -0.5px;
}

/* --- SECTION: GLOBAL STRONG STYLE --- */
.blog-content strong {
    font-family: 'BasierCircle', sans-serif !important;
    font-weight: 700 !important; /* Force browser to link to the Bold.woff2 file */
    color: #1F423F;
    letter-spacing: 0.1px;
    -webkit-font-smoothing: antialiased;
}


/* --- SECTION: LISTS STYLING (PREMIUM CUSTOM BULLETS) --- */
.blog-content ul {
    padding-left: 0;
    margin: 32px 0;
    list-style: none;
}

.blog-content li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 28px;
    line-height: 26px;
    color: #2b2b2b;
    display: grid;
    grid-template-columns: auto;
}

.blog-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #d1fe17;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.blog-content li strong:first-child {
    display: block;
    margin-bottom: 6px;
    font-size: 18px; 
    line-height: 1.2;
}

/* --- SECTION: CONTAINERS AND BACKGROUNDS --- */
.blog-container {
    max-width: 720px;
    margin: 0 auto;
}

.blog-bg {
    background-color: #F6F6F6;
}

.blog header.glass {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #2D5855 !important;
}

/* --- SECTION: TYPOGRAPHY AND HEADINGS --- */
.blog-content p {
    font-size: 16px;
    line-height: 28px;
    color: #2b2b2b;
    margin: 12px 0;
}

.blog-content h1 {
    font-size: 32px;
    line-height: 1.2;
    color: #1F423F;
    margin-bottom: 20px;
}

.blog-content h2 {
    font-size: 22px;
    line-height: 30px;
    margin: 40px 0 14px;
    color: #1F423F;
    font-weight: 700;
}

.blog-content h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 30px 0 10px;
    color: #1F423F;
    font-weight: 600;
}

/* --- SECTION: INTRO AND LEAD TEXT --- */
.blog-intro {
    font-size: 18px;
    line-height: 30px;
    color: #2b2b2b;
    margin-bottom: 24px;
}

/* --- SECTION: IMAGES AND MEDIA --- */
.blog-content .product-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* --- SECTION: BREADCRUMBS --- */
.blog-breadcrumb {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

/* --- SECTION: FACTS AND HIGHLIGHTS --- */
.blog-facts {
    margin-top: 40px;
}

.blog-facts .fact {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #EEEEEE;
}

.blog-facts strong {
    display: block;
    margin-bottom: 6px;
    color: #1F423F;
}

/* --- SECTION: DATA TABLES --- */
.table-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 24px 0;
}

.table-container td,
.table-container th {
    padding: 14px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.table-container tr:first-child {
    background: #f6f6f6;
    font-weight: 700;
}

.table-container tr:nth-child(even) {
    background: #fafafa;
}

/* --- SECTION: LINKS AND ANCHORS --- */
.blog-content a:not(.btn-qenki) {
    color: #1F423F;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.blog-content a:not(.btn-qenki):hover {
    opacity: 0.7;
}

/* --- SECTION: CALL TO ACTION (CTA) --- */
.blog-cta {
    margin-top: 40px;
    text-align: center;
}

/* --- SECTION: HUB GRID AND INTERLINKING --- */
.hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
}

@media (min-width: 600px) {
    .hub-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hub-card {
    display: block;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: #1F423F;
    font-weight: 600;
    background: #ffffff;
    line-height: 24px;
    transition: all 0.2s ease;
}

.hub-card:hover {
    border-color: #d1fe17;
    background: #f9ffe0;
    transform: translateY(-2px);
}

.hub-cta-final {
    text-align: center;
    color: #1F423F;
}

/* --- SECTION: UI COMPONENTS AND BUTTONS --- */
.reg {
    font-size: 0.5em;
    vertical-align: super;
    position: relative;
    top: -0.15em;
}

.blog-hub {
    margin: 24px 0;
    padding: 16px;
    background: #eaf3f2;
    border-left: 4px solid #2D5855;
}

.btn-qenki {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d1fe17;
    color: #1F423F;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: 'FuturaStd', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 40px;
    margin-top: 20px;
    cursor: pointer;
}

.btn-qenki:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- SECTION: CONVERSION AND SAVINGS BANNERS --- */
.info-ahorro {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin: 40px 0;
}

.info-ahorro img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.nota-dosificacion-post {
    background: #F9FFE0;
    border-left: 4px solid #d1fe17;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 32px 0;
    font-size: 15px;
    line-height: 1.6;
}