        :root {
            --primary-green: #2E8B57; /* Verde Natureza */
            --accent-orange: #FF8C00; /* Laranja Ação */
            --dark-green: #1e492f;
            --light-bg: #f8f9fa;
            --color-white:#fff;
            --green:#2b6142;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: #444;
        }

        h1, h2, h3, h4, .btn {
            font-family: 'Montserrat', sans-serif;
        }

        /* Navbar Customizada */
        .navbar {
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            background: transparent !important;
            padding: 25px 0; /* Começa maior */
            
        }
        .navbar.navbar-scrolled {
            background: #fff !important;
            padding: 15px 0; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: none;
        }
        .navbar:not(.navbar-scrolled) {
            background: transparent !important;
        }
        .navbar:not(.navbar-scrolled) .nav-link, 
        .navbar:not(.navbar-scrolled) .navbar-brand {
            color: white !important;
        }
        .navbar img {
            transition: all 0.3s ease;
            max-height: 60px; 
        }
        .navbar.navbar-scrolled img {
            max-height: 45px; 
        }


        .navbar:not(.navbar-scrolled) .nav-link {
            color: white !important;
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-green) !important;
            margin: 0 5px;
            font-size: 0.95rem;
        }
        .nav-link:hover {
            color: var(--accent-orange) !important;
        }


        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 10px;
            margin-top: 10px; 
        }
        .dropdown-item {
            font-size: 0.9rem;
            padding: 10px 20px;
            font-weight: 500;
            color: #555;
        }
        .dropdown-item:hover {
            background-color: #f0fdf4;
            color: var(--primary-green);
        }

        .cat-color{
            color: var(--accent-orange) !important; ;
        }

        .event-img {
            width: 100%;
            height: 300px;
            border-radius: 20px 20px 0 0;
            object-fit: cover;
            object-position: top;
        }
        .event-card {
            height: 100%;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
        }

        .event-card .card-body {
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
        }

        .event-card .card-body > p {
            flex-grow: 1;
        }

        .event-card h5{
            font-weight: 700;
            color: var(--green);
        }

        .event-actions {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 9px;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #edf0ee;
        }

        .event-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            gap: 7px;
            margin: 0;
            padding: 9px 13px;
            border: 1px solid #dfe7e2;
            border-radius: 50px;
            background: #fff;
            color: var(--green);
            font-family: 'Open Sans', sans-serif;
            font-size: .79rem;
            font-weight: 700;
            line-height: 1;
            text-decoration: none;
            cursor: pointer;
            transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
        }

        .event-action:hover,
        .event-action:focus-visible {
            border-color: var(--accent-orange);
            background: #fff8ef;
            color: #d97600;
            transform: translateY(-1px);
            outline: none;
        }

        .event-action i {
            font-size: 1rem;
        }

        .event-like {
            min-width: 70px;
            color: var(--accent-orange);
        }

        .event-like.is-liked {
            border-color: var(--accent-orange);
            background: var(--accent-orange);
            color: #fff;
        }

        .event-instagram {
            grid-column: 1 / -1;
            border-color: var(--primary-green);
            background: var(--primary-green);
            color: #fff;
        }

        .event-instagram:hover,
        .event-instagram:focus-visible {
            border-color: var(--dark-green);
            background: var(--dark-green);
            color: #fff;
        }

        .event-toast {
            position: fixed;
            z-index: 1100;
            right: 24px;
            bottom: 24px;
            max-width: calc(100% - 48px);
            padding: 12px 18px;
            border-radius: 12px;
            background: var(--dark-green);
            color: #fff;
            font-size: .9rem;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
            opacity: 0;
            transform: translateY(14px);
            pointer-events: none;
            transition: opacity .2s ease, transform .2s ease;
        }

        .event-toast.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 575.98px) {
            .event-actions {
                grid-template-columns: 1fr 1fr;
            }

            .event-action {
                font-size: .76rem;
                padding-right: 10px;
                padding-left: 10px;
            }
        }

/* Botões */
.btn-socio {
    background-color: var(--accent-orange);
    color: white;
    font-weight: 700;
    border-radius: 30px;
    padding: 8px 25px;
    transition: transform 0.2s;
    white-space: nowrap;
}
.btn-socio:hover {
    background-color: #e67e00;
    color: white;
    transform: scale(1.05);
}
.btn-area-socio {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 20px;
    margin-right: 10px;
    white-space: nowrap;
}
.btn-area-socio:hover {
    background-color: var(--primary-green);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
}
#video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .45), rgb(0 0 0 / 65%));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}
.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
}
.hero-text{
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 700;
}
.title-section{
    color: var(--green);
}
/* Features Strip */
.features-strip {
    background-color: white;
    padding: 40px 0;
    margin-top: -50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}
.feature-box i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}
.backdrop-top{
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    color: color-mix(in oklab, var(--color-white) 95%, transparent);
    font-size: .75rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    border: solid 1px white;            
}

/* Content Sections */
.section-padding {
    padding: 80px 0;
}
.img-rounded {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    object-fit: contain;
    object-position: center;
}

/* Carousel Customization */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-green);
    border-radius: 50%;
    background-size: 60%, 60%;
    padding: 20px;
}
.carousel-indicators [data-bs-target] {
    background-color: var(--primary-green);
}

/* Galeria da página O Clube */
.club-gallery-section {
    padding: 20px 0 80px;
}

.club-gallery-carousel {
    padding: 0 54px 42px;
}

.club-gallery-carousel .carousel-inner {
    border-radius: 16px;
}

.club-gallery-carousel .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 200px));
    justify-content: center;
    gap: 16px;
}

.club-gallery-carousel .gallery-thumbnail-button {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    cursor: zoom-in;
}

.club-gallery-carousel .gallery-thumbnail-button:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 4px;
}

.club-gallery-carousel .gallery-image {
    display: block;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border: 2px solid var(--accent-orange);
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.club-gallery-carousel .gallery-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.club-gallery-carousel .carousel-control-prev,
.club-gallery-carousel .carousel-control-next {
    width: 44px;
    opacity: 1;
}

.club-gallery-carousel .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.gallery-lightbox .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.gallery-lightbox .modal-body {
    padding: 0;
    background: #111;
    text-align: center;
}

.gallery-lightbox .modal-body img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .club-gallery-carousel .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 200px));
    }
}

@media (max-width: 767.98px) {
    .club-gallery-section {
        padding: 10px 0 60px;
    }

    .club-gallery-carousel {
        padding-right: 46px;
        padding-left: 46px;
    }

    .club-gallery-carousel .gallery-image {
        max-width: 200px;
    }
}

@media (max-width: 575.98px) {
    .club-gallery-carousel .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

/* CTA Final */
.cta-final {
    background-color: var(--primary-green);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: #bbb;
    padding: 60px 0 20px 0;
}
footer h5 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}
footer a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}
footer a:hover {
    color: var(--accent-orange);
}

.btn-evento{
    font-weight: bold;
    font-size: 0.85rem;
    color: #2b663e;
    text-decoration: none;

}
.h2, h2 {
    font-size: 2.5rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .navbar-nav { margin-top: 15px; margin-bottom: 15px; text-align: center; }
    .dropdown-menu { text-align: center; background-color: #f8f9fa; border: none; box-shadow: none; }
    .img-rounded { height: auto; margin-bottom: 20px; }
}


/*============ O CLUBE ==========*/
/* Banner interno */
.internal-banner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    background: url("../img/sobre-o-clube-bg.png") center / cover no-repeat;
}

.internal-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.internal-banner .banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    color: #fff;
}

.internal-banner .banner-title {
    margin: 60px 0 0;
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
}

.internal-banner .banner-breadcrumb {
    position: absolute;
    z-index: 2;
    bottom: 14px;
    left: 0;
    width: 100%;
}

.internal-banner .breadcrumb {
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 0.8em !important;
}

.internal-banner .breadcrumb-item,
.internal-banner .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.internal-banner .breadcrumb-item.active,
.internal-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.75);
}


/* Linha do tempo — História do Clube */
.club-timeline {
    position: relative;
    max-width: 980px;
    margin: 3rem auto 0;
    padding: 0;
    list-style: none;
}

.club-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    width: 3px;
    background: #198754;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    width: 50%;
    margin-bottom: 2.5rem;
    padding-right: 42px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 42px;
}

.timeline-marker {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: -11px;
    width: 22px;
    height: 22px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #ff8c00;
    box-shadow: 0 0 0 2px #198754;
}

.timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -11px;
}

.timeline-card {
    width: 100%;
    padding: 1.5rem;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.timeline-year {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: #198754;
    font-size: 1.2rem;
    font-weight: 800;
}

.timeline-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-card p {
    margin: 0;
    color: #5f6368;
    line-height: 1.7;
}

/* Vídeo no conteúdo */
.content-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.content-video-wrapper video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .club-timeline::before {
        left: 11px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
        padding-left: 44px;
    }

    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        right: auto;
        left: 0;
    }
}
/*=================NOSSA ESTRUTURA===================*/
p.text-estrutura {
    font-size: 14px;
    font-style: italic;
}

.footer-creditos {
    margin-top: 4px;
    font-size: 12px;
    opacity: .85;
}

.footer-creditos a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s ease;
}

.footer-creditos a:hover {
    color: #ff8500;
    opacity: 1;
    text-decoration: none;
}

/* ==========================================================
   EVENTOS HOME - LAYOUT PREMIUM / MODELO ANTERIOR
   ========================================================== */

.section-eventos-home {
    background: #fff;
}

.section-eventos-home .section-eventos-heading {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.section-eventos-home .section-eventos-heading .title-section {
    font-size: clamp(2rem, 3.3vw, 2.75rem);
    line-height: 1.12;
}

.section-eventos-home .row.g-4 {
    align-items: stretch;
}

.section-eventos-home .event-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20, 55, 35, .10);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.section-eventos-home .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(20, 55, 35, .15);
}

.section-eventos-home .event-card-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.section-eventos-home .event-img {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 0;
    object-fit: cover;
    object-position: top;
    transition: transform .4s ease;
}

.section-eventos-home .event-card:hover .event-img {
    transform: scale(1.025);
}

.section-eventos-home .event-home-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(24, 94, 61, .96);
    color: #fff;
    font-size: .70rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .15);
}

.section-eventos-home .event-card .card-body {
    min-height: 385px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
}

.section-eventos-home .event-home-date {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 13px;
    color: var(--accent-orange);
    font-size: .80rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-eventos-home .event-home-date i {
    color: var(--accent-orange);
}

.section-eventos-home .event-home-title {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.28;
}

.section-eventos-home .event-home-title a {
    color: inherit;
}

.section-eventos-home .event-home-title a:hover {
    color: var(--primary-green);
}

.section-eventos-home .event-home-description {
    margin: 0 0 20px;
    color: #3f4843;
    font-size: .92rem;
    line-height: 1.58;
}

.section-eventos-home .event-actions {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 9px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid #edf0ee;
}

.section-eventos-home .event-action {
    min-height: 43px;
    margin: 0;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #dfe7e2;
    border-radius: 50px;
    background: #fff;
    color: var(--green);
    font-family: 'Open Sans', sans-serif;
    font-size: .79rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.section-eventos-home button.event-action {
    cursor: pointer;
}

.section-eventos-home .event-action:hover,
.section-eventos-home .event-action:focus-visible {
    border-color: var(--accent-orange);
    background: #fff8ef;
    color: #d97600;
    transform: translateY(-1px);
    outline: none;
}

.section-eventos-home .event-like {
    min-width: 72px;
    color: var(--accent-orange);
}

.section-eventos-home .event-like:hover {
    transform: none;
    border-color: #dfe7e2;
    background: #fff;
    color: var(--accent-orange);
}

.section-eventos-home .event-like i {
    font-size: 1rem;
}

.section-eventos-home .event-share {
    width: 100%;
}

.section-eventos-home .event-instagram {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 45px;
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: #fff;
}

.section-eventos-home .event-instagram:hover,
.section-eventos-home .event-instagram:focus-visible {
    border-color: var(--dark-green);
    background: var(--dark-green);
    color: #fff;
}

.section-eventos-home .event-view {
    background: var(--primary-green);
}

.section-eventos-home .section-eventos-all {
    margin-right: 0;
    padding: 10px 24px;
}

@media (max-width: 1199.98px) {

    .section-eventos-home .event-img {
        height: 320px;
    }

    .section-eventos-home .event-card .card-body {
        min-height: 390px;
    }

}

@media (max-width: 991.98px) {

    .section-eventos-home .event-img {
        height: 300px;
    }

    .section-eventos-home .event-card .card-body {
        min-height: auto;
    }

}

@media (max-width: 575.98px) {

    .section-eventos-home .section-eventos-heading .title-section {
        font-size: 1.85rem;
    }

    .section-eventos-home .event-card {
        border-radius: 16px;
    }

    .section-eventos-home .event-img {
        height: 270px;
    }

    .section-eventos-home .event-card .card-body {
        padding: 22px 20px 20px;
    }

    .section-eventos-home .event-home-title {
        font-size: 1.12rem;
    }

    .section-eventos-home .event-actions {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .section-eventos-home .event-action {
        padding-right: 10px;
        padding-left: 10px;
        font-size: .76rem;
    }

}

