﻿/* #region Global Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #2240ff;
  color: #333;
}

a:hover {
  color: #d0d4d7!important;
}

section {
  scroll-margin-top: 80px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* #endregion */

/* #region Header */
.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.header-main-container {
  padding-bottom: 1.5rem;
  position: relative;
  width: 100%;
}

.header-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1150px;
  padding: 2rem 7rem 3rem;
  z-index: 15 !important;
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 1rem 1.5rem 2rem !important;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }
}

.header-logo-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .header-logo-social {
    flex: 1;
    justify-content: space-between;
  }
}

.logo {
  height: 3.5rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .logo {
    height: 2.8rem;
  }
}

.header-social-icons {
  display: none;
}

@media (min-width: 768px) {
  .header-social-icons {
    display: flex;
    gap: 0.5rem;
  }
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #0050ff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  margin-top: -5px;
}

.social-icon:hover {
  background-color: #003ddb;
}

.social-icon > svg {
  width: 1.2rem;
}

.header-actions {
  display: none;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 1024px) {
  .header-actions {
    display: none !important;
  }
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 2px solid #0050ff;
  border-radius: 9999px;
  background: transparent;
  color: #0050ff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.dropdown-toggle:hover {
  background: #0050ff;
  color: white;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  min-width: 160px;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #333;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.mobile-menu-trigger {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-trigger {
    display: none;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-trigger {
    order: 2;
    margin-left: auto;
    margin-top: -0.3rem;
  }
}

.header-shape {
  position: absolute;
  left: 0;
  bottom: -1px; 
  width: 100%;
  line-height: 0;
  z-index: 0;
}

.header-shape svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .header-shape {
    bottom: -2px;
    z-index: 0;
  }

  .header-shape svg {
    height: 70px !important;
  }
}
/* #endregion */

/* #region Header Navigation */
.header-nav {
  height: 1.2rem;
  background-color: #ff007a;
  padding: 1rem 2rem;
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
    padding: 0.6rem 1rem;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: -0.5rem;
}

@media (max-width: 1024px) {
  .nav-container {
    gap: 1.5rem;
  }
}

.nav-link {
  color: white;
  font-size: 0.875rem;
  font-weight: 450;
  text-decoration: none;
  transition: opacity 0.2s;
}

@media (max-width: 1024px) {
  .nav-link {
    font-size: 0.85rem;
    display: inline-block;
  }
}

.nav-link:hover {
  opacity: 0.8;
  color: #1d3ddb;
}
/* #endregion */

/* #region Hero Banner */
.hero-banner {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero-banner {
    flex-direction: column;
    height: 60vh;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 500px;
  }
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: 
    radial-gradient(
      ellipse 100% 150% at 50% -20%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.1) 70%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 80% 120% at 20% -10%,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 80% 120% at 80% -10%,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      transparent 80%
    );
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-banner {
    min-height: 700px;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 10;
  color: #fff;
  padding: 4rem 7rem;
  margin: 0 auto;
  max-width: 1150px;
  margin-top: -5rem; 
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 4rem 1.5rem;
    margin-top: 90px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1.5rem;
    margin-top: 0;
  }
}

.hero-content h1 {
  max-width: 540px;
  font-size: 6.25rem; 
  line-height: 5.5rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 6.25rem;
  }
}

@media (max-width: 1024px) {
  .hero-content h1 {
    margin-top: 5rem;
    width: 90%;
    font-size: 3.5rem;
    line-height: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

.hero-button {
  display: inline-block;
  background-color: #2240ff;
  color: white;
  padding: 2.2rem 5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .hero-button {
    padding: 2rem 1.8rem;
    font-size: 1.95rem;
  }
}

@media (max-width: 768px) {
  .hero-button {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
  }
}

.hero-shape {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -7px;
}

@media (max-width: 1024px) {
  .hero-shape {
    bottom: -9px;
  }
}
/* #endregion */

/* #region WhatsApp Button */
.whatsapp-button {
  display: flex;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  background-color: #25d366;
  color: white;
  padding: 1rem; 
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
.whatsapp-button{
    padding-left:10px;
}
}
/* #endregion */

/* #region Benefícios Section */
.beneficios-section {
  position: relative;
  z-index: 20;
  margin-top: -8rem;
  padding-bottom: 3rem;
  background: transparent; 
}

@media (max-width: 1024px) {
  .beneficios-section {
    margin-top: -10rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .beneficios-section {
    margin-top: -12rem;
    padding-top: 1rem;
  }
}

.beneficios-section::before {
  content: '';
  position: absolute;
  top: 8rem; 
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2240ff;
  z-index: -1;
}

.beneficios-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .beneficios-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.beneficios-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
  flex: 1;
}

@media (max-width: 1024px) {
  .beneficios-cards-grid {
    justify-content: center;
    gap: 1.5rem;
  }
}

.beneficio-card {
  width: 155px;
  height: 18rem;
  padding: 1.5rem 1rem;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  background: #f30e74;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .beneficio-card {
    width: 100%;
    height: auto;
    min-height: 100px;
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 480px) {
  .beneficio-card {
    padding: 1rem 0.8rem;
  }
}

.beneficio-card:hover {
  transform: scale(1.05);
}

.beneficio-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .beneficio-card-content {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }
}

.beneficio-card-content h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .beneficio-card-content h3 {
    text-align: left;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .beneficio-card-content h3 {
    font-size: 1.5rem;
  }
}

.beneficio-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem; 
  border-radius: 1.2rem;
  width: 85px; 
  height: 85px; 
}

@media (max-width: 1024px) {
  .beneficio-icon-wrapper {
    width: 75px; 
    height: 75px; 
    padding: 1.2rem; 
  }
}

@media (max-width: 480px) {
  .beneficio-icon-wrapper {
    width: 60px;
    height: 60px;
    padding: 1rem;
  }
}

.beneficio-icon-wrapper i {
  width: 48px; 
  height: 48px; 
  font-size: 48px; 
}

@media (max-width: 1024px) {
  .beneficio-icon-wrapper i {
    width: 40px; 
    height: 40px;
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .beneficio-icon-wrapper i {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }
}

.beneficio-icon-wrapper svg {
  width: 48px; 
  height: 48px; 
}

@media (max-width: 1024px) {
  .beneficio-icon-wrapper svg {
    width: 40px; 
    height: 40px;
  }
}

@media (max-width: 480px) {
  .beneficio-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }
}

.beneficios-button-wrapper {
  margin-top: 5rem;
  width: 80%;
  text-align: center;
}

@media (max-width: 1024px) {
  .beneficios-button-wrapper {
    margin-top: 2rem;
  }
}

.beneficios-button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 480px) {
  .beneficios-button {
    font-size: 1.3rem;
  }
}
/* #endregion */

/* #region Notícias Section - HOME */
.noticias-section {
  padding: 0rem 0 6.5rem;
  background-color: #2240ff;
  color: white;
}

@media (max-width: 768px) {
  .noticias-section {
    padding: 0rem 0 4rem;
  }
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
  max-width: 450px; 
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
}

.divider {
    height: 2px;
    background-color: white;
    opacity: 0.5;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.noticias-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .noticias-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (min-width: 1024px) {
  .noticias-grid {
    grid-template-rows: 500px;
    grid-template-columns: 2fr 2fr 1fr;
    align-items: stretch;
  }
  
  .noticia-card-grande,
  .noticias-coluna-meio,
  .noticias-lista-direita {
    height: 500px;
  }
}

.noticia-card-grande {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  height: 400px;
}

@media (min-width: 1024px) {
  .noticia-card-grande {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .noticia-card-grande {
    height: 300px;
    border-radius: 1.5rem;
  }
}

.noticia-card-grande img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.noticia-card-grande:hover img {
  transform: scale(1.08);
}

.noticia-card-content {
  height: 10rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  color: #2240ff;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .noticia-card-content {
    height: auto;
    padding: 1rem;
  }
}

.noticia-card-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .noticia-card-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .noticia-card-content h3 {
    font-size: 1rem;
  }
}

.cidade-tag {
  background-color: #2240ff;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
}

@media (max-width: 768px) {
  .cidade-tag {
    font-size: 1rem;
  }
}

.noticias-coluna-meio {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

@media (max-width: 768px) {
  .noticias-coluna-meio {
    gap: 1.5rem;
  }
}

.noticia-card-horizontal {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  background-color: white;
  overflow: hidden;
  color: #2240ff;
  height: auto;
  min-height: 152px;
}

@media (min-width: 768px) {
  .noticia-card-horizontal {
    flex-direction: row;
    height: auto;
  }
}

.noticia-imagem-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 200px;
}

@media (min-width: 768px) {
  .noticia-imagem-wrapper {
    width: 40%;
    height: 100%;
  }
}

.noticia-card-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cidade-tag-small {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #2240ff;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
}

.noticia-card-content-horizontal {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .noticia-card-content-horizontal {
    width: 60%;
  }
}

.categoria-tag {
  background-color: #2240ff;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
  width: fit-content;
}

.noticia-card-content-horizontal h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

@media (min-width: 768px) {
  .noticia-card-content-horizontal h3 {
    font-size: 1.9rem;
  }
}

.noticia-data {
  font-size: 0.7rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

.noticia-data svg {
  width: 1rem;
  height: 1rem;
}

.noticias-lista-direita {
  display: flex;
  flex-direction: column;
}

.noticia-lista-item {
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0;
  color: white;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

@media (min-width: 1024px) {
  .noticia-lista-item {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .noticia-lista-item {
    font-size: 1.2rem;
  }
}

.noticia-lista-item:hover {
  color: #f3016d;
  transform: translateX(4px);
}

.divider-dashed {
  border-bottom: 1px dashed rgba(255, 255, 255, 1);
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.section-button {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .section-button {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .section-button {
    font-size: 1.2rem;
  }
}

.section-button:hover {
  opacity: 0.8;
}
/* #endregion */

/* #region Diretoria Banner Section */
.diretoria-banner-section {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .diretoria-banner-section {
        min-height: 400px;
    }

    .diretoria-text-container {
        padding-bottom: 140px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .diretoria-banner-section {
        min-height: 350px;
    }
}

.diretoria-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: 
        radial-gradient(
            ellipse 100% 150% at 50% -20%,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            transparent 100%
        ),
        radial-gradient(
            ellipse 80% 120% at 20% -10%,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            transparent 80%
        ),
        radial-gradient(
            ellipse 80% 120% at 80% -10%,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            transparent 80%
        );
    z-index: 5;
    pointer-events: none;
}

.diretoria-banner-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.diretoria-banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diretoria-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.diretoria-banner-content {
    width: 100%;
    position: relative;
    z-index: 10;
    color: #fff;
    padding: 4rem 7rem;
    margin: 0 auto;
    max-width: 1150px;
    text-align: end; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 1024px) {
    .diretoria-banner-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
}

.diretoria-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 600px; 
}

.diretoria-banner-content h2 {
    font-size: 8.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-align: left;
    width: 100%;
}

@media (max-width: 1024px) {
    .diretoria-banner-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .diretoria-banner-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

.diretoria-banner-button {
    display: inline-block;
    background-color: #2240ff;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    position: static;
    transform: none;
    align-self: center; 
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .diretoria-banner-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .diretoria-banner-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.diretoria-banner-button:hover {
    background-color: #1b33cc;
    transform: scale(1.05);
}

.diretoria-banner-shape {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -7px;
}
/* #endregion */

/* #region Parceiros Section */
.parceiros-section {
    background-color: #2240ff;
    color: white;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .parceiros-section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .parceiros-section {
        padding: 3rem 0;
    }
}

.parceiros-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .parceiros-section .section-header {
        flex-direction: row;
        text-align: left;
    }
}

.parceiros-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    max-width: 100%;
}

@media (min-width: 768px) {
    .parceiros-section .section-title {
        font-size: 3.5rem;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .parceiros-section .section-title {
        font-size: 2rem;
    }
}

/* Container do carrossel */
.parceiros-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .parceiros-carousel-container {
        gap: 1.5rem;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .parceiros-carousel-container {
        gap: 1rem;
    }
}

/* Grid de parceiros */
.parceiros-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0;
    flex: 1;
}

.parceiros-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Cards de parceiros */
.parceiro-card {
    position: relative;
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid transparent;
}

@media (max-width: 1024px) {
    .parceiro-card {
        width: 160px;
        height: 160px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .parceiro-card {
        width: 140px;
        height: 140px;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .parceiro-card {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }
}

.parceiro-card:hover {
    transform: scale(1.05);
    border-color: #ff007a;
    box-shadow: 0 10px 25px rgba(255, 0, 122, 0.3);
}

.parceiro-logo {
    max-height: 100px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    z-index: 10;
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .parceiro-logo {
        max-height: 90px;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .parceiro-logo {
        max-height: 80px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .parceiro-logo {
        max-height: 70px;
        max-width: 90px;
    }
}

.parceiro-card:hover .parceiro-logo {
    transform: scale(1.1);
}

.parceiro-nome {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 0, 122, 0.9), transparent);
    color: white;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(100%);
}

.parceiro-card:hover .parceiro-nome {
    opacity: 1;
    transform: translateY(0);
}

/* Botões de navegação */
.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff007a;
    border: 2px solid #ff007a;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-button {
        width: 3rem;
        height: 3rem;
    }
}

.nav-button:hover {
    background-color: white;
    color: #ff007a;
    border-color: white;
    transform: scale(1.1);
}

.parceiros-section .section-footer {
    text-align: center;
}

.parceiros-section .section-button {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
    background: transparent;
}

.parceiros-section .section-button:hover {
    color: #ff007a;
    transform: translateY(-2px);
    background: transparent;
}
/* #endregion */

/* #region Buscas Card */
.buscas-card {
  display: none; 
}

@media (min-width: 1024px) {
  .buscas-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: flex-end;
    gap: 1.5rem;
    max-width: 384px;
    margin-top: -12rem;
  }
}

.intranet-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: #2240ff;
  color: white;
  border-radius: 9999px;
  text-decoration: none;
  margin-bottom: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 50px;
  justify-content: center;
}

.principais-buscas {
  background-color: #fff;
  padding-top: 1rem !important;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 240px !important;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.principais-buscas h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2240ff;
  margin-bottom: 1.5rem;
  text-align: center; 
  width: 100%;
}

.busca-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: #2240ff;
  color: white;
  border-radius: 9999px;
  text-decoration: none;
  margin-bottom: 0.75rem;
  width: 100%; 
  box-sizing: border-box;
  min-height: 50px; 
  justify-content: flex-start; 
}

.busca-icon {
  padding: 0.5rem;
  background-color: #2240ff;
  border-radius: 0.5rem;
  flex-shrink: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; 
  height: 40px; 
}
/* #endregion */

/* #region Serviços e Convênios Section */
.servicos-convenios-section {
  background-color: #2240ff;
  color: white;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .servicos-convenios-section {
    padding: 5rem 0;
  }
}

.section-header {
  margin-bottom: 3rem;
  position: relative;
  text-align: left;
  padding-bottom: 10px;
}

.titulo-dividido {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .titulo-dividido {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .titulo-dividido {
    font-size: 4.5rem;
  }
}

.titulo-dividido span {
  display: block;
  white-space: normal;
}

.titulo-dividido .divider-horizontal {
  display: block;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  width: 60%;
  margin: 0.5rem 0;
}

@media (min-width: 768px) {
  .titulo-dividido .divider-horizontal {
    width: 80%;
    margin-left: 10ch;
  }
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8.5rem;
  }
}

/* Cards */
.servico-card {
  background-color: #fff;
  color: #333;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .servico-card {
    padding: 2rem 1.5rem;
    min-height: 180px;
  }
}

@media (min-width: 1024px) {
  .servico-card {
    padding: 2.5rem 2rem;
    min-height: 200px;
  }
}

.servico-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.servico-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .servico-card-content {
    gap: 4.5rem;
  }
}

.servico-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

@media (min-width: 768px) {
  .servico-icon-wrapper {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .servico-icon-wrapper {
    width: 100px;
    height: 100px;
  }
}

.servico-icon-wrapper i {
  font-size: 32px;
  color: #0066ff; 
  -webkit-text-stroke: 1px #0066ff; 
  color: transparent; 
}

@media (min-width: 768px) {
  .servico-icon-wrapper i {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .servico-icon-wrapper i {
    font-size: 48px;
  }
}

.servico-icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: #2240ff;
  stroke-width: 1.5;
}

@media (min-width: 768px) {
  .servico-icon-wrapper svg {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 1024px) {
  .servico-icon-wrapper svg {
    width: 60px;
    height: 60px;
  }
}

.servico-card h3 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #2240ff;
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .servico-card h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .servico-card h3 {
    font-size: 2.5rem;
  }
}

/* Botão Ver todos */
.section-footer {
  text-align: center;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .section-footer {
    margin-top: 10rem;
  }
}

.section-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .section-button {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-button {
    font-size: 1.7rem;
  }
}

.section-button:hover {
  opacity: 0.8;
}

.section-button svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .section-button svg {
    width: 20px;
    height: 20px;
  }
}
/* #endregion */

/* #region Footer */
.footer {
  position: relative;
  background-color: #fff;
  color: #2240ff;
  font-family: "Inter", sans-serif;
}

.footer-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-shape svg {
  display: block;
  width: 100%;
  height: 120px;
}

.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 8rem 6%;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5rem 2rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 45px;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  max-width: 400px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #2240ff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #d6dade;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  color: #2240ff;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #f3016d;
}

.footer-bottom {
  max-width: 1150px;
  margin: 0 auto;
  padding: 2rem 6% 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

.footer-bottom-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .footer-bottom-info {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.footer-bottom-info > div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-bottom-info i {
  color: #2240ff;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #2240ff;
}
/* #endregion */

/* #region Popup Responsivo */
@media (max-width: 768px) {
  .popup .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .popup .modal-content {
    border-radius: 1rem;
  }
  
  .popup .carousel-caption-header {
    font-size: 1.2rem;
  }
  
  .popup .close {
    font-size: 2rem;
    right: 1rem;
    top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .popup .carousel-indicators {
    bottom: -2rem;
  }
  
  .popup .carousel-caption {
    bottom: 1rem;
    padding: 0 1rem;
  }
  
  .popup .carousel-caption-header {
    font-size: 1rem;
  }
}
/* #endregion */

/* #region Conteúdo Dinâmico - Visualização de Conteúdo RESPONSIVA */
.campanha-section {
  padding: 1rem 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .campanha-section {
    padding: 0.5rem 0;
  }
    .container {
        max-width: 90%;
        margin: 0px;
    }
}

.campanha-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .campanha-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.campanha-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2240ff;
  margin: 0;
}

@media (max-width: 768px) {
  .campanha-header h2 {
    font-size: 1.5rem;
    order: 1;
  }
}

.conteudo-social {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .conteudo-social {
    order: 2;
    align-self: flex-end;
    margin-top: -2.5rem;
  }
}

.conteudo-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2240ff;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.3s;
}

.conteudo-social .social-icon:hover {
  background-color: #1b33cc;
}

.divider-black {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .divider-black {
    margin-bottom: 1.5rem;
  }
}

.campanha-article {
  margin-bottom: 2rem;
}

.article-header {
  margin-bottom: 1rem;
}

.article-header span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .article-header span {
    font-size: 0.8rem;
  }
  
  .article-header span span {
    margin: 0 5px;
  }
}

.campanha-article h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .campanha-article h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

.campanha-article h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .campanha-article h2 {
    font-size: 1.2rem;
  }
}

.campanha-imagem {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .campanha-imagem {
    max-height: 300px;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.campanha-conteudo {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .campanha-conteudo {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .campanha-conteudo p {
    margin-bottom: 1rem;
  }
  
  .campanha-conteudo img {
    max-width: 100%;
    height: auto;
  }
  
  .campanha-conteudo table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Vídeo Embed Responsivo */
.video-embed-container {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.video-embed-container iframe {
  width: 100%;
  height: 500px;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .video-embed-container iframe {
    height: 250px;
    border-radius: 0.75rem;
  }
}

/* Galeria de Fotos Responsiva */
.galeria-container {
  margin-bottom: 2rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

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

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 1 / 1;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.galeria-item:hover img {
  transform: scale(1.05);
}

/* Mapa Responsivo */
.mapa-container {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}

.mapa-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .mapa-container {
    border-radius: 0.75rem;
  }
  
  .mapa-container iframe {
    height: 250px;
  }
}

/* Compartilhamento */
.compartilhamento-container {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .compartilhamento-container {
    padding: 1rem 0;
  }
}

/* Conteúdo Vazio */
.conteudo-vazio {
  text-align: center;
  padding: 4rem 2rem;
}

@media (max-width: 768px) {
  .conteudo-vazio {
    padding: 2rem 1rem;
  }
}

.conteudo-vazio-content {
  max-width: 400px;
  margin: 0 auto;
}

.conteudo-vazio-icon {
  width: 4rem;
  height: 4rem;
  color: #ccc;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .conteudo-vazio-icon {
    width: 3rem;
    height: 3rem;
  }
}

.conteudo-vazio h3 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .conteudo-vazio h3 {
    font-size: 1.2rem;
  }
}

.conteudo-vazio p {
  color: #999;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .conteudo-vazio p {
    font-size: 0.9rem;
  }
}

/* Ajustes para conteúdos específicos */
.campanha-article .article-header span i {
  width: 16px;
  height: 16px;
}

/* Eventos - ajuste para data */
@media (max-width: 480px) {
  .campanha-article .article-header span {
    align-items: flex-start;
    gap: 1.25rem;
  }
  
  .campanha-article .article-header span span {
    display: none;
  }
}

/* Melhorias para textos longos em mobile */
.campanha-conteudo {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Ajustes para elementos de formulário dentro do conteúdo */
.campanha-conteudo input,
.campanha-conteudo textarea,
.campanha-conteudo select {
  max-width: 100%;
}

/* Melhorias de acessibilidade para mobile */
@media (max-width: 768px) {
  .campanha-article h1,
  .campanha-article h2 {
    word-wrap: break-word;
  }
  
  .campanha-conteudo a {
    word-break: break-word;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
  .campanha-header h2 {
    font-size: 1.3rem;
  }
  
  .campanha-article h1 {
    font-size: 1.5rem;
  }
  
  .campanha-article h2 {
    font-size: 1.1rem;
  }
  
  .conteudo-social {
    margin-top: -2rem;
  }
  
  .conteudo-social .social-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
  
  .galeria-grid {
    grid-template-columns: 1fr;
  }
}
/* #endregion */

/* #region Conteúdo Dinâmico - Base (mantido para compatibilidade) */
.conteudo-page {
  background-color: #fff;
  min-height: 60vh;
}

.conteudo-section {
  padding: 3rem 0;
}

.conteudo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.conteudo-header h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1c1c1c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.conteudo-header h1 i {
  color: #2240ff;
}

.conteudo-social {
  display: flex;
  gap: 0.75rem;
}

.conteudo-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2240ff;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.3s;
}

.conteudo-social .social-icon:hover {
  background-color: #1b33cc;
}

/* Grid de Conteúdo */
.conteudo-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .conteudo-grid[data-area="noticia"] {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .conteudo-grid:not([data-area="noticia"]) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .conteudo-grid[data-area="noticia"] {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .conteudo-grid:not([data-area="noticia"]) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards de Conteúdo */
.conteudo-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: fit-content;
}

.conteudo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.conteudo-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.conteudo-imagem {
  position: relative;
  overflow: hidden;
}

.conteudo-imagem img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.conteudo-card:hover .conteudo-imagem img {
  transform: scale(1.05);
}

.conteudo-conteudo {
  padding: 1.25rem;
}

.conteudo-data {
  color: #ff007a;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.evento-data {
  color: #ff8300;
}

.conteudo-titulo {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
}

.conteudo-descricao {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.conteudo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2240ff;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.conteudo-link:hover {
  color: #1b33cc;
}

/* Estilos específicos para vídeos */
.video-thumbnail {
  position: relative;
}

.video-embed {
  position: relative;
  height: 200px;
}

.video-embed iframe {
  border-radius: 0.5rem 0.5rem 0 0;
  width: 100%;
  height: 100%;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  padding: 1rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .video-play-overlay {
  opacity: 1;
}

/* Estado vazio */
.conteudo-vazio {
  text-align: center;
  padding: 4rem 2rem;
}

.conteudo-vazio-content {
  max-width: 400px;
  margin: 0 auto;
}

.conteudo-vazio-icon {
  width: 4rem;
  height: 4rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.conteudo-vazio h3 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.conteudo-vazio p {
  color: #999;
}

/* Paginação */
.paginacao-container {
  text-align: center;
  margin-top: 2rem;
}

/* Estilos para parceiros no grid padrão */
.conteudo-grid[data-area="parceiro"] {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.conteudo-card.parceiro-card .conteudo-imagem {
    height: 150px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.conteudo-card.parceiro-card .conteudo-imagem img {
    height: auto;
    max-height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.conteudo-card.parceiro-card .conteudo-conteudo {
    text-align: center;
    padding: 1.5rem;
}

.conteudo-card.parceiro-card .conteudo-titulo {
    color: #2240ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.conteudo-card.parceiro-card .conteudo-descricao {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.conteudo-card.parceiro-card .conteudo-link {
    color: #ff007a;
    font-weight: 600;
    font-size: 1.5rem;
}

.conteudo-card.parceiro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Layout especial para notícias - Base */
.noticias-layout-especial .noticias-grid-topo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 769px) {
    .noticias-layout-especial .noticias-grid-topo {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 600px; 
    }

    .destaque-principal {
        grid-row: 1 / 3;
    }

    .destaque-secundaria {
        height: calc(50% - 0.75rem);
    }
}

.noticia-destaque {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
}

.noticia-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
}

.noticia-data-destaque {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    display: block;
}

.destaque-principal .noticia-overlay h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.destaque-secundaria .noticia-overlay h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

/* Grid regular para notícias restantes */
.noticias-grid-regular {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.noticia-card-regular {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.noticia-card-regular:hover {
    transform: translateY(-5px);
}

.noticia-conteudo-regular {
    padding: 1.5rem;
}

.noticia-data-regular {
    color: #ff007a;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.noticia-titulo-regular {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}
/* #endregion */

/* #region Conteúdo Dinâmico - Responsivo (mantido para compatibilidade) */
@media (max-width: 768px) {
    /* Header da página de conteúdo */
    .conteudo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .conteudo-header h1 {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }

    .conteudo-social {
        align-self: flex-end;
        margin-top: -3rem;
    }

    /* Layout especial para notícias - Mobile */
    .noticias-layout-especial .noticias-grid-topo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .noticia-destaque {
        height: 250px;
        border-radius: 1rem;
    }

    .destaque-principal .noticia-overlay h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .destaque-secundaria .noticia-overlay h3 {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .noticia-overlay {
        padding: 1rem;
    }

    .noticia-data-destaque {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    /* Grid regular para conteúdo */
    .conteudo-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Cards de conteúdo */
    .conteudo-card {
        margin-bottom: 0;
    }

    .conteudo-imagem img {
        height: 180px;
    }

    .conteudo-conteudo {
        padding: 1rem;
    }

    .conteudo-titulo {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .conteudo-descricao {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .conteudo-link {
        font-size: 1.2rem;
    }

    /* Vídeos */
    .video-embed {
        height: 180px;
    }

    .video-embed iframe {
        height: 180px;
    }

    /* Parceiros - Mobile */
    .conteudo-grid[data-area="parceiro"] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .conteudo-card.parceiro-card .conteudo-imagem {
        height: 100px;
        padding: 1rem;
    }

    .conteudo-card.parceiro-card .conteudo-imagem img {
        max-height: 60px;
    }

    .conteudo-card.parceiro-card .conteudo-conteudo {
        padding: 1rem;
    }

    .conteudo-card.parceiro-card .conteudo-titulo {
        font-size: 0.9rem;
    }

    /* Serviços - Mobile */
    .conteudo-grid[data-area="servico"] {
        grid-template-columns: 1fr;
    }

    /* Estados vazios */
    .conteudo-vazio {
        padding: 2rem 1rem;
    }

    .conteudo-vazio h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Ajustes para telas muito pequenas */
    .conteudo-header h1 {
        font-size: 1.3rem;
    }

    .conteudo-social {
        margin-top: -2.5rem;
    }

    .conteudo-social .social-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .noticia-destaque {
        height: 200px;
    }

    .destaque-principal .noticia-overlay h2 {
        font-size: 1.1rem;
    }

    .destaque-secundaria .noticia-overlay h3 {
        font-size: 1rem;
    }

    .conteudo-grid[data-area="parceiro"] {
        grid-template-columns: 1fr;
    }

    .conteudo-imagem img {
        height: 160px;
    }

    .video-embed,
    .video-embed iframe {
        height: 160px;
    }

    .conteudo-titulo {
        font-size: 1rem;
    }

    .conteudo-link {
        font-size: 1.1rem;
    }
}
/* #endregion */