@charset "UTF-8";
/*
 Theme Name:   fapese-theme
 Template:     hello-elementor
 author:       João Marques
 Version:      1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap");
body {
  font-family: "Zalando Sans", sans-serif;
  background-color: #FFFFFF;
  color: #1E1E1E;
  margin: 0;
  padding: 0;
}

a {
  color: #1EBC5E;
}

h1, h2, h3, h4 {
  font-family: "Zalando Sans Expanded", sans-serif;
}

input[type=email], input[type=text] {
  border: none !important;
  border-radius: 32px;
}
input[type=email]:focus, input[type=text]:focus {
  border: none;
  outline: none;
}
input[type=checkbox] {
  accent-color: #08D1FF;
}

button,
button:active,
button:focus,
button:focus-visible {
  border: 1px solid #1EBC5E;
  color: #1EBC5E;
  background-color: transparent;
  outline: none;
}
button:hover,
button:active:hover,
button:focus:hover,
button:focus-visible:hover {
  border-color: #1EBC5E;
  background-color: #1EBC5E;
  background-color: transparent;
}

.site-main {
  padding: 32px 0;
}

.post {
  font-weight: 300;
}

.content-area {
  max-width: 1300px;
  margin: 0 auto;
}

.bottom-widgets {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  gap: 24px;
}

.no-thumb {
  background-color: #B8B8B8;
  width: 100%;
  height: 100%;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.post-card {
  display: block;
  text-decoration: none;
  border-radius: 24px;
  background-color: #F1F0F0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card__image {
  width: 100%;
  height: 170px;
  border-radius: 24px 24px 0 0;
  background-color: #B8B8B8;
  background-image: url("./assets/logo_symb.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120px;
  border: 1px solid #08D1FF;
  overflow: hidden;
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card__title {
  padding: 16px;
  position: relative;
}
.post-card__title h2 {
  color: #535353;
  font-family: "Zalando Sans", sans-serif;
  font-size: 1rem;
  line-height: 20px;
  font-weight: 400;
  height: 60px;
  margin: 0 !important;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.post-card__title::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  width: 58%;
  height: 10px;
  background-color: #1EBC5E;
  margin-bottom: 8px;
  border-radius: 0 10px 0 0;
}
.post-card__excerpt p {
  display: none;
  padding: 0 16px 0 16px;
  color: #535353;
  font-size: 0.8rem;
  line-height: 18px;
  height: 36px;
}
.post-card:hover {
  transform: translateY(-4px);
  background-color: #0B31B7;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  color: #FFFFFF;
}
.post-card:hover p, .post-card:hover h2 {
  color: #FFFFFF;
}
.post-card:first-of-type {
  border-bottom-left-radius: 0;
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}
.post-card:first-of-type .post-card__image {
  height: 400px;
}
.post-card:first-of-type .post-card__title h2 {
  font-size: 1.5rem;
  line-height: 28px;
  height: auto;
  font-weight: 500;
  line-clamp: 2;
  -webkit-line-clamp: 3;
}
.post-card:first-of-type .post-card__title::before {
  height: 160px;
  width: 14px;
  border-radius: 14px 0 0 0;
  left: -14px;
  top: -40px;
}
.post-card:first-of-type .post-card__excerpt p {
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-card:nth-child(-n+5) {
  background-color: #08102F;
}
.post-card:nth-child(-n+5) p, .post-card:nth-child(-n+5) h2 {
  color: #FFFFFF;
}
.post-card:nth-child(-n+5):hover {
  background-color: #0B31B7;
  color: #FFFFFF;
}
.post-card:nth-child(-n+5):hover p, .post-card:nth-child(-n+5):hover h2 {
  color: #FFFFFF;
}

.archive-header-filter {
  padding: 40px 0;
  position: relative;
  z-index: 100;
}

.cat-dropdown {
  position: relative;
  display: inline-block;
}
.cat-dropdown__trigger {
  background: none;
  border: none;
  padding: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1E1E1E;
  transition: opacity 0.2s ease;
  background-color: transparent !important;
}
.cat-dropdown__trigger h1 {
  text-wrap: wrap;
  text-align: left;
}
.cat-dropdown__trigger:hover {
  color: #1EBC5E;
  background-color: transparent !important;
}
.cat-dropdown__trigger:active, .cat-dropdown__trigger:focus, .cat-dropdown__trigger:focus-visible {
  outline: none;
  border: none !important;
  background-color: transparent !important;
}
.cat-dropdown__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #1E1E1E;
}
.cat-dropdown__icon {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
  stroke: #1EBC5E;
}
.cat-dropdown__menu {
  position: absolute;
  top: 60%;
  left: 0;
  margin-top: 16px;
  min-width: 260px;
  background-color: #08102F;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cat-dropdown__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cat-dropdown__menu li {
  margin-bottom: 8px;
}
.cat-dropdown__menu li:last-child {
  margin-bottom: 0;
}
.cat-dropdown__menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #FFF;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.cat-dropdown__menu a .count {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}
.cat-dropdown__menu a:hover {
  background-color: rgba(30, 188, 94, 0.2);
  color: #1EBC5E;
}
.cat-dropdown__menu a.active {
  background-color: #1EBC5E;
  color: #FFF;
}
.cat-dropdown__menu a.active .count {
  background: rgba(0, 0, 0, 0.2);
}

.cat-dropdown.is-open .cat-dropdown__icon {
  transform: rotate(180deg);
}
.cat-dropdown.is-open .cat-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#load-more-btn {
  background-color: #1EBC5E;
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-size: 1.4rem;
  font-weight: 400;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}
#load-more-btn:hover {
  background-color: #0B31B7;
}
#load-more-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.page-wrapper {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 32px;
}

.page-header {
  text-align: left;
  margin-bottom: 40px;
}
.page-header .page-title {
  font-size: 3rem;
  color: #1E1E1E;
  font-weight: 700;
}
.page-header .page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #1EBC5E;
  margin: 20px 0;
  border-radius: 2px;
}

.page-featured-image {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1E1E1E;
}
.page-content h2 {
  font-size: 2rem;
  color: #F1F0F0;
  margin-top: 50px;
  margin-bottom: 20px;
}
.page-content p {
  margin-bottom: 24px;
}
.page-content .elementor {
  width: 100%;
}

/* Home Slider - Estrutura Base */
.custom-home-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: unset;
}
.custom-home-slider::before {
  content: "";
  display: block;
  position: absolute;
  height: 148px;
  width: 14px;
  background-color: #1EBC5E;
  border-radius: 14px 0 0 0;
  left: -14px;
  bottom: 20px;
}
.custom-home-slider .swiper-slide {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 20px 0px;
  overflow: hidden;
}

.slide-item {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.slide-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-item__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.slide-item__content {
  position: absolute;
  bottom: 0px;
  z-index: 2;
  background-color: #0888FC;
  height: 148px;
  width: 460px;
  border-radius: 0 20px 0px 0px;
  border: 1px solid #1EBC5E;
  border-bottom: none;
  border-left: none;
  align-content: center;
}
.slide-item__content .content-area {
  padding: 16px 28px;
}
.slide-item__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  max-width: 800px;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.slide-item:hover {
  color: #fff;
}
.slide-item:hover .slide-item__content {
  border-color: #08D1FF;
  background-color: #0B31B7 !important;
}

/* Customização dos Controles do Slider */
.custom-home-slider .swiper-pagination {
  bottom: -16px;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.custom-home-slider .swiper-pagination-bullet {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  border-radius: 2px;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
}
.custom-home-slider .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.6);
}
.custom-home-slider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #1EBC5E;
  width: 0%;
  animation: progressFill 5s linear forwards;
}
.custom-home-slider .swiper-button-next,
.custom-home-slider .swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.custom-home-slider .swiper-button-next:after,
.custom-home-slider .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}
.custom-home-slider .swiper-button-next:hover,
.custom-home-slider .swiper-button-prev:hover {
  background-color: #1EBC5E;
}
@media (max-width: 768px) {
  .custom-home-slider .swiper-button-next,
  .custom-home-slider .swiper-button-prev {
    display: none;
  }
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.swiper {
  overflow: unset;
}

.content-area {
  margin: 0 auto;
  padding: 0 20px;
}

.single-post-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .single-post-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.single-content-wrapper {
  grid-column: span 8;
}
@media (max-width: 1200px) {
  .single-content-wrapper {
    grid-column: span 1;
  }
}

.single-aside {
  grid-column: span 4;
}
@media (max-width: 1200px) {
  .single-aside {
    grid-column: span 1;
  }
}

.recent-posts {
  background-color: #F1F0F0;
  text-align: left;
  border-radius: 16px;
  padding: 24px;
  color: #1E1E1E;
  position: sticky;
  top: 190px;
}
.recent-posts__title {
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-weight: 400;
}
.recent-posts__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recent-posts__item {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.recent-posts__item h4 {
  font-size: 1.05rem;
  font-weight: 300;
  font-family: "Zalando Sans", sans-serif;
}
.recent-posts__item:hover {
  color: #1EBC5E;
}
.recent-posts__item-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
}
.recent-posts__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-posts__item-content {
  flex-grow: 1;
  display: flex;
  align-self: center;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.recent-posts__item-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.single-header-actions {
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
}
.single-header-actions .btn-back {
  display: inline-flex;
  gap: 0px;
  align-items: center;
  font-size: 1.2rem;
  color: #1E1E1E;
  text-decoration: none;
  font-weight: 500;
  transform: translateX(-20px);
}
.single-header-actions .btn-back:hover {
  color: #1EBC5E;
}
.single-header-actions .btn-back__icon {
  width: 40px;
  height: 40px;
  color: #1EBC5E;
  transform: rotate(90deg);
}

.single-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.single-meta .posted-date {
  font-size: 1rem;
  color: #B6B3B3;
}

.single-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  color: #1E1E1E;
  font-weight: 500;
}
@media (max-width: 768px) {
  .single-title {
    font-size: 2rem;
  }
}

.single-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}
.single-subtitle p {
  margin: 0;
}

.single-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1E1E1E;
  font-weight: 300;
}
.single-content p {
  margin-bottom: 24px;
}
.single-content h2, .single-content h3, .single-content h4 {
  color: #F1F0F0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}
.single-content h2 {
  font-size: 1.8rem;
}
.single-content h3 {
  font-size: 1.5rem;
}
.single-content ul, .single-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.single-content ul li, .single-content ol li {
  margin-bottom: 10px;
}
.single-content blockquote {
  font-style: italic;
  font-size: 1.4rem;
  color: #1EBC5E;
  margin: 40px 0;
  text-align: center;
}
.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

.trending-card {
  background-color: #F1F0F0;
  color: #1E1E1E;
  border-radius: 24px;
  padding: 16px 32px;
  width: 100%;
  max-width: 800px;
  min-height: 300px;
}
.trending-card__header {
  font-size: 1.5rem;
  color: #1E1E1E;
  text-align: left;
  letter-spacing: 1px;
}
.trending-card__list {
  display: flex;
  flex-direction: column;
}

.trending-item {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 8px;
  border-bottom: 1px solid #D1d1d1;
}
.trending-item:last-child {
  border-bottom: none;
}
.trending-item:hover .trending-title {
  color: #1EBC5E;
}

.trending-number {
  font-size: 3rem;
  font-weight: 200;
  color: #1EBC5E;
  min-width: 40px;
}

.trending-title {
  color: #1E1E1E;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.2s ease;
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newsletter-card {
  background-color: #1EBC5E;
  color: #FFFFFF;
  background: linear-gradient(180deg, #1EBC5E 0%, #0B31B7 100%);
  border-radius: 24px;
  padding: 16px 32px;
  width: 50%;
}
.newsletter-card__header {
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: 1px;
  font-weight: 900;
}
.newsletter-card__info {
  margin-bottom: 2rem;
}
.newsletter-card__input {
  display: flex;
  background-color: #fff;
  border-radius: 40px;
  height: 64px;
  margin-bottom: 1.4rem;
}
.newsletter-card__input input {
  height: 100%;
  padding-left: 32px;
}
.newsletter-card__input button {
  border: none;
  padding-right: 24px;
}
.newsletter-card__input button:hover {
  color: #1EBC5E;
  text-decoration: underline;
}
.newsletter-card__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.newsletter-card__checkbox a {
  color: #fff !important;
  text-decoration: underline;
}

/* Formulário Nativo */
.contact-form-wrapper {
  margin: 0 auto;
  border-radius: 8px;
}
.contact-form-wrapper .form-group {
  margin-bottom: 20px;
}
.contact-form-wrapper .form-group.d-flex {
  display: flex;
  gap: 20px;
}
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #F1F0F0 !important;
  border-radius: 24px;
  font-size: 1rem;
  background: #F1F0F0;
  transition: border-color 0.3s;
}
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: #1EBC5E !important;
}
.contact-form-wrapper .submit-btn {
  position: absolute;
  bottom: 0px;
  right: 24px;
  background-color: #1EBC5E;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-wrapper .submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.contact-form-wrapper .form-response {
  padding: 10px;
  border-radius: 16px;
  display: none;
  font-size: 0.9rem;
  width: fit-content;
  margin-bottom: 24px;
}
.contact-form-wrapper .form-response.success {
  display: flex;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact-form-wrapper .form-response.error {
  display: flex;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.js-accordion-trigger {
  cursor: pointer;
  transition: all 0.3s ease;
}
.js-accordion-trigger::after {
  content: "";
  position: absolute;
  right: 8%;
  width: 300px;
  height: 40px;
  background-image: url("./assets/accordion_details.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.js-accordion-trigger:hover {
  background-color: #0B31B7 !important;
  background-image: linear-gradient(180deg, #0B31B7 0%, #0B31B7 100%) !important;
}
.js-accordion-trigger:hover h2 {
  color: #FFFFFF !important;
}
.js-accordion-trigger:hover::after {
  height: 30px;
  opacity: 1;
}
.js-accordion-trigger.is-active {
  background-color: #0B31B7 !important;
  background-image: linear-gradient(180deg, #0B31B7 0%, #0B31B7 100%) !important;
}
.js-accordion-trigger.is-active h2 {
  color: #FFFFFF !important;
}
.js-accordion-trigger.is-active::after {
  left: 6%;
  height: 24px;
}

.js-accordion-content {
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-accordion-content.is-open {
  max-height: 3000px;
  opacity: 1;
  margin-top: -16px !important;
  margin-bottom: -16px !important;
}

#galeriaPresidentes.js-accordion-content.is-open {
  margin-bottom: 16px !important;
}

.card-hover:hover {
  background-color: #0B31B7 !important;
  cursor: pointer;
}

.services-hover:hover .e-child {
  background-color: #0B31B7 !important;
  cursor: pointer;
}
.services-hover:hover .txt-content {
  background-color: #0888FC !important;
}

.numbers-hover:hover .circle {
  background-color: #45A7FF !important;
  cursor: pointer;
}
.numbers-hover:hover .circle .elementor-element {
  border-color: #0888FC !important;
  border-width: 3px !important;
}

.elementor-social-icon {
  opacity: 1 !important;
}

/* Wrapper Geral */
.presidentes-gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- SLIDER PRINCIPAL --- */
.swiper-main-pres {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  align-content: center;
}
.swiper-main-pres .pres-card-info {
  padding: 40px 64px;
  height: 384px;
  background-color: #0943B2;
  border-radius: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.swiper-main-pres .pres-card-info .pres-header {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  width: 400px;
}
.swiper-main-pres .pres-card-info .pres-header .pres-mandato {
  font-size: 0.85rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.swiper-main-pres .pres-card-info .pres-header .pres-name {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
}
.swiper-main-pres .pres-card-info .pres-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFFFFF;
  height: 320px;
  overflow-y: auto;
  flex: 1 1 500px;
}
@media (max-width: 768px) {
  .swiper-main-pres .pres-card-layout {
    flex-direction: column;
  }
  .swiper-main-pres .pres-card-image {
    width: 100%;
    height: 300px;
    flex: none;
  }
  .swiper-main-pres .pres-card-info {
    width: 100%;
    padding: 20px;
  }
}

/* --- SLIDER DE THUMBS (Navegação) --- */
.swiper-thumbs-pres {
  height: 220px;
  padding: 10px 48px;
  z-index: 2;
}
.swiper-thumbs-pres .swiper-slide {
  width: 140px;
  height: 100%;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.3s;
}
.swiper-thumbs-pres .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  z-index: 3;
}
.swiper-thumbs-pres .swiper-slide.swiper-slide-thumb-active .thumb-item {
  transform: scale(1.4);
}
.swiper-thumbs-pres .thumb-item {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.swiper-thumbs-pres .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}