*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
 
body{
  font-family:'Outfit',sans-serif;
  background:#f5f2eb;
  color:#102131;
  overflow-x:hidden;
}

/* HEADER */

.header{ 
  width:100%;
  height:110px;

  padding:0 70px; 

  display:flex;
  align-items:center;
  justify-content:center;

  position:fixed;
  top:0;
  left:0;
  z-index:1000;

  background:rgba(245,242,235,0.85);

  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(0,0,0,0.05);
}

.logo{
  position:absolute;
  left:55px;
}

.logo img{
  height:88px;
}

.menu{
  display:flex;
  gap:70px;
}

.menu a{
  text-decoration:none;

  color:#102131;

  font-size:1.08rem;
  font-weight:500;

  letter-spacing:0.3px;

  position:relative;

  transition:0.3s ease;
}

/* linha */
.menu a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#d6ab45;

  border-radius:20px;

  transition:0.35s ease;
}

.menu a:hover{
  color:#d6ab45;
}

.menu a:hover::after{
  width:100%;
}

.menu a.active{
  color:#d6ab45;
}

.menu a.active::after{
  width:100%;
}

/* HERO */

.agenda-hero{
  padding-top:240px;
  padding-bottom:110px;

  background:
  linear-gradient(
    180deg,
    #f5f2eb 0%,
    #f1ede4 100%
  );
}

.hero-content{
  width:min(1280px,88%);
  margin:auto;
}

.hero-mini{
  display:block;

  margin-bottom:35px;

  color:#d6ab45;

  letter-spacing:7px;
  font-size:0.9rem;
}

.hero-content h1{
  font-size:6rem;
  line-height:0.95;

  font-weight:800;

  letter-spacing:-4px;
}

.hero-content p{
  margin-top:45px;

  max-width:850px;

  font-size:1.35rem;
  line-height:1.8;

  color:#29465f;
}

/* CALENDÁRIO */

.calendario-section{
  width:min(1280px,90%);
  margin:auto;

  margin-bottom:70px;
}

.dias-scroll{
  display:flex;
  gap:18px;

  overflow-x:auto;
}

.dia{
  min-width:110px;

  border:none;

  background:#ebe6dd;

  border-radius:28px;

  padding:22px;

  font-family:'Outfit',sans-serif;

  font-size:2rem;
  font-weight:700;

  color:#102131;

  cursor:pointer;

  transition:0.3s;
}

.dia span{
  display:block;

  margin-top:8px;

  font-size:0.95rem;
  letter-spacing:2px;
}

.dia:hover{
  transform:translateY(-3px);
}

.dia.active{
  background:#d6ab45;
  color:white;
}

/* LAYOUT */

.agenda-layout{
  width:min(1400px,90%);
  margin:auto;

  display:grid;
  grid-template-columns:1.1fr 0.9fr;

  gap:50px;

  padding-bottom:120px;
}

/* EVENTOS */

.eventos-lista{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.evento-card{
  display:flex;
  gap:28px;

  background:white;

  border-radius:32px;

  overflow:hidden;

  padding:24px;

  cursor:pointer;

  transition:0.4s ease;

  border:1px solid rgba(0,0,0,0.05);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);

  text-decoration:none;
  color:inherit;

  position:relative;
}

.evento-card::after{
  content:"Ver evento →";

  position:absolute;
  right:28px;
  bottom:24px;

  color:#d6ab45;

  font-weight:600;
  font-size:0.95rem;

  opacity:0;

  transition:0.3s ease;
}

.evento-card:hover::after{
  opacity:1;
  transform:translateX(4px);
}

.evento-card:hover{
  transform:translateY(-6px);

  box-shadow:
  0 25px 60px rgba(0,0,0,0.12);
}

.evento-img{
  width:240px;
  height:190px;

  border-radius:22px;

  overflow:hidden;

  flex-shrink:0;
}

.evento-img img{
  width:100%;
  height:100%;

  object-fit:cover;
}

.evento-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.evento-categoria{
  color:#d6ab45;

  font-size:0.9rem;
  font-weight:700;

  letter-spacing:1px;

  margin-bottom:14px;
}

.evento-info h3{
  font-size:2rem;
  line-height:1.15;

  margin-bottom:20px;
}

.evento-meta{
  display:flex;
  flex-direction:column;
  gap:10px;

  color:#29465f;
}

/* MAPA */

.mapa-wrapper{
  position:sticky;
  top:140px;

  height:650px;
}

#map{
  width:100%;
  height:100%;

  border-radius:36px;

  overflow:hidden;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.08);
}




/* =========================================
   HAMBURGER MENU
========================================= */

.hamburger{
  display: none;

  width: 34px;
  height: 24px;

  position: relative;

  cursor: pointer;

  z-index: 2001;
}

.hamburger span{
  position: absolute;

  width: 100%;
  height: 2px;

  background:#0f2233;

  box-shadow:
  0 1px 2px rgba(0,0,0,0.08);

  border-radius: 20px;

  transition: 0.3s ease;
}

/* linhas */
.hamburger span:nth-child(1){
  top: 0;
}

.hamburger span:nth-child(2){
  top: 10px;
}

.hamburger span:nth-child(3){
  top: 20px;
}

/* quando scroll */
.header.scrolled .hamburger span{
  background: #1f2f3a;
}

/* MOBILE */
@media (max-width: 768px){

  .hamburger{
    display: block;
  }

  /* esconder menu inicialmente */
  .menu{
    position: fixed;

    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 40px;

    transition: right 0.4s ease;

    z-index: 2000;
  }

  /* menu aberto */
  .menu.active{
    right: 0;
  }

  .menu a{
    color: #1f2f3a !important;

    font-size: 1.5rem;
  }

  /* animação hamburger */
  .hamburger.active span:nth-child(1){
    transform: rotate(45deg);
    top: 10px;
  }

  .hamburger.active span:nth-child(2){
    opacity: 0;
  }

  .hamburger.active span:nth-child(3){
    transform: rotate(-45deg);
    top: 10px;
  }

  /* cruz preta quando menu abre */
  .hamburger.active span{
    background: #1f2f3a;
  }

}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

  /* layout mobile */
  .agenda-layout{
    grid-template-columns:1fr;
  }

  /* esconder mapa no mobile */
  .mapa-wrapper{
    display:none;
  }

}

/* TABLET + MOBILE */
@media(max-width:900px){

  .header{
    height:90px;
    padding:0 24px;
  }

  .logo{
    left:24px;
  }

  .logo img{
    height:70px;
  }

  /* HERO */

  .hero-content h1{
    font-size:4rem;
    line-height:0.95;
  }

  .hero-content p{
    font-size:1.05rem;
    line-height:1.8;
  }

  /* EVENTOS */

  .evento-card{
    flex-direction:column;
    padding:20px;
  }

  .evento-img{
    width:100%;
    height:240px;
  }

  .evento-info h3{
    font-size:1.7rem;
  }


}

/* MOBILE */
@media(max-width:768px){

  .hamburger{
    display:block;
    margin-left:auto;
  }

  .menu{
    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    height:100vh;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(14px);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:40px;

    transition:right 0.4s ease;

    z-index:2000;
  }

  .menu.active{
    right:0;
  }

  .menu a{
    color:#1f2f3a !important;
    font-size:1.5rem;
  }

  /* LINHA AMARELA ACTIVE */

  .menu a.active::after{
    width:100%;
  }

}

/* MOBILE PEQUENO */
@media(max-width:600px){

  .hero-content h1{
    font-size:3rem;
  }

  .hero-content p{
    font-size:1rem;
  }

  .evento-info h3{
    font-size:1.5rem;
  }

  .evento-meta{
    font-size:0.95rem;
  }

}