div {
   border-bottom:unset;
}

/* Blog - iepuc na midia */
#blogue img {
   width: 13.7rem;
   height:12.5rem;
}

/* Estilo do slider - carrossel */
.slider-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-item.active {
    opacity: 1;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(66, 146, 157, 0.4); /* #42929d com transparência */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-indicator.active {
    background-color: #D2AB00 !important; /* Dourado para indicador ativo */
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.slider-control.prev {
    left: 15px;
}

.slider-control.next {
    right: 15px;
}

/* footer puc-rio */
.puc-oficial {
  width: 100%;
    height: 100%;
      overflow: hidden;
    border: none;
    flex-grow: 1; /* Ocupa o espaço restante */
}

/* textos de artigos */
.artigo-estilo {
  text-align: justify;
  line-height: 1.75;          /* leading-loose */
  letter-spacing: 0.025em;    /* tracking-wide */
  margin: 0 auto;
  color: #2c3e50;            /* Tom mais escuro harmonizado */
  max-width: 48rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: inherit;       /* Mantém a fonte do projeto */
}

/* Breakpoint para desktop - mais legibilidade */
@media (min-width: 1024px) {
  #artigos {
    font-size: 1.125rem;      /* 18px */
    line-height: 1.8;         /* Leve ajuste para texto maior */
  }
}

/* Classe reutilizável para títulos */
h2.titulo-destaque {
  font-weight: 700;
  line-height: 1.3;
  color: #42929d;            /* Azul-petróleo principal */
  margin: 1.5rem auto 1rem;
  width: 100%;
  font-size: 1.1rem;
  max-width: 48rem;
  border-bottom: 2px solid #D2AB00; /* Linha dourada de destaque */
  padding-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  h2.titulo-destaque {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}

/* Classe para cargos/destaques */
h5.cargo-destaque {
  font-weight: 600;
  line-height: 1.4;
  color: #2c3e50;            /* Tom escuro harmonizado */
  margin: 1.5rem 0 1rem;
  width: 100%;
  font-size: 1.1rem;
  text-align: left;
  max-width: 24rem;
  border-left: 3px solid #D2AB00; /* Borda dourada */
  padding-left: 1rem;
}

@media (min-width: 1024px) {
  h5.cargo-destaque {
    font-size: 1.25rem;
    max-width: 32rem;
  }
}

/* Estilo harmonizado para h3 */
h3.destaque {
    font-weight: 700;
    line-height: 1.4;
    color: #42929d;            /* Azul-petróleo */
    margin: 2rem 0 1rem;
    width: 100%;
    font-size: 1.5rem;
    text-align: left;
    border-bottom: 2px solid rgba(210, 171, 0, 0.3); /* Dourado sutil */
    padding-bottom: 0.5rem;
}

/* Estilo harmonizado para h4 */
h4.destaque {
    font-weight: 650;
    line-height: 1.4;
    color: #2c3e50;            /* Tom escuro harmonizado */
    margin: 1.75rem 0 0.75rem;
    width: 100%;
    font-size: 1.25rem;
    text-align: left;
    border-left: 3px solid rgba(66, 146, 157, 0.5); /* Azul-petróleo sutil */
    padding-left: 0.75rem;
}

/* Melhora a quebra de palavras em textos justificados */
#artigos p {
  word-spacing: -0.05em;
  hyphens: auto;
}

/* cards */
.card {
  display: flex;
  align-items: center;   /* centraliza imagem e texto na vertical */
  gap: 20px;             /* espaço entre imagem e texto */
  max-width: 800px;
  margin: 0 auto;        /* centraliza o bloco na página */
  padding: 1.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(66, 146, 157, 0.05) 0%, rgba(210, 171, 0, 0.05) 100%);
  border: 1px solid rgba(66, 146, 157, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 146, 157, 0.15);
}

.card img {
  width: 200px;
  height: auto;
  border-radius: 10px;   /* cantos arredondados */
  object-fit: cover;
  border: 2px solid rgba(210, 171, 0, 0.2); /* Borda dourada sutil */
}

.texto {
  flex: 1;               /* ocupa o espaço restante */
}

/* Responsivo: empilha em telas pequenas */
@media (max-width: 600px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card img {
    width: 100%;
    max-width: 300px;
  }
}

/* Estatísticas */
.stat-number {
    font-family: 'Arial', sans-serif;
    color: #42929d;        /* Azul-petróleo para números */
    font-weight: 700;
}

.animate-count {
    transition: all 0.5s ease-out;
}

/* Classes utilitárias adicionais para a nova paleta */
.text-primary {
    color: #42929d;
}

.text-accent {
    color: #D2AB00;
}

.bg-primary {
    background-color: #42929d;
}

.bg-accent {
    background-color: #D2AB00;
}

.border-primary {
    border-color: #42929d;
}

.border-accent {
    border-color: #D2AB00;
}

/* Variações de tons para maior flexibilidade */
.text-primary-light {
    color: rgba(66, 146, 157, 0.7);
}

.text-accent-light {
    color: rgba(210, 171, 0, 0.8);
}

.bg-primary-light {
    background-color: rgba(66, 146, 157, 0.1);
}

.bg-accent-light {
    background-color: rgba(210, 171, 0, 0.1);
}

/*Terra dos modais */
 /* Custom gradients for the background effects */
.bg-primary-gradient {
    background: linear-gradient(135deg, #42929d 0%, #5ba3b2 100%);
}
.bg-highlight-gradient {
    background: linear-gradient(135deg, rgba(66, 146, 157, 0.1) 0%, rgba(91, 163, 178, 0.1) 100%);
}
/* Modal overlay backdrop blur effect */
.modal-backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* Smooth transitions for modal states */
.modal-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.modal-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Animation delays for staggered content */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }

/*Seção EQUIPE */
