/* =================================================================
   COMPONENTES ADICIONALES — v2 supplement
   ================================================================= */

/* Hamburger spans */
.opogc-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: opacity 0.2s, transform 0.2s;
}

/* Header actions (botón CTA + hamburger) */
.opogc-header-actions {
    display: flex;
    align-items: center;
    gap: var(--opogc-space-12);
    flex-shrink: 0;
}

/* Hero compacto para páginas internas */
.opogc-hero--compact {
    padding: var(--opogc-space-48) 0 var(--opogc-space-32);
}

.opogc-hero-inner--center {
    text-align: center;
    justify-content: center;
}

.opogc-hero-inner--center .opogc-hero__cta {
    justify-content: center;
}

/* Footer brand clases */
.opogc-footer-brand__name {
    font-family: var(--opogc-font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
}

.opogc-footer-brand__tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    margin: var(--opogc-space-8) 0 0;
}

.opogc-footer-brand__legal {
    font-size: 0.82rem;
    margin: var(--opogc-space-8) 0 0;
}

.opogc-footer-brand__legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--opogc-transition);
}

.opogc-footer-brand__legal a:hover {
    color: var(--opogc-green-pastel);
}

/* Footer app col */
.opogc-footer-app {
    display: flex;
    flex-direction: column;
    gap: var(--opogc-space-8);
}

.opogc-footer-app__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 var(--opogc-space-8);
}

/* Footer nav */
.opogc-footer-nav nav,
.opogc-footer__menu {
    display: flex;
    flex-direction: column;
    gap: var(--opogc-space-4);
}

/* Module text section */
.opogc-module__text h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.opogc-module__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section centered variant */
.opogc-section--centered {
    text-align: center;
}

/* sr-only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Blog card clases adicionales */
.opogc-blog-card__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--opogc-radius) var(--opogc-radius) 0 0;
}

.opogc-blog-card__body {
    padding: var(--opogc-space-24);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--opogc-space-8);
}

.opogc-blog-card__cat {
    font-size: 0.75rem;
    margin-bottom: var(--opogc-space-4);
}

.opogc-blog-card__title a {
    text-decoration: none;
    color: var(--opogc-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    transition: color var(--opogc-transition);
}

.opogc-blog-card__title a:hover {
    color: var(--opogc-green-deep);
}

.opogc-blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--opogc-text-soft);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.opogc-blog-card__meta {
    font-size: 0.78rem;
    color: var(--opogc-text-muted);
}

.opogc-blog-card__link {
    margin-top: var(--opogc-space-8);
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
}

/* Card--link variant (categorías blog) */
.opogc-card--link {
    text-decoration: none;
    cursor: pointer;
    transition: border-color var(--opogc-transition), box-shadow var(--opogc-transition);
}

.opogc-card--link:hover {
    border-color: var(--opogc-green-border);
    box-shadow: var(--opogc-shadow-sm);
}

.opogc-card__cat-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--opogc-text);
    margin: 0;
}

.opogc-card__cat-count {
    font-size: 0.82rem;
    color: var(--opogc-text-muted);
    margin: var(--opogc-space-4) 0 0;
}
