/* =================================================================
   HERO
   ================================================================= */

.opogc-hero {
    position: relative;
    padding: var(--opogc-space-80) 0 var(--opogc-space-64);
    background-color: var(--opogc-white-off);
    overflow: hidden;
}

/* Grid sutil de fondo */
.opogc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(76, 175, 125, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 175, 125, 0.055) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Gradiente radial sobre el grid */
.opogc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 5% 10%, rgba(76, 175, 125, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 95% 5%, rgba(201, 168, 76, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 60%);
    pointer-events: none;
}

.opogc-hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--opogc-max-w), calc(100% - 3rem));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--opogc-space-64);
    align-items: center;
}

.opogc-hero-content {
    max-width: 560px;
}

.opogc-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--opogc-space-8);
    margin-bottom: var(--opogc-space-16);
    padding: 0.3rem 0.9rem;
    background: var(--opogc-green-soft);
    border: 1px solid var(--opogc-green-border);
    border-radius: var(--opogc-radius-pill);
    color: var(--opogc-green-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.entry-title,
.opogc-hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--opogc-text);
    margin-bottom: var(--opogc-space-16);
    letter-spacing: -0.02em;
}

.opogc-hero h1 em,
.opogc-hero__title em {
    font-style: normal;
    color: var(--opogc-green-pastel);
}

.opogc-hero__subtitle {
    font-size: 1.08rem;
    color: var(--opogc-text-soft);
    line-height: 1.65;
    margin-bottom: var(--opogc-space-32);
}

.opogc-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--opogc-space-12);
}

/* Visual del hero (columna derecha) */
.opogc-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opogc-mockup-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 17;
    background: var(--opogc-white);
    border: 2px solid var(--opogc-green-border);
    border-radius: 28px;
    box-shadow: var(--opogc-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--opogc-space-16);
    color: var(--opogc-text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: var(--opogc-space-32);
    position: relative;
    overflow: hidden;
}

.opogc-mockup-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--opogc-border);
    border-radius: 0 0 4px 4px;
}

.opogc-mockup-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    border-radius: 26px;
}

.opogc-mockup-placeholder-icon {
    width: 56px;
    height: 56px;
    background: var(--opogc-green-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opogc-mockup-placeholder-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--opogc-green-pastel);
    fill: none;
    stroke-width: 1.5;
}

/* =================================================================
   TRUST BAR
   ================================================================= */

.opogc-trust-bar {
    padding: var(--opogc-space-24) 0;
    border-top: 1px solid var(--opogc-border);
    border-bottom: 1px solid var(--opogc-border);
    background: var(--opogc-white);
}

.opogc-trust-bar-inner {
    width: min(var(--opogc-max-w), calc(100% - 3rem));
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--opogc-space-12);
    justify-content: center;
    align-items: center;
}

.opogc-trust-item {
    display: flex;
    align-items: center;
    gap: var(--opogc-space-8);
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--opogc-text-soft);
}

.opogc-trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--opogc-green-pastel);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
