* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #eef3ff;
    --white: #ffffff;
    --blue-900: #123d94;
    --blue-800: #1d56b3;
    --blue-700: #2f69c9;
    --yellow: #f5c94a;
    --yellow-soft: #fff1c7;
    --green: #20b26b;
    --green-dark: #168c53;
    --text: #16304d;
    --muted: #66819f;
    --border: #d8e3f3;
    --shadow: 0 14px 40px rgba(17, 55, 120, 0.10);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;

    --educacao-main: #1D56B3;
    --educacao-bg: #EAF1FF;

    --seguranca-main: #1F3A6D;
    --seguranca-bg: #E7ECF6;

    --transparencia-main: #1F3A6D;
    --transparencia-bg: #E7ECF6;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    
    background:
        radial-gradient(circle at top left, #f7faff 0%, #eef3ff 38%, #e5edff 100%);
    
    color: var(--text);

    padding: 0 0 30px;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.page-shell {
    width: min(1180px, calc(100% - 64px));
    margin: 26px auto 42px;
}

.site-header {
    background: 
        linear-gradient(180deg, #214a9f 0%, #1b4495 55%, #173c84 100%);
    border-radius: 30px 30px 0 0;
    padding: 0;
    box-shadow: var(--shadow);
    margin-bottom: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
    min-height: 156px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 18px;
    padding: 0 22px;
    position: relative;
}

.header-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.14);
}

.party-box {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.party-logo-area {
    width: 620px;
    height: 138px;
    border-radius: 18px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: visible;
    flex-shrink: 0;
}

.party-logo-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transform: scale(2.15);
    transform-origin: left center;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.top-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    flex-wrap: nowrap;
}

.top-menu-link {
    min-height: 38px;
    min-width: 140px; /* 👈 NOVO: padroniza largura */
    
    padding: 0 14px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #eef4ff;
    font-size: 0.95rem;
    font-weight: 700;

    white-space: nowrap;
    text-align: center;

    transition: 0.2s ease;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.top-menu-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.candidate-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card,
.card-section,
.quick-actions-bar,
.site-footer {
    background: var(--white);
    border: 1px solid rgba(216, 227, 243, 0.9);
    box-shadow: var(--shadow);
}

.hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 0 0 30px 30px;
    padding: 18px;
    margin-top: 0;
    overflow: visible;
}

.hero-main-panel {
    position: relative;
    min-height: 480px;
    border-radius: 26px;
    overflow: visible;
    background:
        linear-gradient(100deg, rgba(19, 58, 121, 0.94) 0%, rgba(26, 70, 143, 0.88) 42%, rgba(39, 88, 165, 0.54) 100%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.08), transparent 42%);
}

.hero-main-inner {
    position: relative;
    min-height: 480px;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: end;
    overflow: hidden;
    border-radius: 26px;
}

.hero-main-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 52, 112, 0.88) 0%, rgba(18, 52, 112, 0.70) 28%, rgba(18, 52, 112, 0.18) 55%, rgba(18, 52, 112, 0.00) 100%);
    z-index: 1;
}

.hero-text-block {
    position: relative;
    z-index: 3;
    padding: 34px 26px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
}

.hero-mobile-nav {
    display: none;
}

.hero-single-line-name {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 0.95;
    margin-bottom: 16px;
    flex-wrap: nowrap;
}

.hero-single-line-name .hero-name-white,
.hero-single-line-name .hero-name-yellow {
    font-size: clamp(2.9rem, 5vw, 4.3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
}

.hero-name-white {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero-name-yellow {
    color: #f3c84f;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-role {
    color: #eaf1ff;
    font-size: 1.12rem;
    font-weight: 800;
}

.hero-dot {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.hero-number {
    color: #f5c94a;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-whatsapp-btn {
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #25c875 0%, #18aa60 100%);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(22, 140, 83, 0.26);
}

.hero-whatsapp-btn i {
    width: 18px;
    height: 18px;
}

.hero-share-btn {
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-weight: 800;
    backdrop-filter: blur(6px);
}

.hero-share-btn i {
    width: 18px;
    height: 18px;
}

.hero-photo-area {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-photo-area img {
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center bottom;
    margin-left: auto;
}

.hero-video-panel {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #1f4596 0%, #173b83 100%);
    border: 1px solid #dbe5f5;
    min-height: 390px;
    box-shadow: 0 18px 38px rgba(17, 55, 120, 0.18);
    z-index: 5;
}

.hero-video-topbar {
    background: linear-gradient(180deg, #1e4da6 0%, #183f8e 100%);
    color: #ffffff;
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-video-thumb {
    position: relative;
    flex: 1;
    min-height: 280px;
    background: #dfeaff;
}

.hero-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--blue-900);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.play-button i {
    width: 26px;
    height: 26px;
}

.small-play {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.95);
}

.hero-video-bottombar {
    background: linear-gradient(180deg, #1f4ca5 0%, #183f8e 100%);
    padding: 14px 16px;
}

.hero-video-bottombar p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 600;
}

.video-thumb,
.video-card-thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #dfeaff;
}

.video-thumb img,
.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb {
    height: 210px;
}

.video-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-800);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.video-info h3 {
    font-size: 1.15rem;
    color: var(--blue-900);
    margin: 6px 0 10px;
}

.video-info p {
    color: var(--muted);
    line-height: 1.6;
}

.quick-actions-bar {
    border-radius: 24px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-action-item {
    min-height: 84px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    text-align: center;
    padding: 16px;
    border: 1px solid var(--border);
}

.quick-action-button {
    appearance: none;
    width: 100%;
}

.quick-action-item i {
    width: 22px;
    height: 22px;
}

.quick-action-primary {
    background: linear-gradient(180deg, #1f57b5 0%, #18479b 100%);
    color: #ffffff;
    border-color: rgba(22, 64, 143, 0.8);
}

.quick-action-light {
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
    color: var(--blue-900);
}

.quick-action-green {
    background: linear-gradient(180deg, #ddf7e8 0%, #cef0dd 100%);
    color: #0c6c3c;
    border-color: #b8e0c8;
}

.card-section {
    border-radius: 30px;
    padding: 22px;
}

.section-heading {
    margin-bottom: 10px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    background: #edf3ff;
    color: var(--blue-800);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.76rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--blue-900);
    line-height: 1.1;
}

.hero-actions,
.who-actions,
.join-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-whatsapp {
    background: var(--green);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: var(--green-dark);
}

.btn-secondary {
    background: #edf3ff;
    color: var(--blue-900);
    border: 1px solid #dbe6f5;
}

.btn-primary {
    background: var(--blue-800);
    color: #ffffff;
}

.who-grid {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 18px;
    align-items: stretch;
}

.who-photo-card,
.who-text-card,
.who-signature-card,
.support-card,
.proposal-video-highlight,
.video-card,
.campaign-join-section {
    border-radius: 24px;
}

.who-photo-card,
.who-text-card,
.who-signature-card {
    background: linear-gradient(180deg, #fbfdff 0%, #f2f6ff 100%);
    border: 1px solid var(--border);
    padding: 18px;
}

.who-photo-card {
    overflow: hidden;
    padding: 0;
    min-height: 320px;
}

.who-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-video-card {
    overflow: hidden;
    padding: 0;
    min-height: 320px;
    border-radius: 24px;
    background: #dfeaff;
    border: 1px solid var(--border);
}

.who-video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: 24px;
    background: #dfeaff;
}

.who-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-text-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.who-text-card p,
.support-card p,
.join-content p,
.video-card-content p,
.proposal-card p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

.signature-box {
    background: linear-gradient(135deg, #1551b2 0%, #103f92 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.signature-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.signature-box strong {
    font-size: 1.2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.support-card {
    background: linear-gradient(180deg, #fbfdff 0%, #f2f6ff 100%);
}

.apoios-grid {
    display: grid;
    grid-template-columns: repeat(3, 110px);
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
}

.apoio-card {
    min-width: 0;
    text-align: center;
}

.apoio-card img {
    width: 110%;
    height: 110px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 22px rgba(17, 55, 120, 0.14);
    background: #eaf1ff;
}

.apoio-cargo {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.apoio-nome {
    display: -webkit-box;
    margin-top: 3px;
    color: var(--blue-900);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.apoio-ver-mais {
    margin-top: 18px;
    text-align: center;
}

.apoio-ver-mais a {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf3ff;
    border: 1px solid #d8e3f3;
    color: var(--blue-900);
    font-size: 0.9rem;
    font-weight: 800;
}

.proposals-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr;
    gap: 12px;
}

.proposals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.proposal-card {
    border-radius: 24px;
    padding: 20px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 250px;
}

.proposal-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
}

.proposal-icon i {
    width: 28px;
    height: 28px;
}

.proposal-card h3 {
    color: var(--blue-900);
    font-size: 1.2rem;
}

.apoio-card-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: var(--blue-900);

    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.18;

    margin: 4px 0 8px;
}

.apoio-card-title-top {
    display: block;
}

.apoio-card-title-bottom {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--blue-800);
}

.proposal-link {
    margin-top: auto;
    color: var(--blue-800);
    font-weight: 700;
}

.tema-educacao {
    background: var(--educacao-bg);
    border-color: #d5e4ff;
}

.tema-educacao .proposal-icon,
.tema-educacao .proposal-link,
.tema-educacao .proposal-icon i {
    color: var(--educacao-main);
}

.tema-seguranca {
    background: var(--seguranca-bg);
    border-color: #d6dfef;
}

.tema-seguranca .proposal-icon,
.tema-seguranca .proposal-link,
.tema-seguranca .proposal-icon i {
    color: var(--seguranca-main);
}

.tema-transparencia {
    background: var(--transparencia-bg);
    border-color: #d6dfef;
}

.tema-transparencia .proposal-icon,
.tema-transparencia .proposal-link,
.tema-transparencia .proposal-icon i {
    color: var(--transparencia-main);
}

/* =========================================
   TEMA PADRÃO - CARDS DE PROPOSTAS
========================================= */

.proposal-card.tema-padrao {
    background: #eaf1ff;
    border-color: #d5e4ff;
}

/* força visual interno uniforme */
.proposal-card.tema-padrao .proposal-icon {
    background: rgba(255, 255, 255, 0.95);
}

.proposal-card.tema-padrao .proposal-icon,
.proposal-card.tema-padrao .proposal-link,
.proposal-card.tema-padrao .proposal-icon i {
    color: var(--blue-800);
}

.proposal-video-highlight {
    background: linear-gradient(180deg, #eff5ff 0%, #e8efff 100%);
    border: 1px solid var(--border);
    padding: 16px;
}

.side-thumb {
    height: 100%;
    min-height: 280px;
    margin-bottom: 16px;
}

.videos-section .video-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* =========================================
   PÁGINA INTERNA DE VÍDEOS
   Layout isolado para não afetar propostas/apoios
========================================= */

.videos-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.video-page-card {
    border-radius: 24px;
    padding: 0;
    border: 1px solid #d5e4ff;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 250px;
    background: #eaf1ff;
}

.video-page-thumb {
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.video-page-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.video-page-card .video-card-thumb {
    height: 155px;
    border-radius: 18px;
}

.video-page-card h3 {
    color: var(--blue-900);
    font-size: 1.2rem;
}

.video-page-card p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.9rem;
}
/* =========================================
   FILTRO DE VÍDEOS (NOVO)
========================================= */

.videos-filter {
    display: flex;
    gap: 8px;
    margin: 14px 0 6px;
    overflow-x: auto;
}

.filter-btn {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #dbe3f3;
    background: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.filter-btn.active {
    background: #123d94;
    color: #ffffff;
    border-color: #123d94;
}

.video-card {
    display: flex;
    flex-direction: column;

    background: linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
    border: 1px solid var(--border);

    border-radius: 18px;
    overflow: hidden;

    padding: 0;
    gap: 0;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.video-home-thumb {
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.video-home-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 55, 120, 0.15);
}

.video-card-thumb {
    width: 100%;
    height: 150px;
    border-radius: 0;
    overflow: hidden;
}

.video-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding: 10px 12px 12px;
}

.video-card-content h3 {
    font-size: 0.96rem;
    line-height: 1.25;

    color: var(--blue-900);

    font-weight: 800;

    margin-bottom: 6px;
}

.video-card-content p {
    font-size: 0.76rem;
    line-height: 1.4;
    color: var(--muted);
}

.campaign-join-section {
    background: linear-gradient(135deg, #17489f 0%, #103b88 100%);
    color: #ffffff;
}

.join-content {
    max-width: 760px;
}

.section-heading.light h2,
.campaign-join-section p {
    color: #ffffff;
}

.light-tag {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.site-footer {
    margin-top: 8px;
    border-radius: 24px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column; /* ðŸ”¥ AQUI */
    align-items: center;   /* ðŸ”¥ AQUI */
    justify-content: center;
    gap: 10px;
    text-align: center;    /* ðŸ”¥ AQUI */
    
}


.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center; /* ðŸ”¥ ESSENCIAL */
    text-align: center;  /* ðŸ”¥ ESSENCIAL */
    gap: 4px;
}

.footer-left strong {
    color: var(--blue-900);
}

.footer-left span {
    color: var(--muted);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center; /* ðŸ”¥ AQUI */
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #edf3ff;
    color: var(--blue-900);
}

.footer-social i {
    width: 18px;
    height: 18px;
}

/* Modal lead */
.lead-modal,
.share-panel {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lead-modal.is-open,
.share-panel.is-open {
    display: flex;
}

.lead-modal-backdrop,
.share-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 24, 52, 0.62);
    backdrop-filter: blur(3px);
}

.lead-content,
.share-content {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(9, 28, 68, 0.24);
    border: 1px solid #dce6f4;
}

.lead-close,
.share-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #edf3ff;
    color: var(--blue-900);
    font-size: 1.35rem;
    line-height: 1;
}

.lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4ff;
    color: var(--blue-800);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.lead-badge i {
    width: 15px;
    height: 15px;
}

.lead-content h3,
.share-content h3 {
    color: var(--blue-900);
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 10px;
    padding-right: 28px;
}

.lead-description,
.share-description,
.lead-note {
    color: var(--muted);
    line-height: 1.6;
}

.lead-description {
    margin-bottom: 18px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lead-field label {
    color: var(--blue-900);
    font-size: 0.92rem;
    font-weight: 700;
}

.lead-field input {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid #d9e4f3;
    background: #f9fbff;
    padding: 0 14px;
    color: var(--text);
}

.lead-field input:focus,
.share-link-box input:focus {
    outline: 2px solid rgba(29, 86, 179, 0.18);
    border-color: #9db8e6;
}

.lead-submit-btn {
    min-height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, #1f57b5 0%, #18479b 100%);
    color: #ffffff;
    font-weight: 800;
    margin-top: 4px;
}

.lead-note {
    margin-top: 14px;
    font-size: 0.88rem;
}

.share-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 18px 0;
}

.share-btn {
    min-height: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    padding: 0 16px;
}

.share-btn i {
    width: 18px;
    height: 18px;
}

.share-btn-whatsapp {
    background: linear-gradient(180deg, #25c875 0%, #18aa60 100%);
    color: #ffffff;
}

.share-btn-copy {
    background: #eef4ff;
    color: var(--blue-900);
    border: 1px solid #d8e3f3;
}

.share-link-box input {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid #d9e4f3;
    background: #f9fbff;
    padding: 0 14px;
    color: var(--text);
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: 520px 1fr;
        min-height: 156px;
    }

    .party-logo-area {
        width: 520px;
        height: 138px;
    }

    .party-logo-area img {
        transform: scale(1.95);
    }

    .hero-video-panel {
        width: 290px;
        min-height: 390px;
    }

    .who-grid,
    .proposals-layout,
    .support-grid,
    .videos-section .video-list {
        grid-template-columns: 1fr;
    }

    .proposals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .side-thumb {
        min-height: 220px;
    }        
}


@media (max-width: 860px) {
    .site-header {
        border-radius: 22px 22px 0 0;
    }

    .header-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 16px 16px;
        min-height: auto;
    }

    .header-inner::after {
        height: 1px;
    }

    .top-menu {
        display: none;
    }

    .page-shell {
        width: min(100% - 14px, 100%);
        margin-top: 10px;
    }

    .party-box {
        justify-content: flex-start;
        width: 100%;
        gap: 0;
        align-items: center;
    }
    
    .party-logo-area {
        flex: 1;
        min-width: 0;
        width: auto;
        height: 104px;
        padding: 0;
    }
    
    .party-logo-area img {
        transform: scale(2.45) translateX(6px);
        transform-origin: left center;
    }

    .hero-card,
    .card-section,
    .site-footer {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-card {
        border-radius: 0 0 22px 22px;
    }

    .hero-main-panel {
        min-height: auto;
        overflow: hidden;
        border-radius: 22px;
    }

    .hero-main-inner {
        grid-template-columns: 1fr;
        min-height: 580px;
        border-radius: 22px;
    }

    .hero-main-inner::before {
        background:
            linear-gradient(180deg, rgba(18, 52, 112, 0.05) 0%, rgba(18, 52, 112, 0.10) 24%, rgba(18, 52, 112, 0.48) 58%, rgba(18, 52, 112, 0.96) 100%);
    }

    .hero-text-block {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 4;
        padding: 18px 16px 16px;
        background: none;
    }

    .hero-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 160px;
        margin-bottom: 12px;
    }

    .hero-mobile-nav-btn {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    background: rgba(18, 52, 112, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 100%;
    }

    .hero-mobile-nav-btn i {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .hero-photo-area {
        min-height: 580px;
        justify-content: center;
        align-items: stretch;
    }

    .hero-photo-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-single-line-name {
        gap: 8px;
        margin-bottom: 10px;
    }

    .hero-single-line-name .hero-name-white,
    .hero-single-line-name .hero-name-yellow {
        font-size: 2.45rem;
    }

    .hero-meta {
        gap: 8px;
        margin-bottom: 14px;
    }

    .hero-role {
        font-size: 1rem;
    }

    .hero-number {
        font-size: 1.24rem;
    }

    .hero-cta-group {
        display: flex;
    
        flex-direction: column;
    
        align-items: flex-start;
    
        gap: 10px;
    
        width: auto;
    }
    
    .hero-whatsapp-btn,
    .hero-share-btn {
        width: 255px;
    
        min-height: 48px;
    
        padding: 0 18px;
    
        justify-content: center;
    
        border-radius: 999px;
    
        font-size: 0.84rem;
    
        font-weight: 800;
    
        gap: 9px;
    
        backdrop-filter: blur(6px);
    
        box-shadow:
            0 8px 18px rgba(0,0,0,0.14);
    }
    
    .hero-whatsapp-btn i,
    .hero-share-btn i {
        width: 18px;
        height: 18px;
    }

    .hero-whatsapp-btn span,
    .hero-share-btn span {
        white-space: nowrap;
    }

    .hero-video-panel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 14px;
        min-height: auto;
    }

    .hero-video-thumb {
        min-height: 240px;
    }

    .who-video-card,
    .who-video-thumb {
        min-height: 240px;
    }
    .quick-actions-bar {
        grid-template-columns: 1fr;
    }

    .apoios-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: initial;
    gap: 10px;
    }
    
    .apoio-card img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
    
    .apoio-cargo {
        font-size: 0.62rem;
    }
    .apoio-nome {
    font-size: 0.76rem;
    }
    .apoio-ver-mais a {
        width: 100%;
    }

    .proposals-grid {
        grid-template-columns: 1fr;
    }

    .videos-page-grid {
        grid-template-columns: 1fr;
    }

    .video-page-card .video-card-thumb {
        height: 220px;
    }

    .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        
    }

    /* =========================================
       MOBILE - TÍTULOS CENTRALIZADOS
    ========================================= */
    
    .section-heading {
        text-align: center;
    }
    
    .section-heading .section-tag {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-heading p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .campaign-join-section .join-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .campaign-join-section .section-heading {
        text-align: center;
    }
    
    .campaign-join-section .join-content p {
        text-align: center;
    }

    .lead-content,
    .share-content {
        padding: 20px 18px;
        border-radius: 20px;
    }

    /* =========================================
       HEADER CANDIDATO - MOBILE
    ========================================= */
    
    .header-candidate-info {
        position: relative;
    
        left: auto;
    
        top: auto;
    
        transform: none;
    
        display: flex;
    
        flex-direction: column;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 8px;
    
        width: 100%;
    
        text-align: center;
    
        margin-top: 8px;
    
        z-index: 5;
    }
    
    .header-candidate-name {
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 8px;
    
        line-height: 1;
    }
    
    .candidate-first-name {
        color: #ffffff;
    
        font-size: 1.62rem;
    
        font-weight: 900;
    
        letter-spacing: -0.04em;
    
        text-transform: uppercase;
    }
    
    .candidate-last-name {
        color: #f5c94a;
    
        font-size: 1.62rem;
    
        font-weight: 900;
    
        letter-spacing: -0.04em;
    
        text-transform: uppercase;
    
        text-shadow: 0 2px 10px rgba(0,0,0,0.18);
    }
    
    .header-candidate-meta {
        display: flex;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 8px;
    
        color: rgba(255,255,255,0.86);
    
        font-size: 1.04rem;
    
        font-weight: 700;
    
        line-height: 1.2;
    
        white-space: nowrap;
    }
    
    .candidate-role {
        color: rgba(255,255,255,0.86);
    }
    
    .candidate-number {
        color: #f5c94a;
    
        font-weight: 900;
    }
    
    .header-meta-dot {
        color: rgba(255,255,255,0.55);
    }
}

@media (max-width: 540px) {
    .hero-actions,
    .who-actions,
    .join-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .party-box {
        gap: 0;
    }

    .party-logo-area {
        height: 92px;
    }

    .party-logo-area img {
        transform: scale(2.48) translateX(-8px) translateY(8px);
    }

    .hero-main-inner {
        min-height: 540px;
    }

    .hero-mobile-nav {
        width: 150px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .hero-mobile-nav-btn {
        min-height: 32px;
        padding: 0 9px;
        border-radius: 9px;
        font-size: 0.74rem;
        gap: 6px;
    }

    .hero-mobile-nav-btn i {
        width: 13px;
        height: 13px;
    }

    .hero-single-line-name {
        gap: 7px;
    }

    .hero-single-line-name .hero-name-white,
    .hero-single-line-name .hero-name-yellow {
        font-size: 2.1rem;
    }

    .hero-role {
        font-size: 0.96rem;
    }

    .hero-number {
        font-size: 1.16rem;
    }

    .hero-video-topbar {
        min-height: 56px;
        font-size: 0.92rem;
        padding: 0 14px;
    }

    .hero-video-bottombar p {
        font-size: 0.88rem;
    }

    .who-video-card,
    .who-video-thumb {
        min-height: 240px;
    }

    .video-card-thumb {
        height: 190px;
    }

    .apoios-grid {
        gap: 8px;
    }

    .apoio-card img {
        border-radius: 14px;
        border-width: 2px;
    }

    .apoio-cargo {
        margin-top: 6px;
        font-size: 0.58rem;
    }

    .apoio-nome {
        font-size: 0.68rem;
    }

    .lead-modal,
    .share-panel {
        padding: 12px;
    }

    .lead-content,
    .share-content {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .videos-section .video-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .videos-section .video-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ESPAÇAMENTO PADRONIZADO ENTRE SEÇÕES
========================================= */

.content-section,
.quick-actions-bar,
.support-grid {
    margin-bottom: 0px;
}

/* No mobile, aumenta o respiro geral entre blocos */
@media (max-width: 860px) {
    .candidate-page {
        gap: 10px;
    }

    .content-section,
    .quick-actions-bar,
    .support-grid {
        margin-bottom: 0px;
    }
}

/* =========================================
   PROPOSTAS - AJUSTE DE ESPAÇAMENTO
========================================= */

.proposals-layout {
    align-items: start;
}

.proposal-video-highlight {
    margin-top: 0;
}

/* Mobile/tablet: separa melhor grid, CTA e vídeo relacionado */
@media (max-width: 1180px) {
    .proposals-layout {
        gap: 12px;
    }

    .proposal-video-highlight {
        margin-top: 10px;
    }
}

/* =========================================
   CTA - VER MAIS PROPOSTAS
========================================= */

.proposals-main {
    display: flex;
    flex-direction: column;
}

.proposals-cta {
    margin-top: 20px;      /* espaço correto abaixo das propostas */
    margin-bottom: 0px;   /* espaço antes do vídeo */
    text-align: center;
}

.btn-propostas {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 18px;
    border-radius: 16px;
    gap: 8px;

    box-shadow: 0 10px 25px rgba(18, 61, 148, 0.2);
    animation: pulsePropostas 2.2s ease-in-out infinite;
    transition: all 0.2s ease;
}

.btn-propostas:hover {
    animation: none;
    transform: scale(1.06);
}

/* Mobile */
@media (max-width: 768px) {
    .proposals-cta {
        margin-top: 18px;     /* leve ajuste para mobile */
        margin-bottom: 0px;  /* mais respiro antes do vídeo */
    }

    .proposal-video-highlight {
        margin-top: 0px; /* leve separação */
    }
}

/* =========================================
   ANIMAÇÕES
========================================= */

@keyframes pulsePropostas {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(18, 61, 148, 0.2);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 16px 35px rgba(18, 61, 148, 0.28);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(18, 61, 148, 0.2);
    }
}

/* =========================================
   FORÇAR PADRÃO VISUAL - PÁGINA PROPOSTAS
========================================= */

.proposals-section .proposal-card.tema-padrao {
    background: #eaf1ff !important;
    border-color: #d5e4ff !important;
}

.proposals-section .proposal-card.tema-padrao .proposal-icon {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--blue-800) !important;
}

.proposals-section .proposal-card.tema-padrao .proposal-icon i,
.proposals-section .proposal-card.tema-padrao .proposal-link {
    color: var(--blue-800) !important;
}

/* =========================================
   HERO MINI - PÁGINA DE PROPOSTAS
========================================= */

.hero-mini {
    margin-bottom: 0;
}

.hero-mini-inner {
    position: relative;
    height: 300px;
    max-height: 340px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(216, 227, 243, 0.9);
}

/* =========================================
   VARIAÇÕES DE TAMANHO (NOVO)
========================================= */

.hero-mini-inner.hero-normal {
    height: 260px;
    max-height: 300px;
}

.hero-mini-inner.hero-grande {
    height: 300px;
    max-height: 340px;
}

.hero-mini-inner.hero-extra {
    height: 340px;
    max-height: 380px;
}

/* =========================================
   SUPORTE PARA <picture>
========================================= */

.hero-mini-inner picture,
.hero-mini-inner img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-mini-inner img {
    object-fit: cover;
    object-position: center 42%; /* prioriza parte de baixo da imagem */
}

/* =========================================
   OVERLAY
========================================= */

.hero-mini-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 61, 148, 0.05),
        rgba(18, 61, 148, 0.25)
    );
}

/* =========================================
   TEXTO SOBRE IMAGEM
========================================= */

.hero-mini-info {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    color: #ffffff;
}

.hero-mini-info h1 {
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-mini-info span {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.95;
}

/* =========================================
   MOBILE (VERTICAL)
========================================= */

@media (max-width: 768px) {
    .hero-mini-inner {
        height: 190px !important;
        max-height: 190px;
    }

    .hero-mini-inner img {
        object-position: center top;
    }
}

/* =========================================
   MOBILE (HORIZONTAL)
========================================= */

@media (max-width: 932px) and (orientation: landscape) {
    .hero-mini-inner {
        height: 180px !important;
        max-height: 180px;
    }

    .hero-mini-inner img {
        object-position: center 38%;
    }
}

/* =========================================
   BOTÃO PDF (NÍVEL INTERMEDIÁRIO)
========================================= */

.btn-pdf {
    background: #6fa8ff;
    color: #ffffff;
    border: 1px solid #5c95f0;
}

.btn-pdf:hover {
    background: #5c95f0;
}

/* =========================================
   BOTÃO PDF EM BREVE (AMARELO MODERNO)
========================================= */

.btn-pdf-disabled {
    background: #fff4cc;
    color: #8a6d00;
    border: 1px solid #ffe08a;
    cursor: not-allowed;
    font-weight: 800;
}

.btn-pdf-disabled:hover {
    background: #ffecb3;
}

.btn-pdf-disabled i {
    opacity: 0.85;
}

/* =========================================
   BOTÃO COMPARTILHAR (WHATSAPP)
========================================= */

.share-tema-btn {
    background: linear-gradient(180deg, #25c875 0%, #1fb86a 100%);
    color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
}

.share-tema-btn:hover {
    background: linear-gradient(180deg, #20b26b 0%, #179c5c 100%);
}

/* =========================================
   DESKTOP PREMIUM COMPACTO — VotAI
   BLOCO AJUSTADO
   Desktop only
========================================= */

@media (min-width: 1181px) {

    .page-shell {
        width: min(960px, calc(100% - 120px));
        margin: 28px auto 48px;
    }

    .candidate-page {
        gap: 8px;
    }

    /* HEADER */

    .header-inner {
        position: relative;
        min-height: 98px;
        grid-template-columns: 340px 1fr;
        padding: 0 20px;
        align-items: start;
        padding-top: 10px;
    }

    .party-logo-area {
        width: 380px;
        height: 92px;
    }

    .party-logo-area img {
        transform: scale(1.75);
    }

    .top-menu {
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        z-index: 30;
    }

    .top-menu-link {
        min-width: 104px;
        min-height: 30px;
        font-size: 0.78rem;
        padding: 0 10px;
    }

    .header-candidate-info {
        position: absolute;
    
        left: 50%;
    
        top: 14px;
    
        transform: translateX(-50%);
    
        display: flex;
    
        flex-direction: row;
    
        align-items: center;
    
        justify-content: center;
    
        gap: 10px;
    
        text-align: center;
    
        white-space: nowrap;
    
        z-index: 35;
    }
    
    .header-candidate-name {
        display: flex;
    
        align-items: center;
    
        gap: 6px;
    
        line-height: 1;
    }
    
    .candidate-first-name {
        color: #ffffff;
    
        font-size: 1rem;
    
        font-weight: 900;
    
        letter-spacing: -0.03em;
    
        line-height: 1;
    
        text-transform: uppercase;
    }
    
    .candidate-last-name {
        color: #f5c94a;
    
        font-size: 1rem;
    
        font-weight: 900;
    
        letter-spacing: -0.03em;
    
        line-height: 1;
    
        text-transform: uppercase;
    
        text-shadow: 0 2px 10px rgba(0,0,0,0.18);
    }
    
    .header-candidate-meta {
        display: flex;
    
        align-items: center;
    
        justify-content: flex-end;
    
        gap: 7px;
    
        font-size: 0.76rem;
    
        font-weight: 700;
    
        line-height: 1;
    
        white-space: nowrap;
    }
    
    .candidate-role {
        color: rgba(255,255,255,0.82);
    }
    
    .candidate-number {
        color: #f5c94a;
    
        font-weight: 900;
    
        letter-spacing: -0.02em;
    }
    
    .header-meta-dot {
        opacity: 0.55;
    }

    /* HERO */

    .hero-card {
        position: relative;
        padding: 10px;
        border-radius: 0 0 22px 22px;
        overflow: visible;
    }

    .hero-main-panel,
    .hero-main-inner {
        min-height: 285px;
        border-radius: 18px;
    }

    .hero-main-panel {
        position: relative;
        overflow: hidden;
        padding-right: 0;
        background: #173b83;
    }

    .hero-main-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
        background: transparent;
    }

    .hero-main-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(10,20,40,0.05) 0%,
            rgba(10,20,40,0.14) 42%,
            rgba(10,20,40,0.68) 100%
        );
        z-index: 2;
    }

    .hero-text-block {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 0 0 22px 24px;
        justify-content: flex-end;
        background: none;
        overflow: visible;
        z-index: 7;
    }

    .hero-cta-group {
        gap: 10px;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .hero-whatsapp-btn,
    .hero-share-btn {
        min-height: 34px;
        padding: 0 13px;
        font-size: 0.76rem;
        gap: 7px;
    }

    .hero-whatsapp-btn i,
    .hero-share-btn i {
        width: 14px;
        height: 14px;
    }

    /* FOTO */

    .hero-photo-area {
        position: relative;
        min-height: 285px;
        height: 285px;
        padding-right: 0;
        overflow: hidden;
        display: block;
        border-radius: 18px;
    }

    .hero-photo-picture {
        width: 100%;
        height: 100%;
        display: block;
        overflow: hidden;
        border-radius: 0;
    }

    .hero-photo-picture img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
        border-radius: 0;
    }

    /* VIDEO */

    .hero-video-panel {
        display: none;
       
        position: absolute;
    
        right: 20px;
    
        bottom: 20px;
    
        width: 300px;
    
        height: 168px;
    
        min-height: unset;
    
        overflow: hidden;
    
        z-index: 25;
    
        border-radius: 18px;
    
        background: rgba(255,255,255,0.04);
    
        backdrop-filter: blur(4px);
    
        border: 1px solid rgba(255,255,255,0.10);
    
        box-shadow:
            0 18px 40px rgba(0,0,0,0.28);
    }

    .hero-video-topbar,
    .hero-video-bottombar {
        display: none;
    }

    .hero-video-thumb {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: unset;
        overflow: hidden;
        border-radius: 0;
    }

    .play-button {
        width: 44px;
        height: 44px;
    }

    .play-button i {
        width: 16px;
        height: 16px;
    }

    /* AÇÕES */

    .quick-actions-bar {
        padding: 8px;
        gap: 8px;
        border-radius: 18px;
    }

    .quick-action-item {
        min-height: 54px;
        border-radius: 14px;
        padding: 9px 10px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .quick-action-item i {
        width: 18px;
        height: 18px;
    }

    /* SEÇÕES */

    .card-section {
        padding: 18px;
        border-radius: 20px;
    }

    .section-heading {
        margin-bottom: 10px;
    }

    /* =========================================
       HEADERS CENTRALIZADOS - PÁGINAS INTERNAS
    ========================================= */
    
    .internal-page-header,
    .section-heading {
        text-align: center;
    }
    
    .internal-page-header p,
    .section-heading p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .internal-page-header .filter-tabs,
    .section-heading .filter-tabs,
    .internal-page-header .videos-filter,
    .section-heading .videos-filter {
        justify-content: center;
    }

    .section-tag {
        padding: 5px 9px;
        font-size: 0.66rem;
        margin-bottom: 7px;
    }

    .section-heading h2 {
        font-size: clamp(1.08rem, 1.8vw, 1.45rem);
    }

    .who-section .who-grid {
        display: grid;
        width: 100%;
        grid-template-columns: minmax(280px, 36%) minmax(0, 1fr);
        gap: 12px;
        align-items: stretch;
    }

    .who-section .who-photo-card {
        width: 100%;
        min-width: 0;
        min-height: 180px;
        height: 180px;
    }

    .who-section .who-video-card,
    .who-section .who-video-thumb {
        width: 100%;
        min-width: 0;
        min-height: 180px;
        height: 180px;
        border-radius: 18px;
    }

    .who-photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .who-text-card,
    .who-signature-card {
        padding: 12px;
    }
    
    .who-text-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }
    
    .who-actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .signature-box {
        padding: 14px;
        border-radius: 16px;
    }

    .signature-box strong {
        font-size: 1rem;
    }

    .support-grid {
        gap: 10px;
    }

    .apoios-grid {
        width: 100%;
        grid-template-columns: repeat(3, 92px);
        justify-content: space-between;
        gap: 0;
        padding: 0 18px;
        margin-top: 14px;
    }

    .apoio-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
    
        height: auto;
    
        object-fit: cover;
        object-position: center top;
    
        border-radius: 14px;
    }

    .apoio-ver-mais {
        margin-top: 12px;
    }

    .apoio-ver-mais a {
        min-height: 34px;
        font-size: 0.78rem;
    }

    .proposals-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .proposals-main {
        width: 100%;
    }
    
    .proposals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .proposal-card {
        padding: 16px;
        border-radius: 16px;
        min-height: 190px;
        gap: 10px;
    }

    .proposal-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .proposal-icon i {
        width: 20px;
        height: 20px;
    }

    .proposal-card h3 {
        font-size: 0.95rem;
    }

    .apoio-card-title {
        font-size: 0.92rem;
        line-height: 1.14;
        margin: 2px 0 6px;
    }
    
    .apoio-card-title-bottom {
        font-size: 0.78rem;
    }

    .proposal-card p,
    .who-text-card p,
    .support-card p,
    .join-content p,
    .video-card-content p {
        font-size: 0.78rem;
        line-height: 1.38;
    }

    .btn {
        min-height: 36px;
        padding: 9px 13px;
        font-size: 0.82rem;
    }
    
    .proposals-section .proposal-card .join-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .proposals-section .proposal-card .join-actions .btn,
    .proposals-section .proposal-card .share-tema-btn {
        width: 92%;
        min-height: 34px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding: 8px 10px;
        font-size: 0.76rem;
        white-space: nowrap;
    }
        
    
    /* FOOTER CTA */

    .campaign-join-section {
        padding: 18px;
        text-align: center;
    }
    
    .campaign-join-section .join-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .campaign-join-section .section-heading {
        text-align: center;
    }
    
    .campaign-join-section .join-content p {
        text-align: center;
        max-width: 620px;
    }
    
    .campaign-join-section .join-actions {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
    }
    
    .campaign-join-section .join-actions .btn {
        width: fit-content;
        min-width: unset;
        max-width: none;
        justify-content: center;
        padding: 9px 20px;
        white-space: nowrap;
    }

    .side-thumb {
        min-height: 190px;
    }

    .videos-section .video-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .videos-page-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    
    .video-page-card .video-card-thumb {
        height: 170px;
    }

    
    .video-card {
        border-radius: 18px;
        overflow: hidden;
    }
    
    .video-card-thumb {
        width: 100%;
        min-width: 0;
        height: 160px;
    }
    
    .video-page-card .video-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .video-card-content {
        padding: 9px 11px 11px;
        justify-content: flex-start;
    }
    
    .video-card-content h3 {
        font-size: 0.88rem;
        line-height: 1.18;
        margin-bottom: 4px;
        color: var(--blue-900);
        font-weight: 800;
    }
    
    .video-card-content p {
        font-size: 0.70rem;
        line-height: 1.28;
        color: var(--muted);
    }

    /* =========================================
       BOTÕES PADRONIZADOS - PÁGINA DE VÍDEOS
       (DESKTOP)
    ========================================= */

    .video-page-content .join-actions .btn,
    .video-page-content .share-tema-btn {
        width: 100%;
        min-height: 34px;
        padding: 8px 10px;
        justify-content: center;
        border-radius: 999px;
        font-size: 0.76rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .campaign-join-section {
        padding: 18px;
    }

    .site-footer {
        padding: 14px 18px;
        border-radius: 18px;
    }
}