/*----------------------------------------------------------------*/
/* PÁGINA DE EVENTOS STYLES                      */
/*----------------------------------------------------------------*/

:root {
    --event-primary-color: #0e0c3c;
    --event-accent-color: #4a7ab8;
    --event-bg-light: #f8f9fa;
    --event-timeline-color: #dbe2ef;
  }
  
  #eventos-main {
    background-color: var(--white);
  }
  
  /* Hero Section para Eventos */
  .hero-eventos {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--white);
  }
  
  .hero-eventos h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  
  .hero-eventos p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
  }
  
  .section-eventos {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Seção de Evento em Destaque */
  #evento-destaque {
    background-color: var(--event-bg-light);
  }
  
  .destaque-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .destaque-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  }
  
  .destaque-imagem img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
    margin: 0 auto;
    display: flex;
  }
  
  .destaque-container:hover .destaque-imagem img {
    transform: scale(1.05);
  }
  
  .destaque-info {
    padding: 2rem;
  }
  
  .destaque-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
  }
  
  .destaque-data {
      background-color: #e3eaf3;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.9rem;
  }
  
  .destaque-local i {
    margin-right: 0.5rem;
    color: var(--event-accent-color);
  }
  
  .destaque-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .destaque-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .destaque-cta {
    display: flex;
    gap: 1rem;
  }

  .destaque-cta a{
    padding: 14px 5% !important;
  }

  .destaque-cta a:last-of-type{
    color: var(--accent-color) !important;
  }
  
  /* Linha do Tempo de Eventos */
  .timeline-eventos {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
  }
  
  .timeline-eventos::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--event-timeline-color);
    top: 0;
    bottom: 0;
    left: 30px;
  }
  
  .timeline-item-evento {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 70px;
  }
  
  .timeline-icon-evento {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--event-bg-light);
    z-index: 1;
    transition: transform 0.3s ease;
  }
  
  .timeline-icon-evento i {
    font-size: 1.8rem;
    color: var(--white);
  }
  
  .timeline-item-evento:hover .timeline-icon-evento {
      transform: scale(1.1);
  }
  
  .timeline-content-evento {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: box-shadow 0.3s ease;
  }
  
  .timeline-content-evento:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  
  .timeline-data {
    font-weight: 600;
    color: var(--event-accent-color);
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .timeline-content-evento h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
  }
  
  /* Galeria de Imagens na Timeline */
  .timeline-gallery {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
  }
  
  .timeline-gallery img {
      width: 200px;
      height: fit-content;
      object-fit: cover;
      border-radius: 5px;
      cursor: pointer;
      transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .timeline-gallery img:hover {
      transform: scale(1.1);
      filter: brightness(1.1);
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .destaque-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .hero-eventos h1 {
      font-size: 2.5rem;
    }
    .section-eventos {
      padding: 3rem 5%;
    }
    .destaque-info {
        padding: 1.5rem;
    }
    .destaque-info h3 {
        font-size: 1.8rem;
    }
    .destaque-cta {
        flex-direction: column;
    }
  }
  
  @media (max-width: 576px) {
    .timeline-eventos::before {
      left: 15px;
    }
    .timeline-item-evento {
      padding-left: 45px;
    }
    .timeline-icon-evento {
      width: 30px;
      height: 30px;
      border-width: 3px;
    }
    .timeline-icon-evento i {
      font-size: 1rem;
    }
    .timeline-content-evento {
      padding: 1.5rem;
    }
  }