/*
Theme Name: Sinppenal
Theme URI: https://sinppenal.org.br
Author: Marlei Grolli
Description: Tema para o Sindicato dos Profissionais Penitenciários
Version: 1.0
Text Domain: sinppenal
*/

:root {
  --red: #d40000;
  --red-hover: #A80000;
  --red-dark: #650000;
  --black: #000000;
  --black-soft: #2a2a2a;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-dark: #666;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-slim {
  max-width: 960px;
}

/* ===== HEADER ===== */
.p-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.p-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.btn-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: none;
}

.btn-menu svg rect {
  fill: var(--white);
}

.btn-menu:hover svg rect {
  fill: var(--red);
}

.p-brand a {
  display: block;
}

.p-brand img {
  max-height: 60px;
  width: auto;
}

.p-menu-list {
  display: flex;
  gap: 5px;
}

.p-menu-list li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.p-menu-list li a:hover,
.p-menu-list li.current-menu-item a {
  color: var(--red);
}

.p-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p-menu-social ul {
  display: flex;
  gap: 8px;
}

.p-menu-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--black);
  border-radius: 50%;
  transition: background 0.2s;
}

.p-menu-social a:hover {
  background: var(--red);
}

.p-menu-social svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

/* ===== TOP BAR ===== */
.p-topbar {
  background: #222;
  padding: 6px 0;
}

.p-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.p-topbar-social ul {
  display: flex;
  gap: 12px;
  list-style: none;
}

.p-topbar-social a {
  color: #ccc;
  transition: color 0.2s;
}

.p-topbar-social a:hover {
  color: #fff;
}

.p-topbar-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.p-topbar-search {
  display: flex;
}

.p-topbar-search input {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 3px;
  outline: none;
}

.p-topbar-search input::placeholder {
  color: #999;
}

.p-topbar-search input:focus {
  border-color: var(--red);
}

/* ===== HEADER ===== */
.p-block-teaser {
  position: relative;
}

.swiper-banner .swiper-slide {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.p-block-teaser__figure {
  position: absolute;
  inset: 0;
}

.p-block-teaser__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-block-teaser__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.p-block-teaser__content {
  position: absolute;
  bottom: 250px;
  left: 0;
  text-align: left;
  color: var(--white);
  z-index: 2;
  width: 50%;
  padding-left: 5%;
  box-sizing: border-box;
}

.p-block-teaser__item--center .p-block-teaser__content {
  left: 25%;
  transform: translateX(-50%);
  text-align: center;
}

.p-block-teaser__item--right .p-block-teaser__content {
  left: auto;
  right: 0;
  text-align: right;
  padding-left: 0;
  padding-right: 5%;
}

.p-block-teaser__pretitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.p-block-teaser__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.p-block-teaser__subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
  line-height: 1.2;
  text-transform: uppercase;
}

.p-block-teaser__text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--red-hover);
  color: var(--white);
}

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

.btn-flat {
  background: transparent;
  border: 2px solid var(--white);
}

.btn-flat:hover {
  background: var(--white);
  color: var(--red);
}

.swiper-banner {
  position: relative;
}

.swiper-banner .swiper-pagination {
  position: absolute !important;
  bottom: 60px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  text-align: center;
  z-index: 20;
}

.swiper-banner .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 30px;
  height: 4px;
  border-radius: 2px;
}

.swiper-banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--red);
}

.swiper-banner .swiper-button-prev,
.swiper-banner .swiper-button-next {
  color: var(--white);
  width: 45px;
  height: 45px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  transition: background 0.3s;
}

.swiper-banner .swiper-button-prev:hover,
.swiper-banner .swiper-button-next:hover {
  background: var(--red);
}

.swiper-banner .swiper-button-prev::after,
.swiper-banner .swiper-button-next::after {
  font-size: 1.1rem;
}

.swiper-banner .swiper-button-prev {
  left: 15px;
}

.swiper-banner .swiper-button-next {
  right: 15px;
}

/* ===== WRAPPER ===== */
.p-wrapper {
  width: 90%;
  max-width: 1320px;
  margin: -50px auto 0;
  background: var(--white);
  position: relative;
  z-index: 5;
}

/* ===== 3 COLUNAS: NOTICIAS, CONVENIOS, AGENDA ===== */
.p-cols {
  padding: 70px 0;
  background: transparent;
}

.p-cols__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-cols__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--red);
}

.p-cols__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.p-cols__title strong {
  color: var(--red);
}

.p-cols__more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  transition: color 0.2s;
}

.p-cols__more:hover {
  color: var(--red-hover);
}

/* News column */
.p-cols-news__item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.p-cols-news__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-cols-news__figure {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}

.p-cols-news__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-cols-news__body h3 {
  font-size: 0.95rem;
  margin: 0 0 5px;
  line-height: 1.4;
}

.p-cols-news__body h3 a {
  color: var(--black);
  transition: color 0.2s;
}

.p-cols-news__body h3 a:hover {
  color: var(--red);
}

.p-cols-news__meta {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* Convenios column */
.p-cols-conv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.p-cols-conv__card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.p-cols-conv__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.p-cols-conv__card img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
}

.p-cols-conv__card h3 {
  font-size: 0.8rem;
  margin: 0;
  padding: 8px;
  text-align: center;
  color: var(--black);
  line-height: 1.3;
  transition: color 0.2s;
}

.p-cols-conv__card:hover h3 {
  color: var(--red);
}

.p-cols-conv__cta {
  margin-top: 25px;
  padding: 25px 20px;
  background: var(--black);
  border-radius: 8px;
  text-align: center;
}

.p-cols-conv__cta p {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.p-cols-conv__cta p strong {
  color: var(--red);
}

.p-cols-conv__cta .btn {
  font-size: 0.85rem;
  padding: 10px 24px;
}

/* Events / Agenda column */
.p-cols-evt__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 6px;
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.p-cols-evt__hora i,
.p-cols-evt__local i {
  margin-right: 4px;
  color: var(--red);
}

.p-cols-evt__local {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


.p-cols-evt__item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  align-items: flex-start;
}

.p-cols-evt__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-cols-evt__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.p-cols-evt__date strong {
  font-size: 1.1rem;
  display: block;
}

.p-cols-evt__body h3 {
  font-size: 0.95rem;
  margin: 0 0 4px;
  line-height: 1.4;
}

.p-cols-evt__body h3 a {
  color: var(--black);
  transition: color 0.2s;
}

.p-cols-evt__body h3 a:hover {
  color: var(--red);
}

.p-cols-evt__body p {
  font-size: 0.83rem;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.4;
}

/* Empty state */
.p-cols__empty {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-style: italic;
}

@media (min-width: 992px) {
  .p-cols__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== FILIACAO ===== */
.p-block-filiacao {
  background: var(--black);
  padding: 70px 0;
}

.p-block-filiacao__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .p-block-filiacao__grid {
    grid-template-columns: 300px 1fr 240px;
  }
}

/* Card */
.p-block-filiacao__card-col {
  display: flex;
  justify-content: center;
}

.p-block-filiacao__card {
  width: 280px;
  background: #2a2a2a;
  border-radius: 12px;
  padding: 25px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.p-block-filiacao__card:hover {
  transform: rotate(0deg);
}

.p-block-filiacao__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.p-block-filiacao__card-logo-img {
  max-height: 35px;
  width: auto;
}

.p-block-filiacao__card-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-block-filiacao__card-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #720000;
  margin-bottom: 15px;
}

.p-block-filiacao__card-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p-block-filiacao__card-name {
  flex: 1;
}

.p-block-filiacao__card-name strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.3;
}

.p-block-filiacao__card-name span {
  font-size: 0.8rem;
  color: #999;
}

.p-block-filiacao__card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #720000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-block-filiacao__card-photo i {
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
}

.p-block-filiacao__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.p-block-filiacao__title {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 25px;
}

.p-block-filiacao__title strong {
  font-weight: 800;
  color: var(--red);
}

.p-block-filiacao__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.p-block-filiacao__list li {
  color: var(--white);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-block-filiacao__list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.p-block-filiacao__list li:last-child {
  border-bottom: none;
}

.p-block-filiacao__list li i {
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .p-block-filiacao__list {
    grid-template-columns: 1fr;
  }
}

/* Action column */
.p-block-filiacao__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-block-filiacao__btn {
  text-align: center;
  width: 100%;
  font-size: 0.95rem;
  padding: 16px 20px;
}

.p-block-filiacao__link {
  color: var(--white);
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-align: center;
}

.p-block-filiacao__link:hover {
  color: var(--red);
}

.p-block-filiacao__link i {
  transition: transform 0.2s;
}

.p-block-filiacao__link:hover i {
  transform: translateX(4px);
}

/* ===== DIVIDER ===== */
.p-section-divider {
  border: none;
  height: 4px;
  background: var(--red);
  width: 60px;
  margin: 0 auto;
}

.p-section-subguide {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 40px;
}

.p-sip-social {
  margin-top: 15px;
}

.p-sip-social a {
  display: inline-block;
  margin-right: 20px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.p-sip-social a:hover {
  color: var(--red);
}

/* ===== BENEFICIOS ===== */
.p-section {
  padding: 70px 0;
  background: var(--white);
}

.p-block-beneficios {
  text-align: center;
}

.p-block-beneficios__title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-block-beneficios__title strong {
  font-weight: 800;
  color: var(--red);
}

.p-block-beneficios__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.p-block-beneficios__item {
  text-align: center;
  padding: 30px 15px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.p-block-beneficios__item:hover {
  transform: translateY(-3px);
}

.p-block-beneficios__figure {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 50%;
}

.p-block-beneficios__figure img,
.p-block-beneficios__figure svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.p-block-beneficios__title-item {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.p-block-beneficios__text {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

.p-block-beneficios__button {
  display: inline-block;
  padding: 14px 40px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background 0.3s;
}

.p-block-beneficios__button:hover {
  background: var(--red-hover);
  color: var(--white);
}

/* ===== DEPOIMENTOS ===== */
.p-block-quotes {
  background: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.p-block-quotes .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-block-quotes__figure {
  flex-shrink: 0;
}

.p-block-quotes__figure img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--red);
}

.p-block-quotes__content {
  text-align: left;
}

.p-block-quotes__title {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.p-block-quotes__title span {
  display: inline;
  background: rgba(255,255,255,0.1);
  padding: 3px 10px;
  box-decoration-break: clone;
}

.p-block-quotes__text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}

.swiper-depoimentos .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.swiper-depoimentos .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--red);
}

/* ===== SERVICE CARDS ===== */
.service-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-cards__item {
  background: var(--white);
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-cards__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-cards__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 50%;
}

.service-cards__item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.service-cards__item p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-cards__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.service-cards__link:hover {
  color: var(--red-hover);
}

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

@media (max-width: 480px) {
  .service-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA SECTION ===== */
.p-block-cta {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.p-block-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.p-block-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.p-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.p-footer.has-line {
  border-top: 1px solid #720000;
}

.p-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.p-footer__col {
  display: flex;
  flex-direction: column;
}

.p-footer__brand-col {
  gap: 20px;
}

.p-footer__brand img {
  max-height: 50px;
  filter: brightness(0) invert(1);
}

.p-footer__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.p-footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.p-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-footer__list li {
  font-size: 0.9rem;
}

.p-footer__list a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.p-footer__list a:hover {
  color: var(--red);
}

.p-footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.p-footer__list--contact i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.p-footer__menu-social ul {
  display: flex;
  gap: 10px;
}

.p-footer__menu-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

.p-footer__menu-social a:hover {
  background: var(--red);
}

.p-footer__menu-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.p-footer__prefacio {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.p-footer__prefacio a {
  color: rgba(255,255,255,0.6);
}

.p-footer__prefacio a:hover {
  color: var(--red);
}

/* ===== NARROW CONTAINER ===== */
.container-narrow {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== STATS ICONS (overlapping banner) ===== */
.p-stats-icons {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    margin-bottom: 0;
}

.p-stats-icons__grid {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.p-stats-icons__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 15px 24px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    position: relative;
}

.p-stats-icons__item + .p-stats-icons__item {
    border-left: 1px solid #e0e0e0;
}

.p-stats-icons__item:hover {
    background: var(--gray);
}

.p-stats-icons__item i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.p-stats-icons__item:hover i {
    transform: scale(1.15);
}

.p-stats-icons__item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== STATS NUMBERS (black bar) ===== */
.p-stats-numbers {
    padding: 55px 0 50px;
}

.p-stats-numbers__grid {
    display: flex;
    background: var(--black);
    border-radius: 10px;
    overflow: hidden;
}

.p-stats-numbers__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 35px 15px 30px;
    text-align: left;
}

.p-stats-numbers__item + .p-stats-numbers__item {
    border-left: 1px solid rgba(255,255,255,0.12);
}

.p-stats-numbers__item i {
    font-size: 2.4rem;
    color: var(--red);
    flex-shrink: 0;
}

.p-stats-numbers__info strong {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.p-stats-numbers__info span {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION SUBTITLE ===== */
.p-section__subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    margin: 50px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-section__subtitle strong {
    font-weight: 800;
    color: var(--red);
}

/* ===== CONVENIOS FILTER ===== */
.p-convenios-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 40px 0;
}

.p-convenios-filter button {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.p-convenios-filter button:hover {
    border-color: var(--red);
    color: var(--red);
}

.p-convenios-filter button.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.p-convenios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-convenios-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.p-convenios-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.p-convenios-card__figure {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
}

.p-convenios-card__figure img {
    width: 50%;
    height: auto;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.4s;
}

.p-convenios-card:hover .p-convenios-card__figure img {
    transform: scale(1.03);
}

.p-convenios-card__body {
    padding: 20px;
}

.p-convenios-card__body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.p-convenios-card__body h3 a {
    color: var(--black);
    transition: color 0.2s;
}

.p-convenios-card__body h3 a:hover {
    color: var(--red);
}

.p-convenios-card__cats {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.p-convenios-card__cats a {
    color: var(--red);
}

.p-convenios-card__body p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.p-convenios-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.p-convenios-card__link:hover {
    color: var(--red-hover);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--black), var(--red-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ===== PAGE CONTENT ===== */
.p-page-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.p-page-content h1,
.p-page-content h2,
.p-page-content h3,
.p-page-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--black);
}

.p-page-content p {
    margin-bottom: 1.2em;
}

.p-page-content a {
    color: var(--red);
}

.p-page-content a:hover {
    color: var(--red-hover);
    text-decoration: underline;
}

.p-page-content ul,
.p-page-content ol {
    margin: 0 0 1.2em 1.5em;
}

.p-page-content li {
    margin-bottom: 0.4em;
}

.p-page-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
}

.p-page-content .wp-block-button {
    margin: 1.5em 0;
}

.p-page-content .wp-block-button__link {
    background: var(--red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.p-page-content .wp-block-button__link:hover {
    background: var(--red-hover);
    text-decoration: none;
}

/* ===== ARCHIVE ===== */
.p-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-archive-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.p-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.p-archive-card__figure {
    display: block;
    height: 200px;
    overflow: hidden;
}

.p-archive-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.p-archive-card:hover .p-archive-card__figure img {
    transform: scale(1.05);
}

.p-archive-card__body {
    padding: 20px;
}

.p-archive-card__body h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.p-archive-card__body h2 a {
    color: var(--black);
    transition: color 0.2s;
}

.p-archive-card__body h2 a:hover {
    color: var(--red);
}

.p-archive-card__excerpt {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.p-archive-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.p-archive-card__link:hover {
    color: var(--red-hover);
}

.p-archive-empty {
    text-align: center;
    color: var(--gray-dark);
    padding: 60px 0;
    font-size: 1.1rem;
}

/* ===== BLOG SINGLE ===== */
.p-single {
    overflow: hidden;
}

.p-single-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.p-single-meta i {
    margin-right: 5px;
    color: var(--red);
}

.p-single__featured {
    float: left;
    width: 50%;
    margin: 0 30px 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.p-single__featured img {
    width: 100%;
    height: auto;
    display: block;
}

.p-single .p-page-content {
    max-width: none;
    padding: 0;
}

/* ===== ARCHIVE CARD DATE ===== */
.p-archive-card__date {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.p-archive-card__date i {
    margin-right: 4px;
    color: var(--red);
}

/* ===== EVENTOS ARCHIVE ===== */
.p-evt-archive {
  max-width: 800px;
  margin: 0 auto;
}

.p-evt-archive__item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
  align-items: flex-start;
}

.p-evt-archive__item:last-child {
  border-bottom: none;
}

.p-evt-archive__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.p-evt-archive__date strong {
  font-size: 1.4rem;
  display: block;
}

.p-evt-archive__body {
  flex: 1;
  min-width: 0;
}

.p-evt-archive__body h2 {
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.p-evt-archive__body h2 a {
  color: var(--black);
  transition: color 0.2s;
}

.p-evt-archive__body h2 a:hover {
  color: var(--red);
}

.p-evt-archive__info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.p-evt-archive__info i {
  margin-right: 5px;
  color: var(--red);
}

.p-evt-archive__excerpt {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-header__tabs {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.page-header__tabs a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  background: var(--gray);
  text-decoration: none;
  transition: all 0.2s;
}

.page-header__tabs a.active,
.page-header__tabs a:hover {
  background: var(--red);
  color: var(--white);
}

.pagination {
    text-align: center;
    margin-top: 50px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.pagination .page-numbers:hover,
.pagination .current {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* ===== CONTATO ===== */
.p-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.p-contato__info h2,
.p-contato__form h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.p-contato__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.p-contato__item i {
    font-size: 1.3rem;
    color: var(--red);
    margin-top: 3px;
    flex-shrink: 0;
}

.p-contato__item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--black);
    margin-bottom: 2px;
}

.p-contato__item span {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.p-contato__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: opacity 0.2s;
}

.p-contato__whatsapp:hover {
    opacity: 0.85;
    color: var(--white);
}

.p-contato__whatsapp i {
    font-size: 1.4rem;
}

.p-contato__form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p-contato__form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.p-contato__form label span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
}

.p-contato__form input,
.p-contato__form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.p-contato__form input:focus,
.p-contato__form textarea:focus {
    outline: none;
    border-color: var(--red);
}

.p-contato__extra {
    grid-column: 1 / -1;
    margin-top: 30px;
}

/* ===== FILIAÇÃO PAGE ===== */
.p-filiacao-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.p-filiacao-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

.p-filiacao-steps {
  display: grid;
  gap: 25px;
  margin-bottom: 50px;
}

.p-filiacao-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: var(--gray);
  border-radius: 8px;
  border-left: 4px solid var(--red);
}

.p-filiacao-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.p-filiacao-step__body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--black);
}

.p-filiacao-step__body p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.6;
}

.p-filiacao-cta {
  text-align: center;
  padding: 50px;
  background: var(--black);
  border-radius: 8px;
}

.p-filiacao-cta h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.p-filiacao-cta p {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* ===== FILIAÇÃO - FICHA E CARTA RESPOSTA ===== */
.p-filiacao-print-area {
    margin: 50px 0;
}

.p-filiacao-download {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 50px 0;
}

.p-filiacao-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    position: relative;
}

.p-filiacao-card:hover {
    border-color: var(--red, #d40000);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.p-filiacao-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red, #d40000);
    color: #fff;
    border-radius: 10px;
    font-size: 22px;
}

.p-filiacao-card__body {
    flex: 1;
}

.p-filiacao-card__body h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    color: #1a1a1a;
}

.p-filiacao-card__body p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.p-filiacao-card__badge {
    flex-shrink: 0;
    padding: 4px 10px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .p-filiacao-download {
        grid-template-columns: 1fr;
    }
}

.p-filiacao-print-bar {
    text-align: right;
    margin-bottom: 20px;
}

@media print {
    .p-header,
    .p-footer,
    .p-filiacao-print-bar,
    .p-filiacao-online,
    .p-filiacao-steps,
    .p-filiacao-intro,
    .page-header,
    .p-filiacao-cta {
        display: none !important;
    }

    .p-main {
        width: 100%;
        max-width: none;
        border-radius: 0;
        margin: 0;
        background: none;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .p-filiacao-wrap {
        max-width: none;
    }

    .p-ficha {
        box-shadow: none;
        padding: 0;
        page-break-after: always;
    }

    .p-carta-resposta {
        box-shadow: none;
        page-break-before: always;
    }

    body {
        font-size: 12px;
        background: #fff;
    }
}

.p-ficha {
    background: var(--white);
    border: 2px solid var(--black);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 50px;
}

.p-ficha__header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--black);
}

.p-ficha__header img {
    max-height: 50px;
    margin-bottom: 10px;
}

.p-ficha__header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-ficha__header p {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.p-ficha__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.p-ficha__table tr {
    border-bottom: 1px solid #ccc;
}

.p-ficha__table td {
    padding: 10px 8px;
    vertical-align: middle;
}

.p-ficha__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    width: 200px;
    white-space: nowrap;
}

.p-ficha__field {
    height: 24px;
}

.p-ficha__sign {
    margin-top: 10px;
}

.p-ficha__sign-line {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--black);
}

.p-ficha__sign-label {
    font-weight: 600;
}

.p-ficha__cut-line {
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--red);
    letter-spacing: 3px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed var(--red);
}

.p-carta-resposta {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 4px;
    max-width: 380px;
    margin: 0 auto 50px;
}

.p-carta-resposta__inner {
    padding: 30px;
}

.p-carta-resposta__header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--black);
}

.p-carta-resposta__header strong {
    display: block;
    font-size: 1.2rem;
    color: var(--red);
    letter-spacing: 2px;
}

.p-carta-resposta__header span {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
}

.p-carta-resposta__body {
    text-align: center;
    padding: 25px 10px;
    border: 2px solid var(--black);
    margin-bottom: 20px;
}

.p-carta-resposta__dest {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.6;
}

.p-carta-resposta__fold {
    font-size: 0.8rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.p-carta-resposta__fold p {
    margin: 0;
}

.p-carta-resposta__dotted {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--black) 0,
        var(--black) 6px,
        transparent 6px,
        transparent 12px
    );
}

/* Online form */
.p-filiacao-online {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid var(--red);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.p-filiacao-online h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.p-filiacao-online > p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.p-filiacao-online .wpcf7 {
    background: var(--gray);
    padding: 30px;
    border-radius: 8px;
}

.p-filiacao-online .wpcf7 label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.p-filiacao-online .wpcf7 input,
.p-filiacao-online .wpcf7 textarea,
.p-filiacao-online .wpcf7 select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    margin-bottom: 15px;
}

.p-filiacao-online .wpcf7 input:focus,
.p-filiacao-online .wpcf7 textarea:focus {
    outline: none;
    border-color: var(--red);
}

.p-filiacao-online .wpcf7 input[type="submit"] {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    padding: 14px 36px;
    width: auto;
    transition: background 0.3s;
}

.p-filiacao-online .wpcf7 input[type="submit"]:hover {
    background: var(--red-hover);
}

@media (max-width: 768px) {
    .p-ficha {
        padding: 20px;
    }

    .p-ficha__label {
        width: 120px;
        font-size: 0.78rem;
    }

    .p-ficha__header h2 {
        font-size: 1.2rem;
    }
}

/* ===== DENUNCIAS ===== */
.p-denuncias-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.p-denuncias-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--black);
}

.p-denuncias-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(139,0,0,0.6) 100%);
}

.p-denuncias-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.p-denuncias-banner__title {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.p-denuncias-banner__title strong {
    font-weight: 800;
    color: var(--red);
}

.p-denuncias-banner__cta {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    background: var(--red);
    padding: 14px 48px;
    border-radius: 4px;
    animation: pulse-denuncia 1.5s ease-in-out infinite;
}

@keyframes pulse-denuncia {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.6); }
    50% { box-shadow: 0 0 0 15px rgba(204,0,0,0); }
}

.p-denuncias-form {
    text-align: center;
}

.p-denuncias-form__header {
    margin-bottom: 40px;
}

.p-denuncias-form__header i {
    font-size: 3.5rem;
    color: var(--red);
    margin-bottom: 15px;
}

.p-denuncias-form__header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.p-denuncias-form__header h2 strong {
    font-weight: 800;
    color: var(--red);
}

.p-denuncias-form__header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.p-denuncias-form__body {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.p-denuncias-form__body .wpcf7 {
    background: var(--gray);
    padding: 30px;
    border-radius: 8px;
}

.p-denuncias-form__body .wpcf7 label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.p-denuncias-form__body .wpcf7 input,
.p-denuncias-form__body .wpcf7 textarea,
.p-denuncias-form__body .wpcf7 select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    margin-bottom: 15px;
}

.p-denuncias-form__body .wpcf7 input:focus,
.p-denuncias-form__body .wpcf7 textarea:focus {
    outline: none;
    border-color: var(--red);
}

.p-denuncias-form__body .wpcf7 input[type="submit"] {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    padding: 14px 36px;
    width: auto;
    transition: background 0.3s;
}

.p-denuncias-form__body .wpcf7 input[type="submit"]:hover {
    background: var(--red-hover);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .p-block-beneficios__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .swiper-banner .swiper-slide {
    height: 400px;
  }
  .p-block-teaser__title {
    font-size: 1.8rem;
  }
  .p-block-teaser__pretitle,
  .p-block-teaser__subtitle,
  .p-block-teaser__text {
    display: none;
  }
  .p-stats-icons__item {
    padding: 22px 10px 18px;
  }
  .p-stats-icons__item i {
    font-size: 1.6rem;
  }
  .p-stats-numbers__item i {
    font-size: 2rem;
  }
  .p-stats-numbers__info strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .btn-menu {
    display: block;
    order: 3;
  }
  .p-brand {
    order: 1;
  }
  .p-menu {
    order: 2;
  }
  .p-menu-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
    transition: left 0.3s;
    z-index: 200;
    overflow-y: auto;
  }
  .p-menu-list.active {
    left: 0;
  }
  .p-menu-list li a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray);
  }
  .p-header-right .p-menu-social {
    display: none;
  }
  .swiper-banner .swiper-slide {
    height: 300px;
  }
  .p-cols {
    padding: 50px 0;
  }
  .p-cols__title {
    font-size: 1.2rem;
  }
  .p-block-filiacao__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .p-block-filiacao__action {
    align-items: flex-start;
  }
  .p-block-teaser__title {
    font-size: 1.3rem;
  }
  .p-block-teaser__content {
    bottom: 100px;
    padding-left: 12%;
  }
  .p-block-beneficios__list {
    grid-template-columns: 1fr;
  }
  .p-block-quotes .swiper-slide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .p-block-quotes__content {
    text-align: center;
  }
  .p-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .p-footer__menu-social ul {
    justify-content: flex-start;
  }
  .p-section {
    padding: 50px 0;
  }
  .p-block-cta h2 {
    font-size: 1.4rem;
  }
  .p-stats-icons {
    margin-top: 0;
    z-index: auto;
  }
  .p-stats-icons__grid {
    flex-wrap: wrap;
    border-radius: 8px;
  }
  .p-wrapper {
    margin-top: 0;
  }
  .p-stats-icons__item {
    flex: 1 1 33.33%;
    min-width: 33.33%;
    padding: 18px 8px 14px;
  }
  .p-stats-icons__item:nth-child(3n+1) {
    border-left: none;
  }
  .p-stats-icons__item:nth-child(n+4) {
    border-top: 1px solid #e0e0e0;
  }
  .p-stats-icons__item i {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  .p-stats-icons__item span {
    font-size: 0.75rem;
  }
  .p-stats-numbers {
    padding: 0;
  }
  .p-stats-numbers__grid {
    flex-wrap: wrap;
  }
  .p-stats-numbers__item {
    flex: 1 1 50%;
    min-width: 50%;
    padding: 12px 12px 10px;
    gap: 10px;
  }
  .p-stats-numbers__item:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .p-stats-numbers__item:nth-child(odd):nth-child(n+3) {
    border-left: none;
  }
  .p-stats-numbers__item i {
    font-size: 1.8rem;
  }
  .p-stats-numbers__info strong {
    font-size: 1.3rem;
  }
  .p-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-convenios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-contato {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-footer__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .p-single__featured {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

@media (max-width: 480px) {
  .swiper-banner .swiper-slide {
    height: 250px;
  }
  .p-block-teaser__title {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }
  .p-archive-grid {
    grid-template-columns: 1fr;
  }
  .p-convenios-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== QUEM SOMOS ===== */
.p-quem-somos {
  max-width: 900px;
  margin: 0 auto;
}

.p-qs-section {
  margin-bottom: 60px;
}

.p-qs-section:last-child {
  margin-bottom: 0;
}

.p-qs-section__header {
  margin-bottom: 30px;
}

.p-qs-section__header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  display: inline-block;
}

.p-qs-section__header h2 a {
  color: inherit;
  text-decoration: none;
}

.p-qs-section__desc {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 25px;
  line-height: 1.6;
}

.p-qs-section__body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.2em;
}

/* Diretoria */
.p-qs-diretoria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.p-qs-diretoria__card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.p-qs-diretoria__card:hover {
  transform: translateY(-4px);
}

.p-qs-diretoria__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid var(--red);
}

.p-qs-diretoria__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-qs-diretoria__card h3 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 4px;
}

.p-qs-diretoria__card span {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
}

.p-qs-subtitle {
  font-size: 1.3rem;
  color: var(--red);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.p-qs-subtitle-sm {
  font-size: 1.1rem;
  color: var(--black);
  margin: 30px 0 15px;
}

.p-qs-diretoria + .p-qs-subtitle-sm {
  margin-top: 40px;
}

/* Conquistas */
.p-qs-conquistas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.p-qs-conquistas__item {
  background: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s;
}

.p-qs-conquistas__item:hover {
  transform: translateY(-4px);
}

.p-qs-conquistas__item i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 15px;
}

.p-qs-conquistas__item h3 {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 8px;
}

.p-qs-conquistas__item p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.p-qs-conquistas__item .p-qs-conquistas__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.p-qs-conquistas__item .p-qs-conquistas__link:hover {
  text-decoration: underline;
}

.p-qs-conquistas__thumb {
  width: 100%;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}

.p-qs-conquistas__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-qs-conquistas__footer {
  text-align: center;
  margin-top: 30px;
}

/* Departamentos */
.p-qs-departamentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.p-qs-departamentos__card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.p-qs-departamentos__card:hover {
  transform: translateY(-4px);
}

.p-qs-departamentos__card i {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 12px;
}

.p-qs-departamentos__card h3 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 8px;
}

.p-qs-departamentos__card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.6;
  text-align: left;
}

.p-qs-departamentos__card .p-qs-departamentos__coord,
.p-qs-departamentos__card .p-qs-departamentos__label {
  text-align: center;
}

.p-qs-departamentos__coord {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

.p-qs-departamentos__label {
  display: block;
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
}

/* Eleições */
.p-qs-eleicoes {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.p-qs-eleicoes > p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 25px;
  line-height: 1.6;
}

.p-qs-eleicoes__info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.p-qs-eleicoes__item {
  text-align: center;
}

.p-qs-eleicoes__item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 4px;
}

.p-qs-eleicoes__item span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
}

/* Responsive Quem Somos */
@media (max-width: 992px) {
  .p-qs-diretoria {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-qs-conquistas {
    grid-template-columns: 1fr;
  }
  .p-qs-departamentos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .p-qs-diretoria {
    grid-template-columns: 1fr;
  }
  .p-qs-departamentos {
    grid-template-columns: 1fr;
  }
}

/* ===== FALECIMENTOS ===== */
.p-fal-hero {
  background: var(--black);
  color: var(--white);
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

.p-fal-hero__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.p-fal-hero__icon {
  flex-shrink: 0;
}

.p-fal-hero__image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.p-fal-hero__image img {
  height: 160px;
}

.p-fal-hero__divider {
  width: 2px;
  height: 100px;
  background: var(--red);
  flex-shrink: 0;
}

.p-fal-hero__text {
  text-align: left;
}

.p-candle {
  width: 60px;
  height: 100px;
}

.p-fal-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.p-fal-hero p {
  color: #aaa;
  font-size: 1.05rem;
}

.p-fal-filter {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.p-fal-filter__field {
  flex: 1;
  min-width: 180px;
  position: relative;
}

.p-fal-filter__field i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.85rem;
}

.p-fal-filter__field input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
}

.p-fal-filter .btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
}

.p-fal-filter .btn:hover {
  background: #b01010;
}

.p-fal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0 40px;
}

.p-fal-card {
  background: var(--black);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  position: relative;
  color: var(--white);
}

.p-fal-card__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  color: transparent;
  font-size: 1.2rem;
  -webkit-text-stroke: 1px #555;
  text-stroke: 1px #555;
}

.p-fal-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}

.p-fal-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fal-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.p-fal-card__dates {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.7rem;
  color: #bbb;
  margin-bottom: 8px;
}

.p-fal-card__dates i {
  width: 16px;
  text-align: center;
  margin-right: 4px;
}

.p-fal-card__dates .fa-star {
  color: var(--red);
}

.p-fal-card__dates .fa-cross {
  color: var(--red);
}

.p-fal-card__city {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 12px;
}

.p-fal-card__divider {
  height: 1px;
  background: #444;
  margin-bottom: 12px;
}

.p-fal-card__link {
  display: inline-block;
  color: var(--red);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.p-fal-card__link:hover {
  color: #ff4040;
}

.p-fal-card__link i {
  margin-right: 4px;
}

.p-fal-flower {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 4px;
}

.p-fal-memorial {
  margin: 50px 0;
}

.p-fal-memorial__line {
  border: 1px solid var(--red);
  padding: 15px 20px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  background: #1a1a1a;
  border-radius: 8px;
}

.p-fal-memorial__heart {
  flex-shrink: 0;
}

.p-fal-memorial__heart img {
  width: 28px;
  height: 28px;
}

.p-fal-memorial__line span {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
}

.p-fal-quote {
  text-align: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: var(--red-dark);
  padding: 15px 0;
  border-radius: 0;
}

.p-fal-quote__line {
  display: none;
}

.p-fal-quote blockquote {
  padding: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
}

.p-fal-quote__mark {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 0;
  vertical-align: -0.3em;
}

.template-falecimentos .p-section {
  background: var(--black) !important;
  color: var(--white);
}

.template-falecimentos .p-section h1,
.template-falecimentos .p-section h2,
.template-falecimentos .p-section h3,
.template-falecimentos .p-section p,
.template-falecimentos .p-section span,
.template-falecimentos .p-section a {
  color: var(--white);
}

.template-falecimentos .p-section__subtitle {
  color: var(--white);
}

.template-falecimentos .p-fal-filter__field input {
  background: #1a1a1a;
  color: var(--white);
  border-color: #333;
}

.template-falecimentos .p-fal-filter__field input::placeholder {
  color: #777;
}

.template-falecimentos .p-fal-filter__field i {
  color: #777;
}

.template-falecimentos .p-fal-quote blockquote {
  color: #ccc;
}

.template-falecimentos .pagination .page-numbers {
  color: var(--white);
  border-color: #444;
}

@media (max-width: 768px) {
  .p-fal-filter {
    flex-direction: column;
  }
  .p-fal-filter__field {
    min-width: 100%;
  }
  .p-fal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .p-fal-grid {
    grid-template-columns: 1fr;
  }
  .p-fal-memorial__line {
    flex-direction: column;
    gap: 10px;
  }
}
