@font-face {
    font-family: leagueSpartan;
    src: url(fonts/LeagueSpartan-VariableFont_wght.ttf);
}

@font-face {
    font-family: regularGlacialIndifference;
    src: url(fonts/GlacialIndifference-Regular.otf);
}

@font-face {
    font-family: boldGlacialIndifference;
    src: url(fonts/GlacialIndifference-Bold.otf);
}



body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: leagueSpartan;
}

.image-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.image-section h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #004F2D;
}

.image-section .intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
    font-family: regularGlacialIndifference;
    font-size: 1.15em;
}

.benefit-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform .2s ease;
}

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

.card .emoji {
    font-size: 2.2rem;
    display: block;
}

.card h3 {
    margin: 12px 0 8px;
    color: #004F2D;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.4;
    font-family: regularGlacialIndifference;
}

.image-section .cta {
    text-align: center;
    margin-top: 45px;
}

#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#hero .bg-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

#bg1 {
    z-index: 0;
}

#bg2 {
    z-index: 0;
}

.extra-content {
    border-top: 1px solid #7A7A7A;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#hero nav {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

#hero nav ul {
    list-style: none;
    display: flex;
    gap: 5%;
    margin: 0;
    padding: 0;
}

#hero nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

#hero .hero-content .logo {
    width: 100%;
    height: auto;
}

#hero .hero-navigation {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;

}

#hero .hero-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 2vw;
}

#hero .hero-navigation li {
    position: relative;
    padding: 0 15px;
}

#hero .hero-navigation li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

#hero .hero-navigation li:last-child::after {
    content: none;
}

#hero .hero-navigation a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#hero .hero-navigation a:hover {
    color: #F1B000;
}

#hero .hero-navigation a.active {
    color: #F5D709;
}

.sponsors {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
}

.sponsor-logo {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: clamp(30px, 8vw, 60px);
    object-fit: contain;
}

.sponsor-separator {
    width: 1px;
    background-color: black;
}

.organizers-logos.sponsors {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: clamp(12px, 2vw, 24px);
    align-items: center;
    justify-items: center;
    padding: 1rem;
    padding-bottom: 100px;
}

.organizers-logos.sponsors .sponsor-logo {
    max-height: clamp(36px, 8vw, 72px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.organizers-logos.sponsors .sponsor-separator {}


.footer {
    display: flex;
    align-items: center;
    padding: 2%;
    background-color: #3683b9;
    color: white;
    border-top: 1px solid black;
}

.footer p {
    margin: 0;
}

.footer .sponsors {
    margin-left: auto;
}


main {
    position: relative;
    margin: 0;
    padding: 0;
    isolation: isolate;
    max-width: none;
    font-family: regularGlacialIndifference;
}

main h1,
main h2,
main h3 {
    text-align: center;
    font-family: leagueSpartan;
}


section {
    margin-bottom: 60px;
}

section h1 {
    font-size: 2.3em;
}



.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #009C3B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #9BC53D;
}

main {
    position: relative;
    margin: 0% 0;
    padding: 0% 0;
    max-width: none;
}

.content {
    box-sizing: border-box;
    width: min(900px, 100%);
    margin-inline: auto;
    padding-inline: 20px;
    position: relative;
    background-color: white;
    z-index: 1;
    display: flow-root;
}

.page-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.corner-decoration,
.side-decoration {
    position: absolute;
    background-repeat: no-repeat;
}

.corner-decoration.top-left {
    width: 165px;
    height: 165px;
    background-image: url(images/corner3.png);
    background-size: 329px 329px;
    top: 0px;
    left: 0%;
    rotate: 180deg;
    background-position: left top;
}

.corner-decoration.top-right {
    width: 165px;
    height: 165px;
    background-image: url(images/corner3.png);
    background-size: 329px 329px;
    top: 0px;
    right: 0%;
    rotate: 180deg;
    background-position: right top;
}

.corner-decoration.bottom-left {
    width: 165px;
    height: 165px;
    background-image: url(images/corner3.png);
    background-size: 329px 329px;
    bottom: 0%;
    left: 0%;
    rotate: 180deg;
    background-position: left bottom;
}

.corner-decoration.bottom-right {
    width: 165px;
    height: 165px;
    background-image: url(images/corner3.png);
    background-size: 329px 329px;
    bottom: 0px;
    right: 0px;
    rotate: 180deg;
    background-position: right bottom;
}

.side-decoration {
    width: 186px;
    height: 373px;
    top: 30%;
    transform: translateY(-50%);
    background-image: url(images/corner5.png);
    background-size: 372px 373px;
}

.side-decoration.left {
    left: 0%;
    top: 15%;
    rotate: 180deg;
    background-position: left center;
}

.side-decoration.right {
    right: 0%;
    rotate: 180deg;
    background-position: right center;
}

.edicao {
    border-top: 2px solid #e61770;
}


.edicao ul {
    list-style-type: disc;
    padding-left: 20px;
}

.edicao li {
    margin-bottom: 8px;
    line-height: 1.4;
}

* {
    box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media (max-width: 600px) {
    #hero .hero-navigation ul {
        flex-direction: column;
        align-items: center;
        font-size: 4.5vw;
        gap: 10px;
    }

    #hero .hero-navigation li::after {
        display: none;
    }

    .footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer p {
        font-size: 3vw;
    }

    .footer .sponsors {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .page-decorations {
        display: none;
    }
}