:root{
  --green:#27ae60;
  --orange:#f09a1a;
  --blue:#0b86d4;
  --red:#e53935;
}

body {
  margin: 0;
  font-family: "acumin-variable";
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 194.2857;
  color: #222;
}

.accent-bottom {
  height: 6px;
  background: linear-gradient(
    90deg,
    #01A7D5 0%,
    #01A7D5 33.33%,
    #49B969 33.33%,
    #49B969 66.66%,
    #FF8001 66.66%,
    #FF8001 100%
  );
  margin-top: 100px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #fff;
  flex-wrap: wrap;
}
.logo img { height: 150px; }

nav ul {
  list-style: none;
  display: flex;
  gap: 65px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav ul li { position: relative; }
nav ul li a {
  font-size: 26px;
  text-decoration: none;
  font-weight: bold;
  color: #006633;
  position: relative;
  transition: color 0.3s ease;
}
nav ul li a:hover { color: #004d26; }

nav ul li:nth-child(1) a::after,
nav ul li:nth-child(2) a::after,
nav ul li:nth-child(3) a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
}
nav ul li:nth-child(1) a::after { background: #FF8001; }
nav ul li:nth-child(2) a::after { background: #49B969; }
nav ul li:nth-child(3) a::after { background: #01A7D5; }

.banner img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: 50% 10%;
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 100px 10%;
}
.section img {
  width: 600px;
  border-radius: 10px;
}
.section .text { max-width: 600px; }
.section .text h2 {
  font-family: Arial, sans-serif;
  font-size: 40px;
  margin-bottom: 15px;
}
.section .text p {
  font-size: 26px;
  line-height: 1.6;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-footer .container {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 1200px){
  header{ padding: 15px 24px; }
  .logo img { height: 100px; }

  .section .text h2 { font-size: 30px; }
  .section .text p { font-size: 22px; line-height: 1.6; }

  nav ul{ 
    gap: 20px; 
    flex-direction: column; 
    width: 100%;
  }
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; }
  .menu-toggle { display: block; }
  .section{
    flex-direction: column;
    gap: 28px;
    padding: 40px 6%;
  }
  .section img{ width: 100%; max-width: 420px; }
  .banner img{ height: 48vh; min-height: 260px; object-position: 30% 50%; }
}

.events {
  width: 100%;
  background: var(--green);

}

.events-toggle {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 194.2857;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 60px;
  cursor: pointer;
  font-size: 2.6rem;
  width: 100%;
  border: none;
  background: none;
  color: #111;
  border-bottom: 6px solid rgba(255,255,255,0.95);
}


.events-toggle .circle {
   font-family: Arial, sans-serif !important ; 
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  border:2px solid #111; font-size:1.2rem;
  transition: transform .35s ease, background .2s ease;
}
.events-toggle[aria-expanded="true"] .circle{ transform: rotate(180deg); }

.events-panel {
  --panel-max: 0px;
  background: var(--green);
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .35s ease;
  padding: 0; 
}
.events-panel.open {
  max-height: var(--panel-max);
  padding-top: 60px;
  padding-bottom: 60px;
}

.events-panel p {
  font-size: 28px;
  line-height: 1.4;
  text-align: left;
  margin: 18px auto;
  font-weight: 500;
  color: #111;
  max-width: 1400px;   /* largura máxima grande (desktop) */
  padding: 0 72px;     /* espaçamento lateral */
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
  .events-panel p {
    font-size: 24px;
    max-width: 900px;
    padding: 0 40px;
  }
}


@media (max-width: 768px){
  .events-panel.open { padding: 24px; padding-bottom: 50px; }
  .events-panel p { font-size: 20px; margin: 12px 0; padding: 0; }
}

.events-cards {
  display:flex;
  gap:50px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top: 50px;
}
.card {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  width: 600px;
  box-shadow:0 6px 16px rgba(0,0,0,.15);
  transition:transform .3s ease;
}
.card:hover { transform:scale(1.02); }
.card-img { position:relative; }
.card-img img {
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
.card-img .overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,.45);
}
.card .city {
  position:absolute;
  top:20px; left:20px;
  font-size:22px; font-weight:bold; color:#fff;
  text-shadow:1px 1px 6px rgba(0,0,0,.7);
}
.card-info {
  padding: 26px;
  font-size: 20px;
  line-height: 1.9;
  background:#fff;
}
.card-info strong {
  font-family: Arial, sans-serif !important ; 
  display:inline-block;
  min-width:30px;
  color:#000;
}

a {
  color: inherit;       
  text-decoration: none; 
}

a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;       
  text-decoration: none;
}

@media (max-width: 1024px){
  .events-cards { justify-content: space-around; gap: 30px; }
  .card { width: 45%; min-width: 280px; }
  .card-img img { height: 240px; }
}
@media (max-width: 768px){
  .events-cards { flex-direction: column; align-items:center; gap: 24px; }
  .card { width: 100%; max-width: 100%; }
  .card-img img { height:220px; }
}
