.section-title {
  color: #1a5f3a;
}

.contact-info i {
  color: #1a5f3a;
}

.footer-social .social-icon {
  color: #1a5f3a;
}

.footer-social .social-icon:hover {
  color: #007c25;
}

.home-events {
  padding: 4rem 0;
  background: white;
}

.home-events .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.event-card {
  background: #f4fdf6;
  width: 100%;
  max-width: 800px;
  min-height: 180px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(26, 218, 208, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 5px solid #1a5f3a;
  transition: transform 0.2s;
}

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

.event-body {
  padding: 25px;
  flex-grow: 1;
}

.event-footer {
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.03);
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.badge.open {
  background: #dcfce7;
  color: #1a5f3a;
}

.event-title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: #222;
}

.event-info {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

.btn-action {
  display: block;
  text-align: center;
  background: #1a5f3a;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.2s;
}

.btn-action:hover {
  background: #087532;
}

.home-contact {
  padding: 2rem 0;
  justify-content: center;
}

.home-contact .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  width: 100%;
}

.home-contact .contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

.home-contact .contact-text p {
  margin: 0.5rem 0;
}

.home-contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-contact .contact-info p {
  justify-content: center;
}


:root {
    --ifsul-green: #359830;
    --ifsul-green-light: #359830;
    --ifsul-green-dark: #002712;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
}


.hero-section {
    background: linear-gradient(135deg, var(--ifsul-green-dark) 0%, var(--ifsul-green) 50%, var(--ifsul-green-light) 100%);
    min-height: 90vh;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    margin-top : 65px;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 90%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}


.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    /* 1. Ajustes de Tipografia (Você já tinha esses) */
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* 2. Empilhamento na Hero Section */
    .align-items-center {
        flex-direction: column; /* Coloca imagem embaixo do texto */
        text-align: center; /* Centraliza o conteúdo */
    }
    
    .hero-content {
        margin-bottom: 2rem; /* Cria um espaço entre o texto e a imagem */
    }

    .hero-section {
        padding-top: 50px; /* Dá um espaço maior para o header no mobile */
        padding-bottom: 40px;
    }

    /* 3. Ajuste de respiros e margens nas seções de Eventos e Contato */
    .home-events {
        padding: 2rem 1rem; /* Reduz o topo/baixo para 2rem e adiciona 1rem nas laterais */
    }

    .home-events .section-title {
        margin-bottom: 30px; /* Reduz a margem que antes era 60px */
    }

    .event-body {
        padding: 15px; /* Reduz o padding interno do card para caber melhor na tela */
    }

    .home-contact {
        padding: 2rem 1rem; /* Adiciona respiro lateral */
    }
}