/* =================================================================
   TESTIMONIOS
   ================================================================= */

.opogc-testimonial {
    background: var(--opogc-white);
    border: 1px solid var(--opogc-border);
    border-radius: var(--opogc-radius);
    padding: var(--opogc-space-32);
    box-shadow: var(--opogc-shadow-xs);
    display: flex;
    flex-direction: column;
    gap: var(--opogc-space-16);
}

.opogc-testimonial__quote {
    font-size: 0.97rem;
    color: var(--opogc-text-soft);
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}

.opogc-testimonial__quote::before {
    content: '\201C';
    color: var(--opogc-green-pastel);
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 4px;
}

.opogc-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--opogc-space-12);
}

.opogc-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--opogc-green-soft);
    border: 2px solid var(--opogc-green-border);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--opogc-green-deep);
    font-weight: 700;
    font-size: 1rem;
}

.opogc-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opogc-testimonial__name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--opogc-text);
}

.opogc-testimonial__role {
    font-size: 0.8rem;
    color: var(--opogc-text-muted);
}

.opogc-stars {
    color: var(--opogc-gold-pastel);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* =================================================================
   PRICING
   ================================================================= */

.opogc-pricing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--opogc-space-24);
    margin-top: var(--opogc-space-48);
    align-items: start;
}

.opogc-plan {
    background: var(--opogc-white);
    border: 1.5px solid var(--opogc-border);
    border-radius: var(--opogc-radius);
    padding: var(--opogc-space-32);
    display: flex;
    flex-direction: column;
    gap: var(--opogc-space-12);
    box-shadow: var(--opogc-shadow-xs);
    position: relative;
    transition: box-shadow var(--opogc-transition), transform var(--opogc-transition);
}

.opogc-plan:hover {
    box-shadow: var(--opogc-shadow-md);
    transform: translateY(-3px);
}

.opogc-plan--highlighted {
    border-color: var(--opogc-green-pastel);
    box-shadow: var(--opogc-shadow-sm), 0 0 0 3px rgba(76, 175, 125, 0.12);
    transform: translateY(-4px);
}

.opogc-plan--highlighted:hover {
    box-shadow: var(--opogc-shadow-lg), 0 0 0 3px rgba(76, 175, 125, 0.16);
    transform: translateY(-6px);
}

.opogc-plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--opogc-gold-pastel);
    color: #fff;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: var(--opogc-radius-pill);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.opogc-plan__name {
    font-family: var(--opogc-font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--opogc-text);
    margin: 0;
}

.opogc-plan__label {
    font-size: 0.87rem;
    color: var(--opogc-text-soft);
    margin: 0;
}

.opogc-plan__price {
    font-family: var(--opogc-font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--opogc-green-deep);
    margin: var(--opogc-space-8) 0;
    line-height: 1;
}

.opogc-plan__price-note {
    font-size: 0.8rem;
    color: var(--opogc-text-muted);
    margin-top: 2px;
}

.opogc-plan__divider {
    border: none;
    border-top: 1px solid var(--opogc-border);
    margin: var(--opogc-space-4) 0;
}

.opogc-plan__features {
    list-style: none;
    display: grid;
    gap: var(--opogc-space-10, 0.625rem);
    flex: 1;
}

.opogc-plan__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--opogc-space-10, 0.625rem);
    font-size: 0.9rem;
    color: var(--opogc-text-soft);
    line-height: 1.5;
}

.opogc-plan__features li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--opogc-green-soft);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D8B5A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

.opogc-plan .opogc-btn {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}
