/* Pages V2 — CSS compartilhado para paginas internas */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
    --pv2-green-dark: #00573D;
    --pv2-green-light: #91C14D;
    --pv2-text-dark: #1A1A1A;
    --pv2-text-secondary: #666666;
    --pv2-bg-light: #F5F5F5;
    --pv2-font: 'Montserrat', sans-serif;
    --pv2-padding-x: 80px;
    --pv2-max-content: 1200px;
}

/* Hero compacto para paginas internas */
.pv2-hero {
    padding: 48px var(--pv2-padding-x) 40px;
}
.pv2-hero--green {
    background: var(--pv2-green-dark);
}
.pv2-hero__inner {
    max-width: var(--pv2-max-content);
    margin: 0 auto;
}
.pv2-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.pv2-hero__breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.pv2-hero__breadcrumb a:hover {
    color: #fff;
}
.pv2-hero__breadcrumb i {
    font-size: 8px;
}
.pv2-hero__title {
    font-family: var(--pv2-font);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.pv2-hero__title i {
    opacity: 0.4;
    margin-right: 8px;
}
.pv2-hero__subtitle {
    font-family: var(--pv2-font);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Content section — 2 columns */
.pv2-content {
    padding: 60px var(--pv2-padding-x);
}
.pv2-content__grid {
    max-width: var(--pv2-max-content);
    margin: 0 auto;
    display: flex;
    gap: 60px;
}
.pv2-content__main {
    flex: 1;
    font-family: var(--pv2-font);
    font-size: 15px;
    line-height: 1.8;
    color: var(--pv2-text-dark);
}
.pv2-content__main p {
    margin: 0 0 16px;
}
.pv2-content__sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Sidebar card */
.pv2-sidebar-card {
    background: var(--pv2-bg-light);
    border-radius: 12px;
    padding: 32px;
    position: sticky;
    top: 110px;
}
.pv2-sidebar-card h3 {
    font-family: var(--pv2-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pv2-sidebar-card h3 i {
    color: var(--pv2-green-dark);
    opacity: 0.6;
}
.pv2-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.pv2-sidebar-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pv2-sidebar-card ul li:last-child {
    border-bottom: none;
}
.pv2-sidebar-card ul li i {
    color: var(--pv2-green-dark);
    font-size: 14px;
}
.pv2-sidebar-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    background: var(--pv2-green-dark);
    color: #fff !important;
    font-family: var(--pv2-font);
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,87,61,0.2);
}
.pv2-sidebar-card__btn:hover {
    background: #004530;
    color: #fff !important;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0,87,61,0.3);
    color: #fff;
}

/* FAQ Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item[open] {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: var(--pv2-green-dark);
}
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--pv2-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--pv2-text-dark);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question i {
    font-size: 12px;
    color: var(--pv2-green-dark);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item[open] .faq-item__question i {
    transform: rotate(180deg);
}
.faq-item[open] .faq-item__question {
    color: var(--pv2-green-dark);
}
.faq-item__answer {
    padding: 0 24px 24px;
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-secondary);
    line-height: 1.7;
}
.faq-item__answer a {
    color: var(--pv2-green-dark);
    font-weight: 600;
}

/* FAQ Alert */
.faq-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #FF9800;
}
.faq-alert__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF3E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF9800;
    font-size: 18px;
    flex-shrink: 0;
}
.faq-alert__title {
    font-family: var(--pv2-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 4px;
}
.faq-alert__text {
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-secondary);
    margin: 0;
    line-height: 1.6;
}
.faq-alert__text a {
    color: var(--pv2-green-dark);
}

/* MVV Cards (Missao, Visao, Proposito, Valores) */
.mvv-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 40px 36px;
}
.mvv-card--highlight {
    background: var(--pv2-green-dark);
    border-color: transparent;
    text-align: center;
}
.mvv-card--highlight .mvv-card__title {
    color: #fff;
}
.mvv-card--highlight .mvv-card__text {
    color: rgba(255,255,255,0.8);
    margin: 0 auto;
}
.mvv-card--highlight .mvv-card__icon {
    background: rgba(255,255,255,0.1);
    color: var(--pv2-green-light);
}
.mvv-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F0F7F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pv2-green-dark);
    margin-bottom: 16px;
}
.mvv-card__title {
    font-family: var(--pv2-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 12px;
}
.mvv-card__text {
    font-family: var(--pv2-font);
    font-size: 15px;
    color: var(--pv2-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Valores grid */
.mvv-valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mvv-valor {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 28px 24px;
    transition: box-shadow 0.2s;
}
.mvv-valor:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.mvv-valor__num {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 800;
    color: var(--pv2-green-dark);
    opacity: 0.2;
    margin-bottom: 8px;
}
.mvv-valor__title {
    font-family: var(--pv2-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 8px;
}
.mvv-valor__text {
    font-family: var(--pv2-font);
    font-size: 13px;
    color: var(--pv2-text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .mvv-valores-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .mvv-valores-grid { grid-template-columns: 1fr; }
}

/* Presidentes Academia cards */
.pres-acad-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}
.pres-acad-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.pres-acad-card__photo {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}
.pres-acad-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pres-acad-card__info {
    flex: 1;
}
.pres-acad-card__periodo {
    display: inline-block;
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--pv2-green-dark);
    background: #F0F7F4;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.pres-acad-card__nome {
    font-family: var(--pv2-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 10px;
}
.pres-acad-card__desc {
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-secondary);
    line-height: 1.7;
}
.pres-acad-card__desc p { margin: 0 0 8px; }
@media (max-width: 575px) {
    .pres-acad-card { flex-direction: column; }
    .pres-acad-card__photo { width: 100px; height: 100px; }
}

/* Generic section */
.pv2-section {
    padding: 60px var(--pv2-padding-x);
}
.pv2-section--light {
    background: var(--pv2-bg-light);
}
.pv2-section__inner {
    max-width: var(--pv2-max-content);
    margin: 0 auto;
}
.pv2-section__title {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 32px;
    text-align: center;
}

/* PDF container */
.pv2-pdf {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pv2-pdf canvas {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* CTA bar */
.pv2-cta-bar {
    background: var(--pv2-green-dark);
    padding: 40px var(--pv2-padding-x);
}
.pv2-cta-bar__inner {
    max-width: var(--pv2-max-content);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.pv2-cta-bar__text h3 {
    font-family: var(--pv2-font);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.pv2-cta-bar__text p {
    font-family: var(--pv2-font);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.pv2-cta-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: var(--pv2-green-dark);
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}
.pv2-cta-bar__btn:hover {
    background: var(--pv2-green-light);
    color: #fff;
}

/* Form section */
.pv2-form-section {
    padding: 60px var(--pv2-padding-x);
    background: var(--pv2-bg-light);
}
.pv2-form-section__inner {
    max-width: 860px;
    margin: 0 auto;
}

/* Form card */
.pv2-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pv2-form-card__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pv2-form-card__header > i {
    font-size: 28px;
    color: var(--pv2-green-dark);
    opacity: 0.6;
    margin-top: 2px;
}
.pv2-form-card__header h2 {
    font-family: var(--pv2-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 6px;
}
.pv2-form-card__header p {
    font-family: var(--pv2-font);
    font-size: 13px;
    color: var(--pv2-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Form layout */
.pv2-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.pv2-form__field {
    flex: 1;
}
.pv2-form__field--full {
    flex: 1 1 100%;
}
.pv2-form__field label {
    display: block;
    font-family: var(--pv2-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--pv2-text-dark);
    margin-bottom: 6px;
}
.pv2-form__field label span {
    color: #e53e3e;
}
.pv2-input, .pv2-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-dark);
    background: var(--pv2-bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.pv2-input:focus, .pv2-textarea:focus {
    outline: none;
    border-color: var(--pv2-green-dark);
    box-shadow: 0 0 0 3px rgba(0,87,61,0.1);
}
.pv2-textarea {
    resize: vertical;
    min-height: 120px;
}
select.pv2-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Checkbox */
.pv2-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--pv2-font);
    font-size: 13px;
    color: var(--pv2-text-secondary);
    cursor: pointer;
}
.pv2-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--pv2-green-dark);
    flex-shrink: 0;
}
.pv2-checkbox a {
    color: var(--pv2-green-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* Submit button */
.pv2-form__actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.pv2-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 96px;
    background: var(--pv2-green-dark);
    color: #fff !important;
    font-family: var(--pv2-font);
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.pv2-form__submit:hover {
    background: #004530;
}

/* Regional cards */
.pv2-regional-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s;
}
.pv2-regional-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pv2-regional-card__title {
    font-family: var(--pv2-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--pv2-green-dark);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pv2-green-light);
}
.pv2-regional-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}
.pv2-regional-card__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
}
.pv2-regional-card__item > i {
    color: var(--pv2-green-dark);
    font-size: 14px;
    margin-top: 3px;
    opacity: 0.6;
}
.pv2-regional-card__label {
    display: block;
    font-family: var(--pv2-font);
    font-size: 11px;
    font-weight: 600;
    color: var(--pv2-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pv2-regional-card__value {
    display: block;
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-dark);
    line-height: 1.4;
}
.pv2-regional-card__value a {
    color: var(--pv2-green-dark);
}
.pv2-regional-card__value a:hover {
    text-decoration: underline;
}

/* Empty state */
.pv2-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}
.pv2-empty p {
    font-family: var(--pv2-font);
    font-size: 16px;
    color: var(--pv2-text-secondary);
}

/* Sidebar links */
.pv2-sidebar-card ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pv2-text-dark);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.pv2-sidebar-card ul li a:hover {
    color: var(--pv2-green-dark);
}
.pv2-sidebar-card ul li a i {
    font-size: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    :root {
        --pv2-padding-x: 24px;
    }
    .pv2-content__grid {
        flex-direction: column;
    }
    .pv2-content__sidebar {
        width: 100%;
    }
    .pv2-sidebar-card {
        position: static;
    }
    .pv2-hero__title {
        font-size: 28px;
    }
    .pv2-cta-bar__inner {
        flex-direction: column;
        text-align: center;
    }
    .pv2-regional-card__grid {
        grid-template-columns: 1fr;
    }
    .pv2-form-card {
        padding: 24px;
    }
    .pv2-form__row {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================================
   CONTATO / FALE COM A AMP
   ============================================================ */
.ct-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ct-info-card__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ct-info-card__item:last-child {
    border-bottom: none;
}
.ct-info-card__ico {
    font-size: 20px;
    color: var(--pv2-green-dark);
    opacity: 0.7;
    width: 24px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.ct-info-card__item h4 {
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0 0 4px;
}
.ct-info-card__item p {
    font-family: var(--pv2-font);
    font-size: 13px;
    color: var(--pv2-text-secondary);
    margin: 0;
    line-height: 1.6;
}
.ct-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}
.ct-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pv2-green-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
}
.ct-social a:hover {
    background: #004530;
    opacity: 1;
}
.ct-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}
.ct-alert--ok {
    background: rgba(145,193,77,0.12);
    color: #2d6b0e;
}
.ct-alert--err {
    background: rgba(229,62,62,0.1);
    color: #c53030;
}
.ct-map {
    width: 100%;
    line-height: 0;
}
.ct-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ============================================================
   AGENDA DE EVENTOS
   ============================================================ */

/* Evento em Destaque */
.ag-destaque {
    padding: 60px var(--pv2-padding-x);
    max-width: calc(var(--pv2-max-content) + var(--pv2-padding-x) * 2);
    margin: 0 auto;
}
.ag-destaque__label {
    display: block;
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-dark);
    margin-bottom: 24px;
}
.ag-destaque__card {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.ag-destaque__img {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}
.ag-destaque__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ag-destaque__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--pv2-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255,255,255,0.15);
}
.ag-destaque__info {
    flex: 1;
    background: var(--pv2-bg-light);
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.ag-destaque__date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pv2-green-dark);
}
.ag-destaque__title {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0;
    line-height: 1.3;
}
.ag-destaque__local {
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ag-destaque__local i {
    color: var(--pv2-green-dark);
    opacity: 0.6;
}
.ag-destaque__desc {
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-secondary);
    line-height: 1.6;
}
.ag-destaque__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--pv2-green-dark);
    color: #fff !important;
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    width: fit-content;
    transition: background 0.2s;
}
.ag-destaque__btn:hover {
    background: #004530;
    opacity: 1;
}

/* Calendario */
.ag-calendario {
    background: var(--pv2-bg-light);
    padding: 60px var(--pv2-padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.ag-calendario__header {
    width: 100%;
    max-width: var(--pv2-max-content);
}
.ag-calendario__title {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0;
}
.ag-calendario__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.ag-calendario__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pv2-text-secondary);
    border: 1px solid #ddd;
    transition: all 0.2s;
}
.ag-calendario__arrow:hover {
    border-color: var(--pv2-green-dark);
    color: var(--pv2-green-dark);
    opacity: 1;
}
.ag-calendario__month {
    font-family: var(--pv2-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--pv2-text-dark);
    min-width: 180px;
    text-align: center;
}

/* Calendar grid */
.ag-cal-grid {
    width: 100%;
    max-width: var(--pv2-max-content);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
    background: #fff;
}
.ag-cal-grid__head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--pv2-green-dark);
    border-radius: 12px 12px 0 0;
}
.ag-cal-grid__head span {
    padding: 14px;
    text-align: center;
    font-family: var(--pv2-font);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.ag-cal-grid__body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.ag-cal-cell {
    min-height: 80px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.ag-cal-cell--empty {
    background: #fafafa;
}
.ag-cal-cell__num {
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--pv2-text-dark);
}
.ag-cal-cell--today {
    background: rgba(0,87,61,0.06);
}
.ag-cal-cell--today .ag-cal-cell__num {
    background: var(--pv2-green-dark);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.ag-cal-cell--event {
    cursor: pointer;
}
.ag-cal-cell__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pv2-green-dark);
}

/* Calendar legend */
.ag-calendario__legend {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    width: 100%;
    max-width: var(--pv2-max-content);
}
.ag-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--pv2-font);
    font-size: 12px;
    color: var(--pv2-text-secondary);
}
.ag-legend__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.ag-legend__dot--today {
    background: rgba(0,87,61,0.3);
}
.ag-legend__dot--event {
    background: var(--pv2-green-dark);
}

/* Proximos Eventos */
.ag-proximos {
    padding: 60px var(--pv2-padding-x);
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ag-proximos__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--pv2-max-content);
    width: 100%;
    margin: 0 auto;
}
.ag-proximos__title {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0;
}
.ag-proximos__filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ag-filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--pv2-font);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--pv2-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}
.ag-filter-btn:hover {
    border-color: var(--pv2-green-dark);
    color: var(--pv2-green-dark);
}
.ag-filter-btn--active {
    background: var(--pv2-green-dark);
    color: #fff;
    border-color: var(--pv2-green-dark);
}
.ag-proximos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--pv2-max-content);
    width: 100%;
    margin: 0 auto;
}
.ag-proximos__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-family: var(--pv2-font);
    font-size: 15px;
    color: var(--pv2-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.ag-proximos__more {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* Event Card */
.ag-event-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E8E8E8;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ag-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ag-event-card__img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.ag-event-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ag-event-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pv2-green-dark) 0%, #003D2B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.15);
}
.ag-event-card__date-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pv2-green-dark);
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ag-event-card__day {
    font-family: var(--pv2-font);
    font-size: 22px;
    font-weight: 700;
}
.ag-event-card__month {
    font-family: var(--pv2-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ag-event-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ag-event-card__title {
    font-family: var(--pv2-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--pv2-text-dark);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ag-event-card__local,
.ag-event-card__time {
    font-family: var(--pv2-font);
    font-size: 13px;
    color: var(--pv2-text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ag-event-card__local i,
.ag-event-card__time i {
    color: var(--pv2-green-dark);
    opacity: 0.5;
    width: 14px;
}

/* CTA Newsletter */
.ag-cta {
    background: var(--pv2-green-dark);
    padding: 60px var(--pv2-padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.ag-cta__icon {
    font-size: 40px;
    color: var(--pv2-green-light);
}
.ag-cta__title {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.ag-cta__desc {
    font-family: var(--pv2-font);
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    line-height: 1.6;
    margin: 0;
}
.ag-cta__form {
    display: flex;
    border-radius: 8px;
}
.ag-cta__input {
    flex: 1;
    min-width: 300px;
    padding: 18px 24px;
    font-family: var(--pv2-font);
    font-size: 15px;
    border: none;
    outline: none;
    border-radius: 8px 0 0 8px;
    box-sizing: border-box;
}
.ag-cta__btn {
    padding: 18px 60px !important;
    background: var(--pv2-green-light) !important;
    color: #fff !important;
    font-family: var(--pv2-font) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    display: block !important;
    text-align: center !important;
    border-radius: 0 8px 8px 0 !important;
    transition: background 0.2s;
    white-space: nowrap !important;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden !important;
    line-height: 1.2 !important;
}
.ag-cta__btn:hover {
    background: #7fb939;
}
.ag-cta__recaptcha {
    margin-top: 8px;
}
.ag-cta__msg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 500;
}
.ag-cta__msg--ok {
    background: rgba(145,193,77,0.2);
    color: var(--pv2-green-light);
}
.ag-cta__msg--err {
    background: rgba(229,62,62,0.15);
    color: #ff6b6b;
}

/* Agenda Responsive */
@media (max-width: 991px) {
    .ag-destaque__card {
        flex-direction: column;
        height: auto;
    }
    .ag-destaque__img {
        width: 100%;
        height: 240px;
    }
    .ag-destaque__info {
        padding: 30px 24px;
    }
    .ag-proximos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ag-proximos__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .ag-cal-cell {
        min-height: 60px;
        padding: 6px;
    }
    .ag-cta__input {
        width: 240px;
    }
    .ct-info-card { margin-bottom: 24px; }
}
@media (max-width: 575px) {
    .ag-proximos__grid {
        grid-template-columns: 1fr;
    }
    .ag-cta__form {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
    }
    .ag-cta__input {
        width: 100%;
        border-radius: 8px 8px 0 0;
    }
    .ag-cta__btn {
        border-radius: 0 0 8px 8px;
        justify-content: center;
    }
}

/* ============================================================
   INSTITUCIONAL — POR DENTRO DA AMP
   ============================================================ */

/* Hero */
.inst-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: url('../images/hero-institucional.jpg') center center / cover no-repeat;
}
.inst-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,87,61,0.93) 0%, rgba(0,61,43,0.67) 100%);
}
.inst-hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--pv2-padding-x) 60px;
    max-width: var(--pv2-max-content);
}
.inst-hero__title {
    font-family: var(--pv2-font);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.inst-hero__tag {
    font-family: var(--pv2-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.inst-hero__subtitle {
    font-family: var(--pv2-font);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}
.inst-hero__numbers {
    display: flex;
    gap: 48px;
    margin-top: 16px;
}
.inst-hero__num {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.inst-hero__num-val {
    font-family: var(--pv2-font);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}
.inst-hero__num-label {
    font-family: var(--pv2-font);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Quick Nav */
.inst-qnav {
    border-bottom: 1px solid #E8E8E8;
}
.inst-qnav__row {
    display: flex;
    width: 100%;
}
.inst-qnav__row--alt {
    background: #FAFAFA;
}
.inst-qnav__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 16px;
    font-family: var(--pv2-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--pv2-text-dark);
    border-left: 1px solid #E8E8E8;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
}
.inst-qnav__item:first-child {
    border-left: none;
}
.inst-qnav__item i:first-child {
    color: var(--pv2-green-dark);
    opacity: 0.5;
    font-size: 16px;
}
.inst-qnav__item:hover {
    background: rgba(0,87,61,0.06);
    color: var(--pv2-green-dark);
    opacity: 1;
}
.inst-qnav__item--active {
    background: var(--pv2-green-dark);
    color: #fff !important;
}
.inst-qnav__item--active i:first-child {
    color: #fff;
    opacity: 0.8;
}

/* History */
.inst-history {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px var(--pv2-padding-x);
    max-width: calc(var(--pv2-max-content) + var(--pv2-padding-x) * 2);
}
.inst-history__left {
    width: 560px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.inst-history__label {
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inst-history__title {
    font-family: var(--pv2-font);
    font-size: 36px;
    font-weight: 800;
    color: var(--pv2-text-dark);
    line-height: 1.2;
    margin: 0;
}
.inst-history__text {
    font-family: var(--pv2-font);
    font-size: 15px;
    color: var(--pv2-text-secondary);
    line-height: 1.7;
    margin: 0;
}
.inst-history__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--pv2-green-dark);
    color: var(--pv2-green-dark) !important;
    font-family: var(--pv2-font);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.2s;
}
.inst-history__cta:hover {
    background: var(--pv2-green-dark);
    color: #fff !important;
    opacity: 1;
}
.inst-history__right {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
}
.inst-history__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inst-history__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--pv2-green-dark);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.inst-history__badge-num {
    font-family: var(--pv2-font);
    font-size: 16px;
    font-weight: 700;
}
.inst-history__badge-txt {
    font-family: var(--pv2-font);
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
    text-align: center;
}

/* Timeline */
.inst-timeline {
    background: var(--pv2-green-dark);
    padding: 72px var(--pv2-padding-x);
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.inst-timeline__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.inst-timeline__label {
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inst-timeline__title {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.inst-timeline__track {
    position: relative;
}
.inst-timeline__line {
    height: 2px;
    background: rgba(255,255,255,0.15);
    width: 100%;
}
.inst-timeline__nodes {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
}
.inst-timeline__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}
.inst-timeline__node::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pv2-green-light);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.inst-timeline__year {
    font-family: var(--pv2-font);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.inst-timeline__desc {
    font-family: var(--pv2-font);
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    max-width: 140px;
}

/* MVV */
.inst-mvv {
    background: var(--pv2-bg-light);
    padding: 80px var(--pv2-padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.inst-mvv__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.inst-mvv__label {
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inst-mvv__title {
    font-family: var(--pv2-font);
    font-size: 36px;
    font-weight: 800;
    color: var(--pv2-text-dark);
    margin: 0;
}
.inst-mvv__subtitle {
    font-family: var(--pv2-font);
    font-size: 16px;
    color: var(--pv2-text-secondary);
    margin: 0;
}
.inst-mvv__cards {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: var(--pv2-max-content);
}
.inst-mvv__card {
    flex: 1;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.inst-mvv__card--green {
    background: var(--pv2-green-dark);
    border-color: transparent;
}
.inst-mvv__card.inst-mvv__card--green h3,
.inst-mvv__card.inst-mvv__card--green p {
    color: #fff;
}
.inst-mvv__card.inst-mvv__card--green p {
    opacity: 0.85;
}
.inst-mvv__card.inst-mvv__card--green .inst-mvv__card-ico {
    color: #fff;
    opacity: 0.9;
}
.inst-mvv__card-ico {
    font-size: 28px;
    color: var(--pv2-green-dark);
    opacity: 0.6;
}
.inst-mvv__card h3 {
    font-family: var(--pv2-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0;
}
.inst-mvv__card p {
    font-family: var(--pv2-font);
    font-size: 14px;
    color: var(--pv2-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Video */
.inst-video {
    background: var(--pv2-text-dark);
    padding: 72px var(--pv2-padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.inst-video__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 800px;
}
.inst-video__label {
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inst-video__title {
    font-family: var(--pv2-font);
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.inst-video__desc {
    font-family: var(--pv2-font);
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}
.inst-video__player {
    width: 100%;
    max-width: var(--pv2-max-content);
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.inst-video__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inst-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}
.inst-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    padding-left: 6px;
}
.inst-video__play:hover {
    background: rgba(255,255,255,0.35);
    transform: translate(-50%, -50%) scale(1.1);
}
.inst-video__book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid var(--pv2-green-light);
    color: #fff !important;
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 8px;
    transition: all 0.2s;
}
.inst-video__book:hover {
    background: var(--pv2-green-light);
    opacity: 1;
}

/* Diretoria */
.inst-diretoria {
    background: var(--pv2-bg-light);
    padding: 80px var(--pv2-padding-x);
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}
.inst-diretoria__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.inst-diretoria__label {
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inst-diretoria__title {
    font-family: var(--pv2-font);
    font-size: 36px;
    font-weight: 800;
    color: var(--pv2-text-dark);
    margin: 0;
}
.inst-diretoria__subtitle {
    font-family: var(--pv2-font);
    font-size: 15px;
    color: var(--pv2-text-secondary);
    margin: 0;
}
.inst-diretoria__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    max-width: var(--pv2-max-content);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E8E8E8;
}
.inst-diretoria__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}
.inst-diretoria__item:nth-child(2n) {
    border-right: none;
}
.inst-diretoria__cargo {
    font-family: var(--pv2-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--pv2-green-dark);
}
.inst-diretoria__nome {
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--pv2-text-dark);
}
.inst-diretoria__cta {
    text-align: center;
}

/* Presidentes */
.inst-presidentes {
    background: var(--pv2-bg-light);
    padding: 0 var(--pv2-padding-x) 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.inst-presidentes__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--pv2-max-content);
    width: 100%;
    margin: 0 auto;
}
.inst-presidentes__label {
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.inst-presidentes__title {
    font-family: var(--pv2-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0;
}
.inst-presidentes__arrows {
    display: flex;
    gap: 8px;
}
.inst-presidentes__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--pv2-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}
.inst-presidentes__arrow--next {
    background: var(--pv2-green-dark);
    color: #fff;
    border-color: var(--pv2-green-dark);
}
.inst-presidentes__arrow:hover {
    opacity: 0.8;
}
.inst-presidentes__cta {
    text-align: center;
}

/* President Card */
.inst-pres-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    min-height: 240px;
}
.inst-pres-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pv2-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pv2-green-dark);
    opacity: 0.4;
}
.inst-pres-card__nome {
    font-family: var(--pv2-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--pv2-text-dark);
    margin: 0;
}
.inst-pres-card__periodo {
    font-family: var(--pv2-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--pv2-green-dark);
}
.inst-pres-card__desc {
    font-family: var(--pv2-font);
    font-size: 13px;
    color: var(--pv2-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* CTA */
.inst-cta {
    position: relative;
    height: 360px;
    overflow: hidden;
}
.inst-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inst-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,87,61,0.87) 0%, rgba(0,48,32,0.93) 100%);
}
.inst-cta__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 0 var(--pv2-padding-x);
}
.inst-cta__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--pv2-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pv2-green-light);
}
.inst-cta__title {
    font-family: var(--pv2-font);
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.15;
}
.inst-cta__desc {
    font-family: var(--pv2-font);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.inst-cta__btns {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.inst-cta__btn-primary {
    padding: 14px 36px;
    background: var(--pv2-green-light);
    color: #fff !important;
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s;
}
.inst-cta__btn-primary:hover {
    background: #7fb939;
    opacity: 1;
}
.inst-cta__btn-outline {
    padding: 14px 36px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff !important;
    font-family: var(--pv2-font);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}
.inst-cta__btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    opacity: 1;
}

/* Institucional Responsive */
@media (max-width: 991px) {
    .inst-hero { height: 320px; }
    .inst-hero__title { font-size: 32px; }
    .inst-qnav__row { flex-wrap: wrap; }
    .inst-qnav__item { flex: 0 0 33.33%; }
    .inst-history {
        flex-direction: column;
        gap: 40px;
        padding: 60px 24px;
    }
    .inst-history__left { width: 100%; }
    .inst-history__right { height: 300px; }
    .inst-history__title { font-size: 28px; }
    .inst-timeline__nodes { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .inst-timeline__node::before { display: none; }
    .inst-timeline__line { display: none; }
    .inst-mvv__cards { flex-direction: column; }
    .inst-mvv__title { font-size: 28px; }
    .inst-video__player { height: 300px; }
    .inst-video__title { font-size: 26px; }
    .inst-diretoria__grid { grid-template-columns: 1fr; }
    .inst-diretoria__item { border-right: none; }
    .inst-cta__title { font-size: 28px; }
    .inst-cta__btns { flex-direction: column; }
}
@media (max-width: 575px) {
    .inst-hero { height: 280px; }
    .inst-hero__title { font-size: 26px; }
    .inst-qnav__item { flex: 0 0 50%; font-size: 12px; padding: 16px 12px; }
    .inst-video__play { width: 70px; height: 70px; font-size: 22px; }
}
