/* ============================================================
   style.css — Gil Guerra | Coordenador de Campanha
   Paleta: Azul escuro #1a3a6b | Azul claro #2e86de | Branco #fff
   Tipografia: Playfair Display (display) + Outfit (corpo)
============================================================ */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
    --blue-dark:    #1a3a6b;
    --blue-mid:     #1e4d9a;
    --blue-light:   #2e86de;
    --blue-pale:    #e8f1fb;
    --accent:       #f0a500;
    --white:        #ffffff;
    --gray-50:      #f8f9fc;
    --gray-100:     #f0f2f7;
    --gray-200:     #e2e6ef;
    --gray-400:     #9aa3b4;
    --gray-600:     #5a6278;
    --gray-800:     #2c3145;
    --text:         #2c3145;
    --text-light:   #5a6278;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Outfit', sans-serif;

    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    32px;

    --shadow-sm:    0 2px 8px rgba(26,58,107,.08);
    --shadow:       0 4px 24px rgba(26,58,107,.12);
    --shadow-lg:    0 8px 48px rgba(26,58,107,.18);
    --shadow-card:  0 2px 16px rgba(26,58,107,.10);

    --transition:   .25s ease;
    --navbar-h:     72px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BOTÕES ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn--lg  { padding: 15px 36px; font-size: 1.05rem; }
.btn--sm  { padding: 9px 20px;  font-size: .88rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
    background: var(--blue-light);
    color: var(--white);
    border-color: var(--blue-light);
    box-shadow: 0 4px 16px rgba(46,134,222,.35);
}
.btn--primary:hover {
    background: var(--blue-mid);
    border-color: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(46,134,222,.45);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
}

.btn--outline-dark {
    background: transparent;
    color: var(--blue-dark);
    border-color: var(--blue-dark);
}
.btn--outline-dark:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.btn--outline-sm {
    padding: 9px 20px;
    font-size: .88rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-sm:hover { background: rgba(255,255,255,.1); }

.btn--white {
    background: var(--white);
    color: var(--blue-dark);
    border-color: var(--white);
    font-weight: 700;
}
.btn--white:hover {
    background: var(--blue-pale);
    transform: translateY(-2px);
}

/* ── SEÇÕES — estrutura ─────────────────────────────────────── */
.section {
    padding: 96px 0;
}
.section--light  { background: var(--gray-50); }
.section--white  { background: var(--white); }
.section--blue   { background: var(--blue-dark); }
.section--about  { background: var(--blue-pale); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header--light .section-title,
.section-header--light .section-subtitle { color: var(--white); }

.section-tag {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue-light);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-tag--light {
    background: rgba(255,255,255,.15);
    color: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--blue-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}
.section-subtitle--light { color: rgba(255,255,255,.75); }

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: var(--blue-dark);
    box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navbar__brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.navbar__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .01em;
}
.navbar__role {
    font-size: .72rem;
    color: rgba(255,255,255,.7);
    letter-spacing: .05em;
    text-transform: uppercase;
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.navbar__link {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
    color: var(--white);
    background: rgba(255,255,255,.12);
}
.navbar__link--cta {
    background: var(--blue-light);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: var(--radius);
    margin-left: 8px;
}
.navbar__link--cta:hover {
    background: var(--white);
    color: var(--blue-dark) !important;
}

/* Hamburguer */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.navbar__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
/* Overlay: forte à esquerda, transparente no centro-direita */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(26,58,107,.92) 0%,
        rgba(26,58,107,.80) 35%,
        rgba(26,58,107,.45) 60%,
        rgba(26,58,107,.10) 80%,
        transparent 100%
    );
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--navbar-h);
    min-height: 100vh;
}
.hero__content {
    max-width: 580px;
    animation: fadeUp .8s ease both;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 24px;
    animation: fadeUp .8s .1s ease both;
}
.hero__badge i { color: var(--accent); }

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    animation: fadeUp .8s .2s ease both;
}
.hero__phrase {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,.85);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeUp .8s .3s ease both;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp .8s .4s ease both;
}
.hero__socials {
    display: flex;
    gap: 12px;
    animation: fadeUp .8s .5s ease both;
}
.hero__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.4);
    color: var(--white);
    font-size: .95rem;
    transition: all var(--transition);
}
.hero__social-link:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
    transform: translateY(-3px);
}

.hero__photo-frame { display: none; } /* decorativo, já usa o bg */

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
}
.hero__scroll i { font-size: 1rem; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── CARDS GRID ─────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    gap: 28px;
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Card base */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-100);
}
.card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.card:hover .card__img { transform: scale(1.05); }

/* Placeholder animado enquanto imagem carrega */
.card__img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    color: var(--gray-400);
    font-size: 2.5rem;
    z-index: 0;
    transition: opacity .3s;
}
.card__img + .card__img-placeholder,
.card__img[src] + .card__img-placeholder { z-index: -1; }

.card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.card__date, .card__author {
    font-size: .8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}
.card__category {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue-light);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.35;
    margin-bottom: 10px;
}
.card__title a:hover { color: var(--blue-light); }
.card__text {
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.6;
}
.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--blue-light);
    margin-top: auto;
    transition: gap var(--transition);
}
.card__link:hover { gap: 10px; }

/* ── EVENTOS ────────────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.event-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.event-card:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-3px);
}
.event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    background: var(--blue-light);
    border-radius: var(--radius);
    padding: 12px 8px;
    flex-shrink: 0;
}
.event-card__day {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.event-card__month {
    font-size: .7rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.event-card__body { flex: 1; }
.event-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.event-card__info {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.event-card__info span {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 5px;
}
.event-card__desc {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.55;
}

/* ── POLÍTICOS ──────────────────────────────────────────────── */
.politicians-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.politician-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.politician-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.politician-card__photo-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--gray-100);
}
.politician-card__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .4s ease;
}
.politician-card:hover .politician-card__photo { transform: scale(1.05); }
.politician-card__photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-pale), var(--gray-200));
    color: var(--gray-400);
    font-size: 4rem;
    z-index: 0;
}
.politician-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.politician-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-dark);
}
.politician-card__role {
    font-size: .82rem;
    font-weight: 600;
    color: var(--blue-light);
    letter-spacing: .02em;
    text-transform: uppercase;
}
.politician-card__text {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 8px;
    flex: 1;
}

/* ── VÍDEOS ─────────────────────────────────────────────────── */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.video-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-800);
    cursor: pointer;
}
.video-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease, opacity .3s;
}
.video-card:hover .video-card__img { transform: scale(1.04); opacity: .85; }
.video-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,58,107,.4);
    transition: background var(--transition);
}
.video-card:hover .video-card__overlay { background: rgba(26,58,107,.6); }
.video-card__play {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
    transition: transform var(--transition);
}
.video-card:hover .video-card__play { transform: scale(1.1); }
.video-card__body { padding: 20px; }
.video-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
}
.video-card__desc {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.video-card__date {
    font-size: .78rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── GALERIA ────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--gray-100);
}
.gallery-item__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.08); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,58,107,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26,58,107,.85));
    color: var(--white);
    font-size: .78rem;
    padding: 20px 12px 10px;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover .gallery-item__caption { transform: translateY(0); }

/* ── SOBRE ──────────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}
.about__photo-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gray-100);
    box-shadow: var(--shadow-lg);
}
.about__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}
.about__photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-pale), var(--gray-200));
    color: var(--gray-400);
    font-size: 6rem;
}
.about__photo-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--blue-dark);
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .03em;
}
.about__photo-badge i { color: var(--accent); }
.about__bio {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 20px 0 32px;
}

/* ── FORMULÁRIO — LEADS ─────────────────────────────────────── */
.leads-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(8px);
}
.leads-form .form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row--2 { grid-template-columns: repeat(2, 1fr); }
.form-row--1 { grid-template-columns: 1fr; }
.form-row--checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.contact-form .form-label { color: var(--text); }

.form-input {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus {
    border-color: var(--blue-light);
    background: rgba(255,255,255,.15);
}
/* Formulário de contato (fundo claro) */
.contact-form .form-input {
    background: var(--white);
    border-color: var(--gray-200);
    color: var(--text);
}
.contact-form .form-input::placeholder { color: var(--gray-400); }
.contact-form .form-input:focus { border-color: var(--blue-light); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Checkbox customizado */
.form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: .88rem;
    color: rgba(255,255,255,.8);
}
.form-check input[type="checkbox"] { display: none; }
.form-check__box {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.form-check input:checked + .form-check__box {
    background: var(--blue-light);
    border-color: var(--blue-light);
}
.form-check input:checked + .form-check__box::after {
    content: '✓';
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
}
.form-footer { text-align: center; }
.form-msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: .9rem;
    text-align: center;
    display: none;
}
.form-msg.success { display: block; background: rgba(46,210,100,.15); color: #2ed264; border: 1px solid rgba(46,210,100,.3); }
.form-msg.error   { display: block; background: rgba(220,53,69,.15);  color: #ff6b7a;  border: 1px solid rgba(220,53,69,.3);  }

/* ── CONTATO ────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}
.contact-info {
    background: var(--blue-dark);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    color: var(--white);
}
.contact-info__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-info__subtitle {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 32px;
}
.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info__item strong {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 3px;
}
.contact-info__item a {
    color: var(--white);
    font-size: .95rem;
    transition: opacity var(--transition);
}
.contact-info__item a:hover { opacity: .75; }
.contact-info__socials {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}
.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    transition: all var(--transition);
}
.social-btn:hover { background: var(--blue-light); transform: translateY(-3px); }
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

/* ── FLASH ──────────────────────────────────────────────────── */
.flash {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .92rem;
    font-weight: 500;
}
.flash--success { background: #e6f9ee; color: #1a7a3c; border: 1px solid #a3e4b7; }
.flash--error   { background: #fef0f0; color: #c0392b; border: 1px solid #f5b7b1; }
.flash--warning { background: #fef9e7; color: #b8860b; border: 1px solid #f9e79f; }
.flash--info    { background: #eaf2fb; color: #1a6ba0; border: 1px solid #aed6f1; }
.flash__icon { font-weight: 700; font-size: 1rem; }

/* ── RODAPÉ ─────────────────────────────────────────────────── */
.footer {
    background: var(--gray-800);
    color: var(--white);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 64px 24px 48px;
}
.footer__brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 6px;
}
.footer__tagline {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    transition: all var(--transition);
}
.footer__social:hover { background: var(--blue-light); color: var(--white); }
.footer__col-title {
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 20px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer__bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer__bottom p {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}
.footer__legal {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__legal span { color: rgba(255,255,255,.3); }
.footer__legal-btn {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    text-decoration: underline;
    transition: color var(--transition);
}
.footer__legal-btn:hover { color: var(--white); }

/* ── WHATSAPP FLUTUANTE ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.whatsapp-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 24px rgba(37,211,102,.5);
    text-decoration: none;
    animation: pulse-wpp 2.5s ease infinite;
    transition: transform var(--transition);
}
.whatsapp-float__btn:hover { transform: scale(1.1); animation: none; }
@keyframes pulse-wpp {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
    50%       { box-shadow: 0 4px 40px rgba(37,211,102,.8); transform: scale(1.05); }
}
.whatsapp-float__balloon {
    position: relative;
    background: var(--white);
    color: var(--gray-800);
    font-size: .88rem;
    font-weight: 600;
    padding: 10px 36px 10px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    white-space: nowrap;
    animation: fadeIn .4s ease;
    max-width: 220px;
}
.whatsapp-float__balloon::after {
    content: '';
    position: absolute;
    right: 16px;
    bottom: -8px;
    border: 8px solid transparent;
    border-top-color: var(--white);
    border-bottom: none;
}
.whatsapp-float__close {
    position: absolute;
    top: 6px; right: 8px;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1;
    transition: color var(--transition);
}
.whatsapp-float__close:hover { color: var(--gray-800); }

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.93);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__close, .lightbox__prev, .lightbox__next {
    position: absolute;
    color: var(--white);
    font-size: 2rem;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 20px; right: 20px; font-size: 1.6rem; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__inner {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox__caption {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    text-align: center;
}

/* ── MODAL VÍDEO ────────────────────────────────────────────── */
.modal-video {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-video[hidden] { display: none; }
.modal-video__inner {
    position: relative;
    width: 90vw;
    max-width: 900px;
}
.modal-video__close {
    position: absolute;
    top: -44px; right: 0;
    color: var(--white);
    font-size: 2rem;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-video__frame {
    position: relative;
    aspect-ratio: 16/9;
}
.modal-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border-radius: var(--radius-lg);
}

/* ── MODAL POLÍTICA ─────────────────────────────────────────── */
.modal-policy {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2100;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 90vw;
    max-width: 640px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.modal-policy[hidden] { display: none; }
.modal-policy__close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 1.5rem;
    color: var(--gray-400);
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.modal-policy__close:hover { background: var(--gray-100); color: var(--gray-800); }
.modal-policy__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue-dark);
    margin-bottom: 20px;
}
.modal-policy__body { font-size: .92rem; color: var(--text-light); line-height: 1.75; }
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.6);
}
.modal-overlay[hidden] { display: none; }

/* ── BANNER COOKIES ─────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1500;
    background: var(--gray-800);
    padding: 20px 0;
    border-top: 3px solid var(--blue-light);
    animation: slideUp .4s ease;
}
.cookie-banner[hidden] { display: none; }
@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}
.cookie-banner__text i { color: var(--accent); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cookie-banner__text p { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.cookie-banner__link {
    color: var(--blue-light);
    text-decoration: underline;
    font-size: inherit;
}
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── ANIMAÇÃO FADEÍN ────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVO ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cards-grid--3     { grid-template-columns: repeat(2, 1fr); }
    .politicians-grid  { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
    .about-grid        { grid-template-columns: 1fr; gap: 40px; }
    .about__photo-wrap { max-width: 360px; margin: 0 auto; }
    .footer__inner     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --navbar-h: 64px; }
    .section { padding: 72px 0; }

    /* Navbar mobile */
    .navbar__toggle { display: flex; }
    .navbar__menu {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--blue-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform .35s ease;
    }
    .navbar__menu.open { transform: translateX(0); }
    .navbar__link { font-size: 1.1rem; padding: 14px 24px; }

    /* Hero mobile */
    .hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(26,58,107,.88) 0%,
            rgba(26,58,107,.75) 50%,
            rgba(26,58,107,.55) 100%
        );
    }
    .hero__title { font-size: 2.6rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    /* Grids */
    .cards-grid--3, .cards-grid--2 { grid-template-columns: 1fr; }
    .events-grid    { grid-template-columns: 1fr; }
    .politicians-grid { grid-template-columns: 1fr; }
    .videos-grid    { grid-template-columns: 1fr; }
    .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
    .contact-grid   { grid-template-columns: 1fr; }
    .footer__inner  { grid-template-columns: 1fr; }

    /* Leads form */
    .leads-form-wrap { padding: 28px 20px; }
    .form-row--2 { grid-template-columns: 1fr; }

    /* WhatsApp */
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float__btn { width: 52px; height: 52px; font-size: 1.5rem; }

    /* Cookie */
    .cookie-banner__inner { flex-direction: column; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about__photo-wrap { aspect-ratio: 4/3; }
    .modal-policy { padding: 28px 20px; }
    .footer__bottom .container { flex-direction: column; text-align: center; }
}
