/* =================================================================
   BOTONES
   ================================================================= */

.opogc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--opogc-space-8);
    border-radius: var(--opogc-radius-pill);
    text-decoration: none;
    font-family: var(--opogc-font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.65rem 1.4rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform var(--opogc-transition), box-shadow var(--opogc-transition), background var(--opogc-transition), border-color var(--opogc-transition);
    white-space: nowrap;
    line-height: 1.4;
}

.opogc-btn:hover,
.opogc-btn:focus {
    transform: translateY(-2px);
}

.opogc-btn:focus-visible {
    outline: 3px solid var(--opogc-green-border);
    outline-offset: 3px;
}

.opogc-btn:active {
    transform: translateY(0);
}

/* Primario — verde pastel */
.opogc-btn--primary {
    background: var(--opogc-green-pastel);
    color: #fff;
    border-color: var(--opogc-green-pastel);
    box-shadow: 0 4px 16px rgba(76, 175, 125, 0.28);
}

.opogc-btn--primary:hover,
.opogc-btn--primary:focus {
    background: var(--opogc-green-mid);
    border-color: var(--opogc-green-mid);
    box-shadow: 0 8px 24px rgba(76, 175, 125, 0.36);
    color: #fff;
}

/* Secundario — dorado pastel */
.opogc-btn--secondary {
    background: var(--opogc-gold-pastel);
    color: #fff;
    border-color: var(--opogc-gold-pastel);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.28);
}

.opogc-btn--secondary:hover,
.opogc-btn--secondary:focus {
    background: var(--opogc-gold-deep);
    border-color: var(--opogc-gold-deep);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.36);
    color: #fff;
}

/* Ghost — borde verde */
.opogc-btn--ghost {
    background: transparent;
    color: var(--opogc-green-pastel);
    border-color: var(--opogc-green-border);
}

.opogc-btn--ghost:hover,
.opogc-btn--ghost:focus {
    background: var(--opogc-green-soft);
    border-color: var(--opogc-green-pastel);
    color: var(--opogc-green-deep);
    box-shadow: none;
}

/* Ghost dorado */
.opogc-btn--ghost-gold {
    background: transparent;
    color: var(--opogc-gold-pastel);
    border-color: var(--opogc-gold-border);
}

.opogc-btn--ghost-gold:hover,
.opogc-btn--ghost-gold:focus {
    background: var(--opogc-gold-soft);
    border-color: var(--opogc-gold-pastel);
    color: var(--opogc-gold-deep);
    box-shadow: none;
}

/* Botón grande */
.opogc-btn--lg {
    font-size: 1.02rem;
    padding: 0.82rem 2rem;
}

/* =================================================================
   BADGES
   ================================================================= */

.opogc-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--opogc-space-4);
    background: var(--opogc-green-soft);
    color: var(--opogc-green-deep);
    border: 1px solid var(--opogc-green-border);
    border-radius: var(--opogc-radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.opogc-badge--gold {
    background: var(--opogc-gold-soft);
    color: var(--opogc-gold-deep);
    border-color: var(--opogc-gold-border);
}

/* =================================================================
   SECCIONES
   ================================================================= */

.opogc-section {
    padding: var(--opogc-space-80) 0;
}

.opogc-section--sm {
    padding: var(--opogc-space-48) 0;
}

.opogc-section--green {
    background: var(--opogc-green-soft);
}

.opogc-section--gold {
    background: var(--opogc-gold-soft);
}

.opogc-section--dark {
    background: var(--opogc-green-deep);
    color: #fff;
}

.opogc-section--dark h2,
.opogc-section--dark h3,
.opogc-section--dark p {
    color: #fff;
}

.opogc-section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--opogc-green-pastel);
    margin-bottom: var(--opogc-space-12);
}

.opogc-section__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: var(--opogc-space-16);
    color: var(--opogc-text);
}

.opogc-section__subtitle {
    font-size: 1.05rem;
    color: var(--opogc-text-soft);
    max-width: 600px;
    margin-bottom: var(--opogc-space-48);
    line-height: 1.65;
}

.opogc-section--centered {
    text-align: center;
}

.opogc-section--centered .opogc-section__subtitle {
    margin-inline: auto;
}
