@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --accent-color: #0454a2;
    --primary-color: #333;
    --secondary-color: #f0f0f0;
    --background-color: #f0f0f0;
    --mentor-width: 300px;
}
::selection {
    background-color: var(--accent-color);
    color: #fff;
}

.texto-cortado {
    text-decoration: line-through;
}
a {
    color: var(--accent-color);
    filter: brightness(1.5);
    text-decoration: none;
}
a:hover {
    color: #fff;
    text-decoration: underline;
}
* {
    box-sizing: border-box;
    caret-color: var(--accent-color);
    scrollbar-color: var(--accent-color) #f0f0f0;
    scrollbar-width: thin;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    background-color: #222228;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

header {
    background: rgba(40,40,55,0.3);
    color: #fff;
    font-size: 0.7em;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
    transition: background 1s, backdrop-filter 1s;
    /* transition: ; */
    backdrop-filter: blur(1px);
    z-index: 1000;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
header:hover {
    background: rgba(40,40,55,0.8);
    backdrop-filter: blur(10px);
}
/* header .logo {
    opacity: 0;
    transition: opacity 0.5s;
} */
.menu--alt {
    background: rgba(40,40,55,0.8);
    backdrop-filter: blur(10px);
}
.menu--alt .logo {
    opacity: 1;
}
.menu--alt .logo img {
    height: 40px;
    /* filter: drop-shadow(0 0 5px #fff)
            drop-shadow(0 0px 30px #fff) 
            drop-shadow(0 -15px 30px #fff); */
}
header .logo a {
    margin-left: 40px;
}
header .logo img{
    height: 40px;
    /* filter: drop-shadow(0 0 5px #fff) 
            drop-shadow(0 0px 30px #fff) 
            drop-shadow(0 -15px 30px #fff); */
}
header .menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    position: fixed;
    top: 10px;
    right: 20px;
}
header.nav-open {
    height: auto;
}
header nav ul {
    list-style: none;
    display: flex;
    
    flex-wrap: wrap;
    margin:0;
    padding: 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /*glowing efect*/
    text-shadow: 0 0 3px var(--accent-color), 0 0 8px var(--accent-color), 0 0 12px #fff;
    position: relative;
    transition: text-shadow 0.4s ease-in-out;
    filter: saturate(1.3) brightness(1.2);
}

/*Circle of light in bottom*/
header nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: radial-gradient(#fff, transparent);
    border-radius: 50%;
    bottom: 0px;
    /* box-shadow: inset 0 0 3px var(--accent-color),
        0 0 10px var(--accent-color),
        0 -10px 10px -1px var(--accent-color),
        0 -5px 30px -4px #fff,
        0 -20px 30px #fff; */
    z-index: 0;
    transition: bottom 0.4s, opacity 0.3s;
    opacity: 0;
}
header nav ul li a:hover::before {
    opacity: 1;
    bottom: 10px;
}

header nav ul li a:hover {
    /* background-color: rgba(0,0,0,0.2); */
    text-shadow: 0 0 30px var(--accent-color), 0 0 10px var(--accent-color), 0 0 30px #fff;
    text-decoration: none;
}

header nav ul li a i {
    font-size: 1.3em;
}
header nav ul li.submenu {
    position: relative;
}
header nav ul li.submenu::before {
    content: '\f078' ;
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    font-weight: 900;
    transform: translateY(-100%) translateX(-50%);
    top: 95%;
    left: 50%;
}
header nav ul li ul {
    display: none;
    position: absolute;
    background-color: rgba(40,40,55,0.8);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 10px;
    top: 100%;
    left: 0;
    z-index: 100;
    /* width: 100%; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
header nav ul li:hover ul {
    display: block;
}
header nav ul li ul li {
    display: block;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
    transition: background-color 0.4s;
    text-align: center;
}

.banner {
    width: 100%;
    height: 80vh;
    top: 0;
    background-image: url(../images/handshake.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.banner canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}
.edicao-titulo-logo {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 5vw;
    background-color: rgba(0,0,0,0.1);
}
.edicao-titulo-logo h1 {
    font-size: 1.6em;
}
.edicao-titulo-logo .logo {
    position: relative;
}
.edicao-titulo-logo .edicao {
    font-size: 1.2em;
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
    translate: 60% -60%;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transform: scale(0.8);
    animation: wave 3s infinite linear;
    /* animation: wave 3s infinite linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%); */
}
.edicao-titulo-logo img {
    height: 80px;
    /* filter: drop-shadow(0 0 1px #fff)
            drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0px 30px #fff) 
            drop-shadow(0 -15px 30px #fff)
            ; */
}
.banner .credit {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 10px;
    right: 15px;
    bottom: 15px;
    overflow: hidden;
    color: transparent;
    font-size: 0.7em;
    text-decoration: none;
    line-height: 13px;
    z-index: 10;
    animation: destaqueCreditos 5s infinite;
}
.banner .credit:hover {
    color: #000;
    width: auto;
    padding: 0 10px;
    transition: all 0.5s;
    animation: none;
}

@keyframes edicaoPulse {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 15px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }
}

/* water wave effect */
@keyframes wave {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }
    15% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2);
    }
    30% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 15px rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2);
    }
    45% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.05), 0 0 0 25px rgba(255, 255, 255, 0.1), 0 0 0 15px rgba(255, 255, 255, 0.1);
    }
    60% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0), 0 0 0 35px rgba(255, 255, 255, 0.05), 0 0 0 25px rgba(255, 255, 255, 0.1);
    }
    85% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 45px rgba(255, 255, 255, 0), 0 0 0 35px rgba(255, 255, 255, 0);
    }
    90% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 45px rgba(255, 255, 255, 0), 0 0 0 35px rgba(255, 255, 255, 0);
    }
    95% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0), 0 0 0 0px rgba(255, 255, 255, 0), 0 0 0 0px rgba(255, 255, 255, 0);
    }
}


@keyframes destaqueCreditos {
    0% {
        width: 15px;
    } 
    10% {
        width: 30px;
    }
    20% {
        width: 15px;
    }
    100% {
        width: 15px;
    }
}

.container {
    width: 80vw;
    margin: 0 auto;
}
.container h1 {
    position: relative;
    font-family: 'Raleway', sans-serif;
    margin: 30px 0;
    padding-left: 65px;
    display: block;
    line-height: 50px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 40%);
    border-radius: 50px;
    z-index: 10;
}
.container h1::before {
    content: var(--icon);
    display: block;
    border: 2px solid #fff;
    box-shadow: 0 0 3px var(--accent-color),
        0 0 8px var(--accent-color) ;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    position: absolute;
    left: 0px;
    font-family: 'Font Awesome 6 Free';
    line-height: 46px;
    text-align: center;
    z-index: 10 ;
}
.container h1::after {
    content: '';
    display: block;
    border-left: 2px solid rgb(255, 255, 255);
    border-right: 2px solid rgb(255, 255, 255);
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    filter: blur(6px);
    border-radius: 50%;
    width: 49px;
    height: 49px;
    position: absolute;
    left: 1px;
    top: 1px;
    font-family: 'Font Awesome 6 Free';
    line-height: 50px;
    text-align: center;
    z-index: 10;
    animation: scan 5s infinite linear;
}
@keyframes scan {
    0% {
        transform: rotateZ(0deg);
    }
    
    100% {
        transform: rotateZ(360deg);
    }
}
section.container{
    margin-top: 50px;
}
section p {
    line-height: 1.5em;
    text-align: justify;
}
section.container .flex-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hacka-sagita {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.hacka-sagita img {
    width: 200px;
}
.responsiveImage {
    width: 100%;
    object-fit: cover;
}

.premiacao {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    list-style: none;
    padding: 0;
}
.premiacao li {
    height: 100%;
    background-color: rgba(40, 40, 55, 1);
    border: 1px solid var(--accent-color);
    padding: 15px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    flex: 1;
    
    position: relative;
}
.premiacao li i {
    font-size: 2em;
    padding: 10px;
    color: var(--accent-color);
    filter: brightness(2);
}
/* Efeito de reflexo nas premiacoes */
.premiacao li::before {
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    bottom: 0px;
    left: -15%;
    z-index: 0;
    transition: bottom 0.4s, opacity 0.3s;
    opacity: 1;
}
.premiacao li:nth-child(1)::before {
    animation: reflex 8s infinite forwards;
}
.premiacao li:nth-child(2)::before {
    animation: reflex 8s 1s infinite forwards;
}
.premiacao li:nth-child(3)::before {
    animation: reflex 8s 2s infinite forwards;
}
@keyframes reflex {
    0% {
        left: -15%;
    }
    4% {
        left: 115%;
    }
    4.00001% {
        left: -15%;
    }
}

.teams {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, 23%);
    margin: 0;
    padding: 0;
    list-style: none;
}
.teams .team {
    width: 100%;
    border: 1px solid var(--accent-color);
    color: #fff;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
    animation: glow 6s calc(var(--i) / 8) infinite;
}
@keyframes glow {
    0% {
        box-shadow: inset 0 0 0px var(--accent-color),
                        0 0 0px var(--accent-color);
        filter: brightness(1) saturate(1);
        text-shadow: 0 0 0px var(--accent-color),
        0 0 0px var(--accent-color),
        0 0 0px var(--accent-color),
        0 0 0px var(--accent-color);
    }
    50% {
        box-shadow: inset 0 0 10px var(--accent-color),
                        0 0 20px -5px var(--accent-color);
        filter: brightness(1.5) saturate(1.5);
        text-shadow: 0 0 10px var(--accent-color),
        0 0 10px var(--accent-color),
        0 0 20px var(--accent-color),
        0 0 30px var(--accent-color);
    }
    100% {
        filter: brightness(1) saturate(1);
        box-shadow: inset 0 0 0px var(--accent-color),
                        0 0 0px var(--accent-color);
    }
}
.teams .team i {
    font-size: 2em;
}

.mentors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}
.mentors .mentor {
    width: var(--mentor-width);
    background-color: rgba(40, 40, 55, 1);
    border: 1px solid var(--accent-color);
    color: #fff;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
}
.mentors .mentor img {
    width: 100%;
}
.mentors .mentor .name, .mentors .mentor .activity, .mentors .mentor .bussiness, .mentors .mentor .content {
    padding: 0 10px;
}
.mentors .mentor .name {
    font-size: 1.2em;
    margin: 10px 0 0 0;
    text-align: center;
}
.mentors .mentor .bussiness {
    font-size: 0.8em;
    margin: 0;
}
.mentors .mentor .activity {
    position: absolute;
    width: 100%;
    min-height: 60px;
    top: var(--mentor-width);
    transform: translateY(-100%);
    padding: 10px 0;
    background-color: rgba(40, 40, 55, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.mentors .mentor .activity span{
    font-size: 0.7em;
    padding: 0 10px;
    border-radius: 10px;
}
.mentors .mentor .activity .ti {
    background-color: rgb(53, 84, 129); /* Azul escuro */
}

.mentors .mentor .activity .eng {
    background-color: rgb(30, 73, 24); /* Verde escuro */
}

.mentors .mentor .activity .emp {
    background-color: rgb(129, 53, 53); /* Vermelho escuro */
}

.mentors .mentor .activity .ia {
    background-color: rgb(129, 102, 53); /* Marrom claro */
}

.mentors .mentor .activity .adm {
    background-color: rgb(86, 53, 129); /* Roxo escuro */
}

.mentors .mentor .activity .mkt {
    background-color: rgb(135, 67, 98); /* Rosa escuro */
}

.mentors .mentor .activity .ux {
    background-color: rgb(70, 55, 124); /* Roxo azulado */
}

.mentors .mentor .activity .iot {
    background-color: rgb(129, 54, 129); /* Roxo médio */
}

.mentors .mentor .activity .ds {
    background-color: rgb(57, 129, 71); /* Verde médio */
}

.mentors .mentor .activity .rs {
    background-color: rgb(129, 55, 85); /* Magenta escuro */
}

.mentors .mentor .activity .edu {
    background-color: rgb(124, 88, 44); /* Marrom médio */
}

.mentors .mentor .activity .gp {
    background-color: rgb(129, 74, 52); /* Laranja escuro */
}

.mentors .mentor .activity .design {
    background-color: rgb(105, 57, 129); /* Roxo claro */
}

.mentors .mentor .activity .ai {
    background-color: rgb(77, 123, 129); /* Azul esverdeado */
}

.mentors .mentor .activity .sm {
    background-color: rgb(129, 60, 40); /* Marrom avermelhado */
}

.mentors .mentor .activity .sust {
    background-color: rgb(96, 129, 53); /* Verde oliva */
}
.mentors .mentor .content {
    font-size: 0.9em;
    line-height: 1.6em;
    text-align: justify;
    height: 150px;
    margin-top: 20px;
    overflow-y: auto;
}
.buttons-contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.buttons-contacts .button-contact {
    background-color: rgba(40, 40, 55, 1);
    border: 1px solid var(--accent-color);
    color: #fff;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.buttons-contacts .button-contact .title {
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 60%);
    padding: 10px;
    width: 100%;
    position: relative;
}
.buttons-contacts .button-contact .info {
    padding: 15px;
    line-height: 1.5em;

}
footer {
    display: flex;
    justify-content: space-around;
    font-size: 1em;
    align-items: center;
    padding: 20px 0;
}
footer .dev {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}
footer .logo-dev {
    height: 32px;
}

footer .logo {
    height: 32px;
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}
.partners .partner {
    background-color: rgba(255, 255, 255, 1);
    height: 150px;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: transform 0.2s;
    
}

.organizers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.organizers .organizer img {
    border-radius: 50%;
    width: 200px;
}
/* .partners .partner:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transform: scale(1.2);
} */
.partners .partner img {
    max-height: 120px;
    max-width: 150px;
    /* filter: drop-shadow(0 0 1px #fff)
            drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0px 30px #fff) 
            drop-shadow(0 -15px 30px #fff)
            ; */

}
@media screen and (min-width: 1200px) {
    section.container .flex-column {
        flex-direction: row;
    }
    section.container .flex-column img {
        max-width: 50%;
    }
}
@media screen and (max-width: 980px) {
    header {
        flex-direction: column;
        height: 60px;
        overflow: hidden;
    }

    header .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 50px;
        padding: 10px 0;
    }

    header .logo a {
        margin-left: 0;
    }
    header .logo a img {
        height: 30px;
    }

    header nav ul {
        justify-content: center;
    }
    header nav ul li ul {
        top: 100%;
        left: 0;
        position: static;
        display: block;
        flex-direction: row;
    }

    header .menu-toggle {
        display: block;
    }

    .banner .logos {
        padding: 0 5vw 5vw 5vh;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }
    .container {
        width: 95vw;
        margin: 0 auto;
    }
    .banner {
        height: 50vh;
    }
    
    section.container .flex-column iframe {
        width: 100%;
    }
    .buttons-contacts {
        flex-direction: column;
    }
    .hacka-sagita img {
        width: 100px;
    }
    .premiacao {
        flex-direction: column;
    }

    .teams {
        grid-template-columns: repeat(auto-fill, 23%);
    }
    .organizers .organizer img {
        width: 150px;
    }
    .mentors .mentor {
        --mentor-width: 280px;
    }
}
@media screen and (max-width: 700px) {
    .organizers .organizer img {
        width: 100px;
    }
    .mentors .mentor {
        --mentor-width: 280px;
    }
    .teams {
        grid-template-columns: repeat(auto-fill, 30%);
    }
    .premiacao {
        grid-template-columns: auto;
    }
}