/* ===================================================================
   PROFESSOR MÁRCIO PONTE 12.222 — Deputado Estadual — PDT
   Identidade visual conforme Manual de Marca PDT 2026.
   =================================================================== */

/* ============================== VARIABLES ============================== */
:root {
  --pdt-blue: #100a62;
  --pdt-blue-light: #1c1a8f;
  --pdt-green: #176939;
  --pdt-yellow: #ffde00;
  --pdt-cream: #fff4d4;
  --pdt-red: #db002c;
  --white: #ffffff;
  --black: #101010;
  --text: #27272a;
  --gray: #5c5c66;
  --light-gray: #f5f5f7;

  --font-display: "Montserrat", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Montserrat", -apple-system, "Segoe UI", sans-serif;

  --container-max: 1320px;
  --radius: 8px;
  --radius-lg: 16px;

  --section-pad-y: 100px;
  --section-pad-y-mobile: 60px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================== RESET ============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

.container-xl {
  max-width: var(--container-max);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--pdt-blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--pdt-yellow);
  outline-offset: 2px;
}

/* ============================== TYPOGRAPHY ============================== */
h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--pdt-blue);
  line-height: 1.1;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pdt-red);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--pdt-yellow);
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--gray);
  font-weight: 500;
  max-width: 640px;
}

.text-yellow {
  color: var(--pdt-yellow);
}
.text-red {
  color: var(--pdt-red);
}
.text-green {
  color: var(--pdt-green);
}
.text-blue {
  color: var(--pdt-blue);
}

/* Componente numérico reutilizável */
.campaign-number {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--pdt-blue);
}

/* ============================== SECTION SPACING ============================== */
.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
}

@media (max-width: 991.98px) {
  .section {
    padding-top: var(--section-pad-y-mobile);
    padding-bottom: var(--section-pad-y-mobile);
  }
}

.section-navy {
  background: var(--pdt-blue);
  color: var(--white);
}
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy .section-title {
  color: var(--white);
}
.section-navy .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.section-cream {
  background: var(--pdt-cream);
}

.section-light {
  background: var(--light-gray);
}

/* ============================== PATTERN (uso pontual, <15% da tela) ============================== */
.pdt-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  overflow: hidden;
}

.pdt-pattern svg {
  position: absolute;
}

.pdt-pattern--corner-br svg {
  right: -40px;
  bottom: -40px;
  width: clamp(160px, 22vw, 280px);
  height: auto;
}

.pdt-pattern--corner-tl svg {
  left: -30px;
  top: -30px;
  width: clamp(120px, 16vw, 200px);
  height: auto;
}

.pdt-pattern--strip-left {
  width: 6px;
  left: 0;
}
.pdt-pattern--strip-left span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(
    180deg,
    var(--pdt-blue) 0 25%,
    var(--pdt-yellow) 25% 45%,
    var(--pdt-red) 45% 65%,
    var(--pdt-green) 65% 85%,
    var(--pdt-blue) 85% 100%
  );
}

/* ============================== BUTTONS ============================== */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition:
    transform 0.2s var(--ease),
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary-pdt {
  background: var(--pdt-blue);
  color: var(--white);
  border-color: var(--pdt-blue);
}
.btn-primary-pdt:hover {
  background: var(--pdt-blue-light);
  border-color: var(--pdt-blue-light);
  color: var(--white);
}

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

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

.btn-campaign {
  background: var(--pdt-yellow);
  color: var(--pdt-blue);
  border-color: var(--pdt-yellow);
}
.btn-campaign:hover {
  background: #ffe94d;
  border-color: #ffe94d;
  color: var(--pdt-blue);
}

.btn-whatsapp {
  background: var(--pdt-green);
  color: var(--white);
  border-color: var(--pdt-green);
}
.btn-whatsapp:hover {
  background: #1d7d43;
  border-color: #1d7d43;
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.link-underline {
  position: relative;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.link-underline:hover::after {
  transform: scaleX(1);
}

/* ============================== HEADER ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition:
    padding 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
  padding: 18px 0;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-color: rgba(16, 10, 98, 0.08);
  box-shadow: 0 8px 24px rgba(16, 10, 98, 0.06);
  backdrop-filter: saturate(180%) blur(10px);
}

.site-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 40px;
  width: auto;
  transition: height 0.25s var(--ease);
}
.site-header.is-scrolled .brand-logo {
  height: 32px;
}

.brand-party-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1.5px solid var(--pdt-blue);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--pdt-blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  padding: 10px 14px !important;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--pdt-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 6px;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: 3px solid var(--pdt-yellow);
}

.offcanvas-body .nav-link {
  color: var(--pdt-blue);
  font-weight: 700;
  padding: 10px 0;
}
.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
  color: var(--pdt-red);
}

.offcanvas-pdt-pattern {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--pdt-blue) 0 25%,
    var(--pdt-yellow) 25% 45%,
    var(--pdt-red) 45% 68%,
    var(--pdt-green) 68% 100%
  );
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.hero-number-bg {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(9rem, 18vw, 22rem);
  font-weight: 900;
  color: var(--pdt-blue);
  opacity: 0.05;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-map-shape {
  position: absolute;
  right: -6%;
  top: 8%;
  width: min(46vw, 620px);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: 66vh;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-name {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-name .hero-name-first {
  display: block;
  font-size: 0.42em;
  font-weight: 700;
  color: var(--pdt-red);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.hero-number {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 900;
  color: var(--pdt-blue);
  line-height: 1;
  margin: 22px 0 8px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}

.hero-number small {
  font-size: 0.24em;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-slogan {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--pdt-blue);
  line-height: 1.3;
  margin: 18px 0 34px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-shape {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 44% 56% 58% 42% / 48% 42% 58% 52%;
  overflow: hidden;
  background: var(--light-gray);
  box-shadow: 0 40px 80px -20px rgba(16, 10, 98, 0.25);
  isolation: isolate;
}

.hero-photo-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-ring {
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  border: 2px dashed rgba(16, 10, 98, 0.18);
  z-index: -1;
}

.hero-photo-badge {
  position: absolute;
  bottom: 18px;
  left: -18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -12px rgba(16, 10, 98, 0.22);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--pdt-blue);
}

.hero-photo-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pdt-yellow);
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }
  .hero-slogan {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-photo-wrap {
    order: -1;
    margin-bottom: 12px;
  }
  .hero-photo-shape {
    width: min(320px, 78vw);
  }
  .hero-number {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-top: 28px;
  }
  .hero-photo-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
  }
}

/* ============================== IDENTITY BAR ============================== */
.identity-bar {
  background: var(--pdt-blue);
  color: var(--white);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.identity-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.identity-bar-inner .sep {
  opacity: 0.4;
}

.identity-bar-inner .num {
  color: var(--pdt-yellow);
  font-weight: 900;
}

@media (max-width: 767.98px) {
  .identity-bar-inner {
    flex-direction: column;
    gap: 8px;
  }
  .identity-bar-inner .sep {
    display: none;
  }
}

/* ============================== ABOUT ============================== */
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.about-photo:hover img {
  transform: scale(1.02);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.about-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--pdt-blue);
}

.about-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 10, 98, 0.1);
}
.about-list dt {
  font-weight: 800;
  color: var(--pdt-blue);
}
.about-list-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 10, 98, 0.1);
}
.about-list-item .value {
  color: var(--gray);
}
.placeholder-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pdt-red);
  background: rgba(219, 0, 44, 0.08);
  padding: 3px 10px;
  border-radius: 999px;
}

@media (max-width: 575.98px) {
  .about-list-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ============================== IMPACT ============================== */
.impact-section {
  text-align: center;
  padding: 130px 0;
}
.impact-number {
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.impact-title {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: 18px;
  font-weight: 800;
}
.impact-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.impact-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.impact-dots span:nth-child(1) {
  background: var(--pdt-yellow);
}
.impact-dots span:nth-child(2) {
  background: var(--pdt-red);
}
.impact-dots span:nth-child(3) {
  background: var(--pdt-green);
}

/* ============================== MANIFESTO ============================== */
.manifesto {
  max-width: 780px;
}
.manifesto p {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}
.manifesto .closing {
  font-weight: 800;
  color: var(--pdt-blue);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-top: 28px;
}

/* ============================== PILLARS (EIXOS) ============================== */
.pillar {
  padding: 34px 0;
  border-top: 1px solid rgba(16, 10, 98, 0.1);
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: background-color 0.25s var(--ease);
}
.pillars-list .pillar:last-child {
  border-bottom: 1px solid rgba(16, 10, 98, 0.1);
}
.pillar:hover {
  background: var(--light-gray);
}
.pillar-index {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(16, 10, 98, 0.18);
}
.pillar-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pdt-blue);
  margin-bottom: 4px;
}
.pillar-desc {
  color: var(--gray);
  font-weight: 500;
  margin: 0;
}
.pillar-link {
  color: var(--pdt-blue);
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease);
}
.pillar-link:hover {
  gap: 10px;
}

@media (max-width: 767.98px) {
  .pillar {
    grid-template-columns: 60px 1fr;
  }
  .pillar-link {
    grid-column: 1 / -1;
  }
  .pillar-index {
    font-size: 1.8rem;
  }
}

/* ============================== PROPOSALS ============================== */
.proposals-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: none;
  margin-bottom: 40px;
}
.proposals-tabs .nav-link {
  border: 1.5px solid rgba(16, 10, 98, 0.16);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--pdt-blue);
  background: transparent;
}
.proposals-tabs .nav-link.active {
  background: var(--pdt-blue);
  border-color: var(--pdt-blue);
  color: var(--white);
}

.proposal-card {
  border: 1px solid rgba(16, 10, 98, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.proposal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(16, 10, 98, 0.08);
}
.proposal-cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pdt-red);
  margin-bottom: 14px;
}
.proposal-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pdt-blue);
  margin-bottom: 12px;
}
.proposal-summary {
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 20px;
  flex-grow: 1;
}
.proposal-demo-flag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray);
  border-top: 1px dashed rgba(16, 10, 98, 0.15);
  padding-top: 12px;
  margin-top: auto;
}

/* ============================== STUDENTS FORM ============================== */
.students-section {
  background: var(--light-gray);
}
.students-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 30px 70px -30px rgba(16, 10, 98, 0.18);
}
.form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pdt-blue);
  margin-bottom: 6px;
}
.form-control,
.form-select {
  border: 1.5px solid rgba(16, 10, 98, 0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--pdt-blue);
  box-shadow: 0 0 0 4px rgba(16, 10, 98, 0.1);
}
.role-radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.role-radio {
  border: 1.5px solid rgba(16, 10, 98, 0.15);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.role-radio:has(input:checked) {
  border-color: var(--pdt-blue);
  background: rgba(16, 10, 98, 0.04);
}
.role-radio input {
  accent-color: var(--pdt-blue);
}
.form-consent {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-consent input {
  margin-top: 4px;
  accent-color: var(--pdt-blue);
}
.form-success {
  display: none;
}
.form-success.is-visible {
  display: block;
}

@media (max-width: 575.98px) {
  .role-radio-group {
    grid-template-columns: 1fr;
  }
}

/* ============================== PARTICIPATION CTA ============================== */
.participation-cta {
  background: var(--pdt-blue);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.participation-cta p {
  max-width: 620px;
  margin: 18px auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}
.participation-cta .btn-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================== AGENDA ============================== */
.agenda-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(16, 10, 98, 0.12);
  border-radius: var(--radius-lg);
  height: 100%;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.agenda-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(16, 10, 98, 0.08);
}
.agenda-date {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  background: var(--pdt-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1.1;
}
.agenda-date .day {
  font-size: 1.4rem;
}
.agenda-date .month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.agenda-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pdt-blue);
  margin-bottom: 8px;
}
.agenda-meta {
  color: var(--gray);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}
.agenda-meta i {
  color: var(--pdt-red);
  width: 16px;
}

/* ============================== NEWS ============================== */
.news-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.news-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(16, 10, 98, 0.92) 0%,
    rgba(16, 10, 98, 0.1) 60%
  );
  z-index: 1;
}
.news-featured-content {
  position: relative;
  z-index: 2;
  padding: 34px;
}
.news-card {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 10, 98, 0.1);
}
.news-card img {
  width: 110px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.news-cat {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pdt-red);
}
.news-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--pdt-blue);
  margin: 4px 0;
  line-height: 1.3;
}
.news-date {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
}

/* ============================== GALLERY ============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-item:nth-child(3n + 1) {
  aspect-ratio: 1 / 1.25;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: "\f52a";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  background: rgba(16, 10, 98, 0.35);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 10, 98, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox-overlay.is-open {
  display: flex;
}
.lightbox-overlay img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
}
.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}

/* ============================== VIDEOS ============================== */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.video-card:hover img {
  transform: scale(1.04);
}
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 10, 98, 0.3);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--white);
  color: var(--pdt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  transition: transform 0.25s var(--ease);
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-meta {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  z-index: 2;
  color: var(--white);
}
.video-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.video-duration {
  font-size: 0.78rem;
  opacity: 0.85;
}
.video-modal .modal-content {
  background: var(--black);
  border: none;
}
.video-modal .ratio {
  --bs-aspect-ratio: 56.25%;
}
.video-modal .btn-close {
  filter: invert(1);
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5;
}

/* ============================== SOCIAL ============================== */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(16, 10, 98, 0.15);
  font-weight: 700;
  color: var(--pdt-blue);
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.social-pill:hover {
  background: var(--pdt-blue);
  color: var(--white);
  transform: translateY(-3px);
}
.social-pill i {
  font-size: 1.15rem;
}

/* ============================== FINAL CTA ============================== */
.final-cta {
  background: var(--pdt-blue);
  color: var(--white);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final-cta .kicker {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pdt-yellow);
  font-size: 0.85rem;
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 12px 0;
}
.final-cta .number {
  color: var(--white);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  margin: 8px 0 20px;
}
.final-cta .slogan {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--pdt-blue);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}
.footer-brand-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-nav li {
  margin-bottom: 10px;
}
.footer-nav a {
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.footer-social a:hover {
  background: var(--white);
  color: var(--pdt-blue);
  border-color: var(--white);
}
.footer-legal {
  margin-top: 60px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-note {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 900px;
  margin-top: 14px;
}

/* ============================== WHATSAPP FLOAT ============================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pdt-green);
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 14px 30px rgba(23, 105, 57, 0.35);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(23, 105, 57, 0.42);
  color: var(--white);
}
.whatsapp-float i {
  font-size: 1.3rem;
}

@media (max-width: 575.98px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 14px;
  }
}

/* ============================== MICROINTERACTIONS ============================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================== RESPONSIVE (global) ============================== */
@media (max-width: 991.98px) {
  .about-photo {
    margin-bottom: 32px;
  }
}

@media (max-width: 767.98px) {
  .impact-section {
    padding: 90px 0;
  }
  .final-cta {
    padding: 90px 0;
  }
}
