ol,
ul {
  padding-left: 0rem; /* Espaçamento padrão para listas */
}

h2 {
  color: #0a2a54;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0.2px;
}

/* Customs */

hr.custom-hr {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.back-to-top-btn {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background-color: var(--crc-primary-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.25s ease;
}

.back-to-top-btn:hover,
.back-to-top-btn:focus-visible {
  background-color: var(--crc-primary-navy-strong);
  color: #fff;
}

.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .back-to-top-btn {
    left: 16px;
    bottom: 60px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* --- Estilos do Hero Carousel (Versão Imagem Única) --- */

/* Este container define a proporção do carrossel */
.carousel-aspect-ratio-box {
  position: relative;
  width: 100%;
  /* O "padding-top" define a proporção. 31.25% = altura de 600px */
  padding-top: 31.25%;
}

/* A imagem é posicionada para preencher o container de proporção fixa */
.carousel-aspect-ratio-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem cubra todo o espaço, sem distorcer */
}

/* As customizações dos controles */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  background-color: rgba(255, 255, 255, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
#heroCarousel .carousel-control-prev {
  left: 2rem;
}
#heroCarousel .carousel-control-next {
  right: 2rem;
}

/* --- Customização Fina do Carrossel (Controles e Indicadores) --- */

/* 1. Estilizando os Controles (Setas) */

/* Remove o fundo padrão do Bootstrap dos ícones */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important; /* !important para garantir a sobreposição */
}

/* Estiliza os botões de controle como um todo */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  background-color: rgba(255, 255, 255, 0.2); /* Fundo circular semi-transparente */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  opacity: 1;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Estiliza os ícones de chevron que colocamos no HTML */
#heroCarousel .carousel-control-prev i,
#heroCarousel .carousel-control-next i {
  font-size: 1.5rem;
  color: #292828;
  font-weight: bold;
}

/* 2. Estilizando os Indicadores (Pontos) */

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #292828;
  border: 0;
  margin: 0 5px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  width: 24px;
  height: 12px;
  border-radius: 12px;
  opacity: 1;
  display: inline-block;
  transition:
    width 0.25s ease,
    opacity 0.25s ease;
}

/* --- Estilo para Banner Fixo */

.banner-hero {
  color: #fff;
  position: relative;
  width: 100%;
  /* O "padding-top" define a proporção. 31.25% = altura de 600px */
  padding-top: 31.25%;
  overflow: hidden;
}

.banner-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Preenche o espaço mantendo a proporção */
  object-position: center; /* Centraliza a imagem */
}

/* --- Estilos da Barra de Programas --- */
.program-bar {
  background-color: #fff;
}

.program-logo-wrapper {
  position: relative;
  display: block;
  height: 50px; /* Altura fixa definida */
  margin: 0 auto; /* Centralizar horizontalmente */
  width: 80%; /* Limitar a largura para melhor controle */
}

.program-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Mantém a proporção da imagem */
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s;
  pointer-events: none;
}

.program-logo-default {
  opacity: 1;
  z-index: 1;
}

.program-logo-hover {
  opacity: 0;
  z-index: 2;
}

.program-logo-wrapper:hover .program-logo-default {
  opacity: 0;
}

.program-logo-wrapper:hover .program-logo-hover {
  opacity: 1;
  transform: scale(1.05);
}
/* --- Estilos da Seção "Transforme sua Carreira" --- */

/* Adicionando a cor Laranja às nossas variáveis (se ainda não o fez) */

.transform-career-section {
  position: relative; /* FUNDAMENTAL para o posicionamento das camadas de fundo */
  overflow: hidden;
}

/* Camada 2: A imagem da mulher, aplicada a um pseudo-elemento ::before */
.transform-career-section::before {
  content: '';
  position: absolute;
  bottom: 0; /* Muda de top: 0 para bottom: 0 */
  left: 0;
  width: 35%; /* Ocupa a metade esquerda da seção */
  height: 100%;

  /* A imagem da mulher com fundo transparente */
  background-image: url('/../assets/img/img/background_mulher.png');
  background-repeat: no-repeat;
  background-position: left bottom; /* Alinha no canto inferior esquerdo */
  background-size: contain; /* Garante que ela sempre caiba, sem cortar */

  /* Coloca esta camada atrás do conteúdo (texto/botões) */
  z-index: 0;
}

/* Garante que o conteúdo (texto e botões) fique na frente das camadas de fundo */
.transform-career-section .container {
  position: relative;
  z-index: 1;
}

/* Estilizando o Título Principal */
.main-headline {
  font-size: 4.5rem;
  line-height: 1.2;
}

/* Responsividade do título principal */
@media (max-width: 1199px) {
  .main-headline {
    font-size: 4.5rem;
  }
}

@media (max-width: 991px) {
  .main-headline {
    font-size: 3.8rem;
  }
}

@media (max-width: 767px) {
  .main-headline {
    font-size: 3.2rem;
  }
}

@media (max-width: 575px) {
  .main-headline {
    font-size: 2.8rem;
  }
}

@media (max-width: 420px) {
  .main-headline {
    font-size: 2.5rem;
  }
}

.main-headline .headline-blue {
  color: var(--crc-primary-navy-strong);
  font-weight: bold;
}
.main-headline .headline-orange {
  color: var(--crc-secondary-gold-strong);
  font-weight: bold;
}

/* Estilizando os links secundários  */
.course-links a {
  color: var(--crc-secondary-gold-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-right: 1.5rem;
  font-weight: 500;
}
.course-links a:hover {
  text-decoration: none;
}

.course-links .course-link {
  color: var(--crc-primary-navy-strong);
  text-decoration: none;
  text-underline-offset: 4px;
  margin-right: 1.5rem;
  font-weight: 500;
}

/* Ajustes finos nos botões-pílula (mantém o mesmo) */
.pill-buttons .btn {
  border-color: var(--crc-primary-navy-strong);
  color: var(--crc-primary-navy-strong);
  font-weight: 500;
  background-color: #fff;
  font-size: 0.8rem;
}

@media (min-width: 1400px) {
  .pill-buttons .btn {
    font-size: 1.2rem; /* Aumenta o tamanho da fonte em telas grandes */
  }
}
.pill-buttons .btn:hover {
  background-color: var(--crc-primary-navy-strong);
  color: #fff;
}

.pill-buttons .primary-color {
  border-color: var(--crc-primary-navy);
  color: var(--crc-primary-navy);
}

.pill-buttons .primary-color:hover {
  background-color: var(--crc-primary-navy);
  color: #fff;
}

/* Em telas pequenas, o layout muda para ser mais amigável */
@media (max-width: 991px) {
  .transform-career-section {
    background-image: none; /* Esconde o fundo laranja */
    text-align: center;
  }
  .transform-career-section::before {
    background-image: none; /* Esconde o fundo da mulher */
  }
  .text-content {
    margin-top: 2rem;
  }
  .course-links a {
    display: block;
    margin-bottom: 0.5rem;
  }
}

/* Painel Power BI - 90% da largura */
.container-powerbi {
  width: 90%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .container-powerbi {
    width: 95%;
    max-width: 95%;
  }
}

@media (max-width: 576px) {
  .container-powerbi {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* --- Caixa de Destaque com Fundo Cinza --- */
.info-highlight-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 2.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--crc-primary-navy);
}

.info-highlight-box .lead {
  font-weight: 500;
}

.info-highlight-box .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--crc-primary-navy), var(--crc-secondary-gold));
}

/* Responsividade */
@media (max-width: 768px) {
  .info-highlight-box {
    padding: 1.5rem;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .info-highlight-box {
    padding: 1.25rem;
    margin: 1rem 0;
  }
}

/* --- Estilos para Página de Serviços de Beleza e Estética --- */

.beauty-services-hero {
  position: relative;
  overflow: hidden;
}

.beauty-services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23fff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23fff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23fff"></path></svg>')
    no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.unit-service-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.unit-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.unit-service-card .card-header {
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem 1.5rem;
}

.service-item {
  transition: all 0.3s ease;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
  border-radius: 12px;
}

.service-details .row {
  font-size: 0.95rem;
}

.service-details .alert {
  font-size: 0.9rem;
  border-left: 4px solid currentColor;
}

/* Badges customizados */
.badge.bg-primary-subtle {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
}

/* Input de busca */
#searchUnit {
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
}

#searchUnit:focus {
  border-color: var(--crc-primary-navy);
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.15);
}

/* Animação para cards */
.unit-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.unit-card:nth-child(1) {
  animation-delay: 0.1s;
}
.unit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.unit-card:nth-child(3) {
  animation-delay: 0.3s;
}
.unit-card:nth-child(4) {
  animation-delay: 0.4s;
}
.unit-card:nth-child(5) {
  animation-delay: 0.5s;
}
.unit-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .service-details .row {
    margin-bottom: 0.75rem;
  }

  .service-details .col-sm-4,
  .service-details .col-sm-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-details .col-sm-4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }
}

/* --- Estilos do Formulário SAC --- */
#form-sac {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e0e6ed;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

#form-sac .form-label {
  color: var(--crc-primary-navy-strong);
}

/* Responsividade do formulário */
@media (max-width: 768px) {
  #form-sac {
    padding: 1.75rem;
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  #form-sac {
    padding: 1.25rem;
    border-radius: 10px;
  }
}

/* --- Estilos da Seção de Notícias --- */

#noticias {
  background-color: var(--crc-primary-navy-strong);
  padding: 3rem 0; /* Adicionar padding na seção */
}

/* Ajuste para o container do Swiper */
.news-carousel {
  overflow: hidden; /* Manter hidden para funcionar o swiper */
  margin: -15px; /* Compensar o padding dos slides */
  padding: 15px; /* Espaço para as bordas não serem cortadas */
}

.news-carousel .swiper-wrapper {
  padding: 5px 0; /* Pequeno padding vertical */
}

/* Ajuste para os slides não cortarem as bordas laterais */
.news-carousel .swiper-slide {
  height: auto;
  display: flex;
  padding: 5px; /* Espaço uniforme em todos os lados */
}

.news-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 100%; /* Garante que o card ocupe todo o espaço do slide */
}

.news-card:hover {
  cursor: pointer;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.1),
    0 0 0 4px var(--crc-secondary-gold);
  z-index: 10; /* Garante que a borda fique por cima dos outros cards */
}

/* Container da imagem para o efeito de zoom */
.news-card-img-container {
  overflow: hidden;
}

.news-card .card-body {
  padding: 1.5rem;
}

.news-card .card-title {
  color: var(--crc-primary-navy-strong);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.news-card .card-text {
  color: #6c757d;
  font-size: 0.9rem;
  flex-grow: 1;
}

.news-card .card-link {
  color: var(--crc-secondary-gold);
  font-weight: 700;
  text-decoration: none;
}

.news-card .card-link:hover {
  text-decoration: none;
}

/* Estilo para container de imagem de notícias */
.news-card-img-container {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  overflow: hidden;
  border-bottom: 1px solid #dee2e6;
}

.news-card-img-container img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilo para cards de notícias */
.news-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.news-card .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3em;
}

.news-card .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Estilo para o Swiper de notícias */
.news-carousel {
  position: relative;
  padding: 0 50px;
}

.news-carousel .swiper-button-next,
.news-carousel .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.news-carousel .swiper-button-next:hover,
.news-carousel .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.news-carousel .swiper-button-next::after,
.news-carousel .swiper-button-prev::after {
  font-size: 20px;
}

.news-carousel .swiper-pagination {
  bottom: -10px !important;
}

.news-carousel .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.news-carousel .swiper-pagination-bullet-active {
  background: #ff6b35;
  opacity: 1;
}

/* Estilo para paginação customizado */
.pagination .page-link {
  color: #0056b3;
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
  margin: 0 2px;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #0056b3;
  color: #fff;
  border-color: #0056b3;
}

.pagination .page-item.active .page-link {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
  font-weight: bold;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-dynamic-content ul {
  padding-left: 28px;
}

.page-dynamic-content h2 {
  color: var(--crc-primary-navy-strong);
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Página interna das notícias */

/* Estilos para a página de notícia */
.noticia-header {
  padding: 2rem 0 1rem;
  color: #1c1b1b;
  font-size: 2rem;
}

.noticia-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.noticia-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.noticia-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.noticia-header .breadcrumb-item a:hover {
  color: #fff;
}

.noticia-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.noticia-image-container {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.noticia-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.noticia-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid #dee2e6;
  margin-bottom: 2rem;
}

.noticia-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.95rem;
}

.noticia-meta-item i {
  color: #ff6b35;
}

.noticia-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.noticia-content p {
  margin-bottom: 1.5rem;
}

.noticia-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.noticia-content h2,
.noticia-content h3,
.noticia-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.noticia-share {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.noticia-share h5 {
  margin-bottom: 1rem;
  color: #333;
}

.social-share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.social-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.social-share-btn.facebook {
  background: #1877f2;
}

.social-share-btn.twitter {
  background: #1da1f2;
}

.social-share-btn.whatsapp {
  background: #25d366;
}

.social-share-btn.linkedin {
  background: #0077b5;
}

.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #0056b3;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-voltar:hover {
  background: #003d82;
  color: #fff;
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .noticia-header {
    padding: 2rem 0 1.5rem;
  }

  .noticia-content {
    font-size: 1rem;
  }

  .noticia-meta {
    gap: 1rem;
  }
}

/* --- Ajuste Fino para Altura Igual dos Cards no Carrossel de Notícias --- */

.news-carousel .swiper-slide .card {
  flex-grow: 1;
}

/* Estilos para páginas internas */

#subpage h1 {
  color: var(--crc-primary-navy-strong);
  text-align: start;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

#subpage h2 {
  color: var(--crc-primary-navy-strong);
  text-align: start;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

#subpage p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

#subpage li {
  line-height: 2.5rem;
}

#subpage a {
  color: var(--crc-primary-navy);
  text-decoration: none;
}

#subpage a:hover {
  color: var(--crc-primary-navy-strong);
  text-decoration: none;
}

#toures-numeros h1 {
  color: var(--crc-primary-navy-strong);
  text-align: start;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

#toures-numeros h2 {
  color: var(--crc-primary-navy-strong);
  text-align: start;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

#toures-numeros p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

#toures-numeros li {
  line-height: 2.5rem;
}

/* Estilo para a lista de governança */
.governance-list {
  list-style: none; /* Remove os marcadores padrão */
  padding: 0;
  margin: 0;
}

.governance-list li {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.governance-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--crc-surface-light);
}

.governance-list li i {
  font-size: 1.5rem;
  color: var(--crc-primary-navy);
  margin-right: 1rem;
}

.governance-list li:hover i {
  color: var(--crc-secondary-gold);
}

.governance-list li span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 768px) {
  .video-container {
    margin: 2rem 0;
  }
}

.differentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.differentials-list li {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.differentials-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--crc-surface-light);
}

.differentials-list li span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.5;
}

.differentials-list li i {
  font-size: 1.8rem;
  color: var(--crc-primary-navy);
  margin-right: 1rem;
}

.differentials-list li:hover i {
  color: var(--crc-secondary-gold);
}

/* Estilos para página Missão, Visão e Valores */

/* Cards principais de Missão e Visão */
.mission-vision-card {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 82, 241, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  /* background: linear-gradient(90deg, var(--crc-primary-navy), var(--crc-secondary-gold)); */
}

.values-card::before {
  /* background: linear-gradient(90deg, #4caf50, #009688); */
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card:hover {
  border-color: var(--crc-primary-navy);
}

.vision-card:hover {
  border-color: var(--crc-secondary-gold);
}

.values-card:hover {
  border-color: #4caf50;
  /* background: linear-gradient(135deg, #fff 0%, #f1f8e9 100%); */
}

.card-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  box-shadow: 0 8px 20px rgba(0, 82, 241, 0.3);
}

.vision-card .card-icon-container {
  background: linear-gradient(135deg, var(--crc-secondary-gold), var(--crc-secondary-gold));
  box-shadow: 0 8px 20px rgba(242, 146, 34, 0.3);
}

.values-card .card-icon-container {
  background: linear-gradient(135deg, #4caf50, #009688);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.card-icon-container i {
  font-size: 2rem;
  color: #fff;
}

.mission-vision-card .card-title {
  color: var(--crc-primary-navy-strong);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-vision-card .card-text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Estilo específico para o texto de valores */
.values-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.value-item {
  padding: 5px 10px;
  background-color: rgba(3, 75, 136, 0.1);
  border-left: 3px solid var(--crc-primary-navy);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
}

.value-item:hover {
  background-color: rgba(3, 75, 136, 0.2);
  transform: translateX(5px);
  text-align: center;
  flex-grow: 1;
}

/* Título da seção de valores */
.values-section-title {
  color: var(--crc-primary-navy-strong);
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}

.values-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--crc-primary-navy), var(--crc-secondary-gold));
  border-radius: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
  .mission-vision-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .mission-vision-card .card-title {
    font-size: 1.5rem;
  }

  .values-section-title {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .card-icon-container {
    width: 60px;
    height: 60px;
  }

  .card-icon-container i {
    font-size: 1.5rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .value-icon i {
    font-size: 1.5rem;
  }
}

.lead {
  font-size: 1rem;
  text-align: justify;
}

/* Ajustes páginas internas */

.description-file {
  font-size: 0.8rem !important;
  padding-top: 10px;
}

/* --- Estilos da Seção TourES (Cards de Números) --- */
.stat-card-toures {
  background-color: #f29b00;
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card-toures:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 155, 0, 0.4);
}

.stat-number-toures {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-label-toures {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsividade dos cards TourES */
@media (max-width: 767px) {
  .stat-card-toures {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .stat-number-toures {
    font-size: 2.5rem;
  }

  .stat-label-toures {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .stat-number-toures {
    font-size: 2rem;
  }

  .stat-label-toures {
    font-size: 0.95rem;
  }
}

/* --- Estilos da Página TourES --- */

/* Backgrounds */
.bg-toures {
  background-color: rgb(56, 172, 176);
}

.bg-toures-logos {
  background-color: #95c11f;
}

/* Seção Trade (fundo azul) */
#toures-trade h2 {
  color: white;
  margin-bottom: 1.5rem;
}

#toures-trade p {
  color: white;
}

.toures-subtitle-spacing {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

/* Seção Oferta Educacional */
#toures-oferta {
  background-color: #ffffff;
}

.toures-oferta-text {
  color: black;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.toures-oferta-text a {
  color: var(--crc-primary-navy);
  text-decoration: none;
  font-weight: 800;
}

.toures-text-bold {
  font-weight: 900;
}

.toures-hoteis-title {
  color: black;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.toures-hoteis-list {
  list-style: none;
  padding: 0;
  text-align: center;
  color: black;
  font-size: 1.2rem;
  line-height: 2rem;
  text-transform: uppercase;
  font-weight: 800;
}

.toures-hoteis-list li {
  margin-bottom: 0.5rem;
}

.toures-hoteis-list a {
  color: var(--crc-primary-navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

.toures-hoteis-list a:hover {
  color: var(--crc-secondary-gold);
  text-decoration: none;
}

/* Botão Cadastrar Interesse - Design Moderno */
.btn-toures-cadastrar {
  background: linear-gradient(135deg, #d65e08 0%, #e67528 100%);

  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 1rem 3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(214, 94, 8, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  text-decoration: none;
}

.btn-toures-cadastrar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #38acb0 0%, #2a8a8d 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-toures-cadastrar:hover::before {
  left: 0;
}

.btn-toures-cadastrar:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(56, 172, 176, 0.4);
  border-color: #d65e08;
}

.btn-toures-cadastrar:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(214, 94, 8, 0.3);
}

/* Responsividade TourES */
@media (max-width: 768px) {
  .toures-oferta-text,
  .toures-hoteis-title {
    font-size: 1.2rem;
  }

  .toures-hoteis-list {
    font-size: 1rem;
    line-height: 1.8rem;
  }

  .btn-toures-cadastrar {
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
  }
}

@media (max-width: 576px) {
  .toures-oferta-text,
  .toures-hoteis-title {
    font-size: 1rem;
  }

  .toures-hoteis-list {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }

  .btn-toures-cadastrar {
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
  }
}

/* ========================================
   Seção de Vídeo - Metodologia
   ======================================== */
.video-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 80, 152, 0.05) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.video-frame-wrapper {
  position: relative;
  z-index: 1;
}

.video-section-title {
  color: var(--crc-primary-navy-strong);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.video-section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 400;
}

.video-frame {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container-custom {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay de Play */
.video-controls-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.video-controls-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Barra de Controles */
.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px 15px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.video-container-custom:hover .video-controls-bar {
  opacity: 1;
}

.video-progress-container {
  margin-bottom: 10px;
}

.video-progress-bar {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.video-progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--crc-primary-navy);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.video-progress-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--crc-primary-navy);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.video-controls-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.control-btn:hover {
  color: var(--crc-secondary-gold);
}

.video-time {
  color: #fff;
  font-size: 0.9rem;
  margin-left: auto;
  margin-right: 10px;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-bar {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.volume-bar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Frame Decorativo */
.video-frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: var(--crc-primary-navy);
}

.video-frame-corner.top-left {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
  border-radius: 20px 0 0 0;
}

.video-frame-corner.top-right {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
  border-radius: 0 20px 0 0;
}

.video-frame-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 20px;
}

.video-frame-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 20px 0;
}

/* Responsividade - Video Section */
@media (max-width: 768px) {
  .video-section-title {
    font-size: 1.5rem;
  }

  .video-section-subtitle {
    font-size: 1rem;
  }

  .video-frame {
    padding: 12px;
  }

  .volume-control {
    display: none;
  }

  .video-play-btn svg {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .video-frame-corner {
    width: 25px;
    height: 25px;
  }

  .video-controls-bar {
    padding: 15px 10px 8px;
  }
}

/* ========================================
   Cards de Unidades - Nossas Unidades
   ======================================== */
.unit-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* border: 1px solid #e9ecef; */
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 80, 152, 0.15);
  border-color: var(--crc-primary-navy);
}

.unit-card-header {
  background: linear-gradient(
    135deg,
    var(--crc-primary-navy) 0%,
    var(--crc-primary-navy-strong) 100%
  );
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.unit-card-header i {
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.unit-card-header h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.3;
}

.unit-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.unit-address,
.unit-contact {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  display: flex;
  gap: 10px;
}

.unit-address i,
.unit-contact i {
  color: var(--crc-secondary-gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.unit-contact a {
  color: var(--crc-primary-navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.unit-contact a:hover {
  color: var(--crc-primary-navy-strong);
  text-decoration: underline;
}

/* Responsividade - Cards de Unidades */
@media (max-width: 768px) {
  .unit-card-header {
    padding: 1.2rem;
  }

  .unit-card-header h3 {
    font-size: 1rem;
  }

  .unit-card-body {
    padding: 1.2rem;
  }

  .unit-address,
  .unit-contact {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .unit-card-header i {
    font-size: 1.2rem;
  }

  .unit-card-header h3 {
    font-size: 0.95rem;
  }
}

/* ========================================
   Cards de Comunicação - Ouvidoria
   ======================================== */
.communication-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.communication-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--crc-primary-navy), var(--crc-secondary-gold));
}

.communication-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 80, 152, 0.2);
}

.communication-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.communication-card-icon i {
  font-size: 4rem;
  color: var(--crc-primary-navy);
  transition: transform 0.3s ease;
}

.communication-card:hover .communication-card-icon i {
  transform: scale(1.1);
}

.communication-card-header {
  padding: 1.5rem 2rem 1rem;
  text-align: center;
}

.communication-card-header h2 {
  color: var(--crc-primary-navy-strong);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.communication-card-body {
  padding: 1rem 2rem;
  flex-grow: 1;
}

.communication-card-body p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.communication-card-body .card-highlight {
  font-weight: 600;
  color: var(--crc-primary-navy-strong);
}

.communication-card-body .card-objective {
  font-style: italic;
  color: #6c757d;
  font-size: 0.9rem;
}

.communication-card-footer {
  padding: 1.5rem 2rem 2rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.communication-card-footer h3 {
  color: var(--crc-primary-navy-strong);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.contact-item i {
  color: var(--crc-secondary-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-item a {
  color: var(--crc-primary-navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--crc-primary-navy-strong);
  text-decoration: underline;
}

.btn-communication {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-communication.btn-primary {
  color: #ffffff !important;
}

.btn-communication.btn-primary:hover {
  background-color: #003db8 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-communication.btn-danger {
  color: #ffffff !important;
}

.btn-communication:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cores específicas dos cards */
.communication-card.fale-conosco .communication-card-icon i {
  color: var(--crc-primary-navy);
}

.communication-card.ouvidoria .communication-card-icon i {
  color: #f29222;
}

.communication-card.canal-denuncias .communication-card-icon i {
  color: #dc3545;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 80, 152, 0.1);
}

.info-box-icon {
  flex-shrink: 0;
}

.info-box-icon i {
  font-size: 3rem;
  color: var(--crc-primary-navy);
}

.info-box-content h3 {
  color: var(--crc-primary-navy-strong);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.info-box-content p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Alert customizado */
.communication-card .alert {
  border-radius: 8px;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.communication-card .alert-danger {
  background: #fff5f5;
  color: #dc3545;
}

/* Responsividade - Cards de Comunicação */
@media (max-width: 992px) {
  .communication-card-icon i {
    font-size: 3rem;
  }

  .communication-card-header h2 {
    font-size: 1.25rem;
  }

  .communication-card-body,
  .communication-card-footer {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .communication-card-icon {
    padding: 1.5rem 0 0.75rem;
  }

  .communication-card-icon i {
    font-size: 2.5rem;
  }

  .communication-card-header h2 {
    font-size: 1.1rem;
  }

  .info-box {
    flex-direction: column;
    text-align: center;
  }

  .info-box-icon i {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .btn-communication {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }
}

/* --- Estilos para Política de Privacidade e Dados --- */

/* Caixa Introdutória */
.privacy-intro-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  box-shadow: 0 4px 20px rgba(0, 80, 152, 0.1);
  border-left: 5px solid var(--crc-primary-navy);
}

.privacy-intro-icon {
  flex-shrink: 0;
}

.privacy-intro-icon i {
  font-size: 4rem;
  color: var(--crc-primary-navy);
}

.privacy-intro-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-intro-content p:last-child {
  margin-bottom: 0;
}

/* Sumário Navegável */
.privacy-summary {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--crc-primary-navy);
}

.privacy-summary-title {
  color: var(--crc-primary-navy-strong);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.privacy-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-nav-list > li {
  margin-bottom: 0.75rem;
}

.privacy-nav-list a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.privacy-nav-list a:hover,
.privacy-nav-list a.active {
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  color: #fff !important;
  transform: translateX(5px);
}

.privacy-nav-list a i {
  margin-right: 0.5rem;
}

/* Subnav */
.privacy-subnav {
  list-style: none;
  padding-left: 2.5rem;
  margin-top: 0.5rem;
}

.privacy-subnav li {
  margin-bottom: 0.5rem;
}

.privacy-subnav a {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
}

/* Seções */
.privacy-section {
  padding: 3rem 0;
  border-bottom: 2px solid #e9ecef;
  scroll-margin-top: 100px;
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section-title {
  color: var(--crc-primary-navy-strong);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--crc-secondary-gold);
  display: inline-block;
}

.privacy-section-main {
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Subseções */
.privacy-subsection {
  margin-top: 2.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-subsection-title {
  color: var(--crc-primary-navy);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.privacy-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Grid de Definições */
.definitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.definition-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--crc-secondary-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.definition-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 80, 152, 0.15);
}

.definition-item h4 {
  color: var(--crc-primary-navy-strong);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.definition-item h4 i {
  color: var(--crc-secondary-gold);
}

.definition-item p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Acordeões Customizados */
.finalidade-accordion .accordion-button {
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  color: #fff;
  font-weight: 600;
}

.finalidade-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--crc-primary-navy-strong), var(--crc-primary-navy));
}

.finalidade-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

/* Listas */
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.privacy-list li {
  padding: 0.75rem 0;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.privacy-list li i {
  color: var(--crc-secondary-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Grid de Direitos */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.right-item {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.right-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 80, 152, 0.2);
}

.right-item i {
  color: var(--crc-primary-navy);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.right-item p {
  margin: 0;
  font-weight: 500;
  color: var(--crc-primary-navy-strong) !important;
  text-align: left !important;
}

/* Medidas de Segurança */
.security-measures {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.security-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--crc-primary-navy);
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 80, 152, 0.15);
}

.security-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon i {
  color: #fff;
  font-size: 1.8rem;
}

.security-content h5 {
  color: var(--crc-primary-navy-strong);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.security-content p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  text-align: left;
}

/* Cards de Tipos de Cookies */
.cookies-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.cookie-type-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--crc-secondary-gold);
}

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

.cookie-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cookie-icon i {
  color: #fff;
  font-size: 2rem;
}

.cookie-type-card h4 {
  color: var(--crc-primary-navy-strong);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cookie-type-card p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Caixa de Contato */
.privacy-contact {
  padding: 3rem 0;
}

.contact-box {
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  box-shadow: 0 8px 30px rgba(0, 80, 152, 0.3);
}

.contact-box .contact-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box .contact-icon i {
  color: #fff;
  font-size: 2.5rem;
}

.contact-box .contact-content h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-box .contact-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.8 !important;
  margin-bottom: 1rem !important;
  text-align: left !important;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
}

.contact-info p {
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: var(--crc-secondary-gold) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.contact-info hr {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 1rem 0;
}

/* Critérios de Retenção */
.retention-criteria {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--crc-primary-navy);
}

.retention-criteria h4 {
  color: var(--crc-primary-navy-strong);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.retention-criteria h4 i {
  color: var(--crc-secondary-gold);
  font-size: 1.5rem;
}

/* Configurações de Navegador */
.browser-settings h4 {
  color: var(--crc-primary-navy-strong);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.browser-settings .accordion-button {
  font-weight: 600;
  color: var(--crc-primary-navy-strong);
}

.browser-settings .accordion-body ol {
  padding-left: 1.5rem;
  margin: 0;
}

.browser-settings .accordion-body ol li {
  padding: 0.5rem 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 992px) {
  .privacy-intro-box {
    flex-direction: column;
    text-align: center;
  }

  .privacy-intro-icon i {
    font-size: 3rem;
  }

  .definitions-grid {
    grid-template-columns: 1fr;
  }

  .cookies-types {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .privacy-section-title {
    font-size: 1.5rem;
  }

  .privacy-subsection-title {
    font-size: 1.2rem;
  }

  .privacy-subsection {
    padding: 1.5rem;
  }

  .security-item {
    flex-direction: column;
    text-align: center;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    padding: 1.5rem;
  }

  .privacy-subnav {
    padding-left: 1.5rem;
  }
}

@media (max-width: 576px) {
  .privacy-intro-box {
    padding: 1.5rem;
  }

  .contact-box {
    padding: 2rem;
  }

  .cookie-type-card {
    padding: 1.5rem;
  }
}

/* --- Estilos para Página Trabalhe Conosco --- */

/* Hero Box */
.career-hero-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  box-shadow: 0 8px 30px rgba(0, 80, 152, 0.15);
  border-left: 5px solid var(--crc-primary-navy);
}

.career-hero-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 80, 152, 0.3);
}

.career-hero-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.career-hero-content h2 {
  color: var(--crc-primary-navy-strong);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.career-hero-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.career-hero-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--crc-primary-navy);
}

.career-highlight {
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--crc-secondary-gold);
}

/* Seções de Carreira */
.career-section {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--crc-primary-navy);
}

.career-section.career-purpose {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  border-top-color: var(--crc-secondary-gold);
}

.career-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.career-section-header i {
  font-size: 2.5rem;
  color: var(--crc-primary-navy);
}

.career-section.career-purpose .career-section-header i {
  color: var(--crc-secondary-gold);
}

.career-section-header h2 {
  color: var(--crc-primary-navy-strong);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.career-section-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

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

/* Grid MVV (Missão, Visão, Valores) */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mvv-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid;
}

.mvv-card.missao {
  border-top-color: var(--crc-primary-navy);
}

.mvv-card.visao {
  border-top-color: var(--crc-secondary-gold);
}

.mvv-card.valores {
  border-top-color: #00c853;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 80, 152, 0.2);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-card.missao .mvv-icon {
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
}

.mvv-card.visao .mvv-icon {
  background: linear-gradient(135deg, var(--crc-secondary-gold), #ff6f00);
}

.mvv-card.valores .mvv-icon {
  background: linear-gradient(135deg, #00c853, #00897b);
}

.mvv-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.mvv-card h3 {
  color: var(--crc-primary-navy-strong);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.mvv-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Lista de Valores */
.valores-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: left;
}

.valores-list li {
  padding: 0.75rem 0;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.valores-list li i {
  color: #00c853;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Call to Action */
.career-cta {
  background: linear-gradient(135deg, var(--crc-primary-navy), var(--crc-primary-navy-strong));
  border-radius: 16px;
  padding: 3rem;
  color: #fff !important;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 80, 152, 0.3);
}

.career-cta-content h2 {
  color: #fff !important;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.career-cta-content p {
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.career-cta-highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

/* Responsividade */
@media (max-width: 992px) {
  .career-hero-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .career-hero-content h2 {
    font-size: 1.75rem;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .career-section-header {
    flex-direction: column;
    text-align: center;
  }

  .career-section-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .career-hero-box {
    padding: 1.5rem;
  }

  .career-hero-icon {
    width: 60px;
    height: 60px;
  }

  .career-hero-icon i {
    font-size: 2rem;
  }

  .career-section {
    padding: 1.5rem;
  }

  .mvv-card {
    padding: 2rem;
  }

  .career-cta {
    padding: 2rem;
  }

  .career-cta-content h2 {
    font-size: 1.5rem;
  }

  .career-cta-buttons {
    flex-direction: column;
  }

  .btn-career {
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .career-hero-content h2 {
    font-size: 1.5rem;
  }

  .mvv-icon {
    width: 60px;
    height: 60px;
  }

  .mvv-icon i {
    font-size: 2rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }
}

/* --- Estilos da Seção de Galeria --- */

#areas-conhecimento .gallery-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Sombra inicial sutil */
  overflow: hidden; /* Garante que a imagem se ajuste ao border-radius */
  transition: all 0.3s ease-in-out;
  color: var(--crc-primary-navy-strong); /* Cor padrão do texto */
  border: 1px solid #e0e0e0; /* Borda leve para destacar o card */
  min-height: 300px;
}

#areas-conhecimento .gallery-card:hover {
  transform: translateY(-8px); /* Eleva o card */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Sombra mais pronunciada no hover */
}

.gallery-img-container {
  height: 200px; /* Altura fixa para as imagens */
  overflow: hidden;
  display: flex; /* Para centralizar a imagem */
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem preencha o container sem distorcer */
  transition: transform 0.3s ease-in-out;
}

#areas-conhecimento .gallery-card:hover .gallery-img-container img {
  transform: scale(1.05); /* Leve zoom na imagem no hover */
}

.gallery-title {
  font-size: 1rem;
  padding: 1rem;
}

/* Galeria de Fotos */

.gallery-album-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-album-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-album-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-album-card:hover .gallery-album-img {
  transform: scale(1.1);
}

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

.gallery-album-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-album-info {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gallery-filter-tabs {
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 2rem;
}

.gallery-filter-tab {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  color: #666;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.gallery-filter-tab:hover {
  color: var(--crc-primary-navy-strong);
}

.gallery-filter-tab.active {
  color: var(--crc-primary-navy-strong);
}

.gallery-filter-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--crc-primary-navy-strong);
}

.gallery-search-box {
  max-width: 500px;
  margin: 0 auto 3rem;
}

.album-count-badge {
  background-color: var(--crc-primary-navy-strong);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #999;
}

.loading-spinner {
  text-align: center;
  padding: 3rem;
}

/* Página de visualização de galeria */

.album-header {
  background: linear-gradient(
    135deg,
    var(--crc-primary-navy-strong) 0%,
    var(--crc-primary-navy) 100%
  );
  color: white;
  padding: 3rem 0 2rem;
  margin-bottom: 2rem;
}

.album-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.album-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1rem;
  opacity: 0.95;
}

.album-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.album-meta-item i {
  font-size: 1.2rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay i {
  font-size: 2.5rem;
  color: white;
}

.btn-back {
  background-color: #6c757d;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid #6c757d;
}

.btn-back:hover {
  background-color: #5a6268;
  border-color: #5a6268;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-download-all {
  background-color: var(--crc-primary-navy);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid var(--crc-primary-navy);
}

.btn-download-all:hover {
  background-color: #0041c2;
  border-color: #0041c2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 241, 0.3);
}

.album-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.album-description {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--crc-primary-navy);
}

.photo-counter {
  background: var(--crc-secondary-gold-strong);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Customização do Lightbox */
.lb-data .lb-caption {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.lb-data .lb-number {
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
  .album-title {
    font-size: 1.5rem;
  }

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

  .album-meta {
    gap: 1rem;
  }

  .album-actions {
    flex-direction: column;
  }

  .btn-back,
  .btn-download-all {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .album-header {
    padding: 2rem 0 1.5rem;
  }
}

/* Convenios */

.convenio-logo-container {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 20px;
  border-bottom: 1px solid #dee2e6;
}

.convenio-logo-container img {
  max-height: 100px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.convenio-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.convenio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.convenio-card:hover .convenio-logo-container img {
  transform: scale(1.05);
}

/* ========================================
   Responsividade do Google reCAPTCHA
   ======================================== */

.g-recaptcha {
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

/* Telas pequenas (smartphones) */
@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
  }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
  .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
  }
}

/* Telas extra pequenas */
@media (max-width: 320px) {
  .g-recaptcha {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
}

/* ========================================
   Newsletter Sidebar Card + Top 5 Notícias
   ======================================== */

/* Newsletter Sidebar Card */
.newsletter-sidebar-card {
  background: var(--crc-primary-navy-strong);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 82, 241, 0.2);
  color: white;
}

.newsletter-sidebar-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-sidebar-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-sidebar-form .form-control {
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.newsletter-sidebar-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-sidebar-form .form-check {
  font-size: 0.85rem;
}

.newsletter-sidebar-form .form-check-input {
  border: 2px solid white;
  background-color: transparent;
}

.newsletter-sidebar-form .form-check-input:checked {
  background-color: white;
  border-color: white;
}

.newsletter-sidebar-form .form-check-input:checked[type='checkbox'] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%230052f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.newsletter-lgpd-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
}

.newsletter-lgpd-label a {
  color: white;
  text-decoration: underline;
}

.newsletter-lgpd-label a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.btn-newsletter {
  background: white;
  color: var(--crc-primary-navy);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--crc-primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Top 5 Mais Lidas Card */
.top-lidas-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.top-lidas-title {
  color: var(--crc-primary-navy-strong);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.top-lidas-title i {
  color: var(--crc-secondary-gold);
  font-size: 1.3rem;
}

.top-lidas-list {
  display: flex;
  flex-direction: column;
}

.top-lidas-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.top-lidas-item:hover {
  background: #f8f9fa;
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: 8px;
}

.top-lidas-item.border-bottom {
  border-bottom: 1px solid #e9ecef;
}

.top-lidas-thumbnail {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.top-lidas-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-lidas-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--crc-secondary-gold);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.top-lidas-content {
  flex: 1;
  min-width: 0;
}

.top-lidas-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--crc-primary-navy-strong);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-lidas-item:hover .top-lidas-item-title {
  color: var(--crc-secondary-gold);
}

.top-lidas-meta {
  color: #6c757d;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-lidas-meta i {
  color: var(--crc-secondary-gold);
}

/* Gallery Section in News Detail */
.gallery-section {
  padding: 2rem 0;
  border-top: 2px solid #e9ecef;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-title {
  color: var(--crc-primary-navy-strong);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
}

.gallery-title i {
  color: var(--crc-secondary-gold);
}

/* Responsividade Newsletter + Top 5 */
@media (max-width: 991px) {
  .newsletter-sidebar-card,
  .top-lidas-card {
    margin-top: 3rem;
  }

  .gallery-section {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .newsletter-sidebar-card {
    padding: 1.5rem;
  }

  .newsletter-sidebar-title {
    font-size: 1.1rem;
  }

  .top-lidas-thumbnail {
    width: 60px;
    height: 60px;
  }

  .top-lidas-item-title {
    font-size: 0.9rem;
  }

  .top-lidas-badge {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-title {
    font-size: 1.3rem;
  }

  .photo-counter {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}
