.home-hero { position: relative; overflow: hidden; background: var(--verde-preto); color: var(--branco); }
.home-hero::before, .home-hero::after { content: ""; position: absolute; pointer-events: none; border-radius: 50%; border: 1px solid rgba(76,175,80,.34); }
.home-hero::before { width: 560px; height: 560px; left: -340px; bottom: -430px; }
.home-hero::after { width: 620px; height: 620px; right: -330px; top: -410px; box-shadow: 0 0 0 90px rgba(76,175,80,.035); }
.home-hero__grid { min-height: 340px; display: grid; grid-template-columns: .9fr 1.35fr; align-items: center; gap: 48px; position: relative; z-index: 1; }
.home-hero__copy { padding-block: 42px; }
.home-hero__copy h1 { margin: 9px 0 15px; max-width: 570px; font-size: clamp(2.2rem, 4.3vw, 4rem); line-height: 1.02; letter-spacing: -.055em; }
.home-hero__copy p { margin: 0 0 25px; max-width: 560px; color: #cbd6cd; }
.home-words { position: relative; height: 310px; min-width: 0; }
.word { position: absolute; line-height: .9; font-weight: 800; letter-spacing: -.05em; color: var(--verde-vivo); animation: wordFloat 10s ease-in-out infinite alternate; }
.word--1 { top: 14%; left: 23%; font-size: clamp(2.5rem, 5vw, 5rem); }
.word--2 { top: 36%; right: 6%; font-size: clamp(2rem, 4vw, 4.2rem); color: transparent; -webkit-text-stroke: 1px #97b89d; }
.word--3 { top: 57%; left: 0; font-size: clamp(1.4rem, 2.8vw, 3rem); color: transparent; -webkit-text-stroke: 1px #8a9e8e; }
.word--4 { top: 42%; left: 34%; font-size: clamp(1.2rem, 2.5vw, 2.6rem); color: #97bf8b; }
.word--5 { top: 63%; left: 44%; font-size: clamp(2.3rem, 4.5vw, 4.8rem); }
.word--6 { bottom: 11%; left: 26%; font-size: clamp(1rem, 2vw, 2rem); color: #d8e5da; }
.word--7 { bottom: 2%; left: 45%; font-size: clamp(.9rem, 1.7vw, 1.7rem); color: #3d7d43; }
.word--8 { top: 58%; right: 0; font-size: clamp(1rem, 2.1vw, 2rem); color: #668b58; }
.word--9 { bottom: 14%; right: 1%; font-size: clamp(.9rem, 1.8vw, 1.8rem); color: #4d874f; }
.word--10 { bottom: -1%; right: 9%; font-size: clamp(1.6rem, 3vw, 3.2rem); color: transparent; -webkit-text-stroke: 1px #6fa374; }
.word:nth-child(even) { animation-delay: -4s; animation-duration: 12s; }
@keyframes wordFloat { from { transform: translate3d(0, -3px, 0); } to { transform: translate3d(7px, 5px, 0); } }

.quick-access { position: relative; z-index: 5; padding: 34px 0 20px; }
.quick-access__head { align-items: center; margin-bottom: 18px; }
.quick-access__head h2 { font-size: 1.45rem; }
.quick-access__head p { max-width: 390px; text-align: right; }
.quick-access__track { display: grid; grid-template-columns: repeat(7, minmax(142px, 1fr)); gap: 12px; overflow-x: auto; padding: 2px 2px 12px; scrollbar-color: var(--verde-salvia) transparent; }
.service-card { position: relative; min-width: 142px; overflow: hidden; display: flex; flex-direction: column; align-items: center; padding: 14px 12px 16px; border: 1px solid var(--borda); border-radius: 15px; background: var(--branco); color: var(--texto); text-align: center; text-decoration: none; box-shadow: var(--sombra-suave); transition: transform .22s, box-shadow .22s, border-color .22s; }
.service-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--service-accent); }
.service-card:hover { transform: translateY(-5px); border-color: var(--service-accent); box-shadow: var(--sombra); }
.service-card__image { width: 88px; height: 88px; display: grid; place-items: center; margin-bottom: 9px; }
.service-card__image img { width: 100%; height: 100%; object-fit: contain; }
.service-card__title { font-size: .86rem; font-weight: 750; line-height: 1.25; }
.service-card__description { margin-top: 5px; color: var(--texto-suave); font-size: .72rem; line-height: 1.3; }

.home-highlights { padding-top: 42px; background: #fff; border-block: 1px solid #edf1ee; }
.highlights-grid { display: grid; grid-template-columns: minmax(0, 2.25fr) minmax(270px, .85fr); gap: 24px; align-items: stretch; }
.banner-card { position: relative; overflow: hidden; min-height: 330px; }
.banner-card__viewport, .banner-slide { position: absolute; inset: 0; }
.banner-slide { opacity: 0; pointer-events: none; transition: opacity .45s ease; background: #eef2ef; }
.banner-slide.active { opacity: 1; pointer-events: auto; }
.banner-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.banner-slide__caption { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 15px; border-radius: 12px; color: var(--branco); background: rgba(8,11,9,.88); backdrop-filter: blur(8px); }
.banner-slide__caption strong { font-size: .9rem; }
.banner-slide__caption span { color: #c9d5cb; font-size: .76rem; }
.banner-control { position: absolute; top: 50%; z-index: 3; width: 40px; height: 40px; transform: translateY(-50%); border: 0; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--preto); box-shadow: var(--sombra-suave); cursor: pointer; }
.banner-control--prev { left: 12px; }
.banner-control--next { right: 12px; }
.banner-dots { position: absolute; z-index: 4; left: 50%; bottom: 6px; transform: translateX(-50%); display: flex; gap: 6px; }
.banner-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #b9c3bb; cursor: pointer; }
.banner-dots button.active { width: 24px; border-radius: 10px; background: var(--verde-vivo); }

.events-card { display: flex; flex-direction: column; min-height: 330px; padding: 24px; border-radius: var(--raio); background: linear-gradient(150deg, var(--verde-profundo), #082c17); color: var(--branco); box-shadow: var(--sombra); }
.events-card__head { display: flex; gap: 13px; align-items: center; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.13); }
.events-card__head > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.1); color: #8ee18f; }
.events-card__head small { color: #a9b9ac; }
.events-card__head h3 { margin: 0; font-size: 1.12rem; }
.events-card__list { flex: 1; display: grid; align-content: start; }
.event-row { display: grid; grid-template-columns: 54px 1fr; gap: 13px; align-items: center; padding: 14px 0; color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,.16); }
.event-row__date { min-height: 52px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(126,213,132,.5); border-radius: 10px; line-height: 1; }
.event-row__date strong { font-size: 1.25rem; }
.event-row__date small { margin-top: 4px; color: #aeeab1; font-size: .65rem; font-weight: 800; }
.event-row__copy { min-width: 0; display: grid; gap: 3px; }
.event-row__copy strong { font-size: .83rem; line-height: 1.25; }
.event-row__copy small { overflow: hidden; color: #a9b9ac; font-size: .7rem; white-space: nowrap; text-overflow: ellipsis; }
.events-card__empty { color: #b7c5b9; text-align: center; margin: 32px 0; }
.events-card__link { display: inline-flex; justify-content: space-between; align-items: center; margin-top: 16px; color: #9be39e; text-decoration: none; font-size: .82rem; font-weight: 700; }

.news-home { background: var(--fundo); }
.news-home__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { overflow: hidden; transition: transform .22s, box-shadow .22s; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--sombra); }
.news-card__image { height: 205px; display: block; overflow: hidden; background: var(--verde-claro); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card__image img { transform: scale(1.035); }
.news-card__body { padding: 21px; }
.news-card__category { display: inline-flex; color: var(--verde-primario); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin: 8px 0; font-size: 1.08rem; line-height: 1.32; }
.news-card h3 a { color: var(--preto); text-decoration: none; }
.news-card p { margin: 0 0 16px; color: var(--texto-suave); font-size: .86rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__link { color: var(--verde-primario); text-decoration: none; font-size: .82rem; font-weight: 750; }

@media (max-width: 1050px) {
    .home-hero__grid { grid-template-columns: 1fr 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .events-card { min-height: auto; }
    .news-home__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .home-hero__grid { min-height: 530px; grid-template-columns: 1fr; gap: 0; }
    .home-hero__copy { padding-bottom: 5px; }
    .home-words { height: 225px; }
    .quick-access__head { align-items: flex-start; }
    .quick-access__head p { text-align: left; }
    .quick-access__track { grid-template-columns: repeat(7, 150px); }
    .banner-card { min-height: 285px; }
    .banner-slide__caption span { display: none; }
    .news-home__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .home-hero__grid { min-height: 500px; }
    .word--8, .word--9 { display: none; }
    .banner-card { min-height: 235px; }
    .banner-slide__caption { left: 10px; right: 10px; bottom: 10px; }
}

