@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Aeros';
    src: url('fontes/aeros.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: white;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.219);
    border: 2px solid white;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-main);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans 3', sans-serif;
    box-sizing: border-box;
}

main {
    max-width: 1000px;
    padding: 20px;
    margin: 0 auto;
}

header {
    width: 100%;
    margin: 0 auto;
    height: calc(100dvh - 90px);
    /* Ajuste conforme necessário */
    position: relative;
    display: flex;
    align-items: center;

}

/* Fundo do header em pseudo-elemento com z-index negativo */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/GHBR.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* fundo atrás do canvas */
    pointer-events: none;
}

/* Canvas de ondas elétricas dentro do cta-final */

#electric-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

#cta-final .opacaixa {
    position: relative;
    z-index: 1;
}

.contaudo-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    /* garantir que o conteúdo fique acima do canvas */

}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 550px;
    z-index: 2;
}

.logo_aula {
    max-width: 300px;
    margin-top: -30px;
}

#scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.titulosub {
    margin: 1.5rem 0;
    text-align: center;
    max-width: 450px;
    padding: 2em 0.1em;
    border: 2px solid #fff;
    border-radius: 10px 0 10px 0;
    display: inline-block;
    text-shadow:
        0 0 6px #fff,
        0 0 10px #fff,
        0 0 20px #6ee0ff,
        0 0 40px #6ee0ff,
        0 0 70px #3bd0ff;
    -webkit-text-shadow:
        0 0 6px #fff,
        0 0 10px #fff,
        0 0 20px #6ee0ff,
        0 0 40px #6ee0ff,
        0 0 70px #3bd0ff;
    box-shadow:
        0 0 6px #fff,
        0 0 18px #6ee0ff,
        0 0 32px #3bd0ff;
    -webkit-box-shadow:
        0 0 6px #fff,
        0 0 18px #6ee0ff,
        0 0 32px #3bd0ff;
    animation: neonPulse 2.4s ease-in-out infinite;
    -webkit-animation: neonPulse 2.4s ease-in-out infinite;

}

.titulosub.neon-flicker {
    animation: neonFlicker 0.12s steps(2, end) infinite;
    -webkit-animation: neonFlicker 0.12s steps(2, end) infinite;
}

.titulo_principal {
    font-family: 'Aeros', 'Source Sans 3';
    font-size: 2.5rem;
    color: #fff;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 350px;

    margin: 0 auto;
    margin-bottom: 0.1em;
}

.safari .titulo_principal {
    color: #fff;
    -webkit-text-stroke: 0;
    -webkit-text-fill-color: #fff;
    text-shadow: none;
}

@keyframes neonFlicker {
    0% {
        border-color: #fff;
        box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }

    25% {
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow:
            0 0 2px #fff;
    }

    55% {
        border-color: #fff;
        box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }

    80% {
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow:
            0 0 3px #fff;
    }

    100% {
        border-color: #fff;
        box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }
}

@-webkit-keyframes neonFlicker {
    0% {
        border-color: #fff;
        -webkit-box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }

    25% {
        border-color: rgba(255, 255, 255, 0.35);
        -webkit-box-shadow:
            0 0 2px #fff;
    }

    55% {
        border-color: #fff;
        -webkit-box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }

    80% {
        border-color: rgba(255, 255, 255, 0.6);
        -webkit-box-shadow:
            0 0 3px #fff;
    }

    100% {
        border-color: #fff;
        -webkit-box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }
}

@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        -webkit-text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
        -webkit-box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
    }

    27% {
        text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 22px #6ee0ff,
            0 0 38px #6ee0ff,
            0 0 70px #3bd0ff;
        -webkit-text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 22px #6ee0ff,
            0 0 38px #6ee0ff,
            0 0 70px #3bd0ff;
        box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
        -webkit-box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }

    54% {
        text-shadow:
            0 0 6px #fff,
            0 0 12px #fff,
            0 0 26px #6ee0ff,
            0 0 48px #6ee0ff,
            0 0 82px #3bd0ff;
        -webkit-text-shadow:
            0 0 6px #fff,
            0 0 12px #fff,
            0 0 26px #6ee0ff,
            0 0 48px #6ee0ff,
            0 0 82px #3bd0ff;
        box-shadow:
            0 0 8px #fff,
            0 0 22px #6ee0ff;
        -webkit-box-shadow:
            0 0 8px #fff,
            0 0 22px #6ee0ff;
    }

    78% {
        text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 24px #6ee0ff,
            0 0 42px #6ee0ff,
            0 0 76px #3bd0ff;
        -webkit-text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 24px #6ee0ff,
            0 0 42px #6ee0ff,
            0 0 76px #3bd0ff;
        box-shadow:
            0 0 6px #fff,
            0 0 20px #6ee0ff;
        -webkit-box-shadow:
            0 0 6px #fff,
            0 0 20px #6ee0ff;
    }

    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        -webkit-text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
        -webkit-box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
    }
}

@-webkit-keyframes neonPulse {
    0% {
        text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        -webkit-text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
        -webkit-box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
    }

    27% {
        text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 22px #6ee0ff,
            0 0 38px #6ee0ff,
            0 0 70px #3bd0ff;
        -webkit-text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 22px #6ee0ff,
            0 0 38px #6ee0ff,
            0 0 70px #3bd0ff;
        box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
        -webkit-box-shadow:
            0 0 6px #fff,
            0 0 18px #6ee0ff;
    }

    54% {
        text-shadow:
            0 0 6px #fff,
            0 0 12px #fff,
            0 0 26px #6ee0ff,
            0 0 48px #6ee0ff,
            0 0 82px #3bd0ff;
        -webkit-text-shadow:
            0 0 6px #fff,
            0 0 12px #fff,
            0 0 26px #6ee0ff,
            0 0 48px #6ee0ff,
            0 0 82px #3bd0ff;
        box-shadow:
            0 0 8px #fff,
            0 0 22px #6ee0ff;
        -webkit-box-shadow:
            0 0 8px #fff,
            0 0 22px #6ee0ff;
    }

    78% {
        text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 24px #6ee0ff,
            0 0 42px #6ee0ff,
            0 0 76px #3bd0ff;
        -webkit-text-shadow:
            0 0 5px #fff,
            0 0 11px #fff,
            0 0 24px #6ee0ff,
            0 0 42px #6ee0ff,
            0 0 76px #3bd0ff;
        box-shadow:
            0 0 6px #fff,
            0 0 20px #6ee0ff;
        -webkit-box-shadow:
            0 0 6px #fff,
            0 0 20px #6ee0ff;
    }

    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        -webkit-text-shadow:
            0 0 4px #fff,
            0 0 9px #fff,
            0 0 18px #6ee0ff,
            0 0 30px #6ee0ff,
            0 0 55px #3bd0ff;
        box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
        -webkit-box-shadow:
            0 0 4px #fff,
            0 0 14px #6ee0ff;
    }
}

.subtitulo-principal {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #e8f7ff;
    text-shadow: 0 0 6px rgba(110, 224, 255, 0.6);
    -webkit-text-shadow: 0 0 6px rgba(110, 224, 255, 0.6);
    margin: 0;
}

.meta-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;

}

.meta-item {
    background: white;
    padding: 10px 14px;
    min-width: 130px;
    backdrop-filter: blur(6px);
    border-radius: 0 0 0 10px;
    flex: 1;
}

.meta-item:nth-child(3) {
    border-radius: 0px;
}

.meta-item:nth-child(4) {
    border-radius: 0 0 10px 0;
}

.meta-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #45b7e5;
}

.meta-label i {
    margin-right: 2px;
}

.meta-value {
    font-size: 1.2rem;
    color: #1b3556;
    font-weight: 700;

}

.texto-header {
    display: flex;
    margin-left: -70px;
    z-index: 1;

}

.gil {
    position: relative;
    display: inline-block;
}

.gil img {
    max-width: 500px;
    margin-bottom: -100px;
    margin-top: -50px;
    object-position: top;
    object-fit: cover;
}

.speaker-tag {
    background-color: #1b3556;
    padding: 14px;
    font-size: 1.28rem;
    border-radius: 10px 10px 0 0;
    color: white;
    font-weight: 600;
    flex: 1 0 100%;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 1100px) {


    .contaudo-header {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }


    header {
        height: 100%;
        overflow: hidden;
        padding: 100px 0;
        padding-bottom: 130px;
    }

    .texto-header {
        max-height: 300px;
        z-index: 2;
    }

    .gil {
        margin-bottom: 0;
        margin-left: 50px;
        margin-top: -20px;
        object-position: top;
        object-fit: cover;
    }

    .meta-info {
        z-index: 3;
        max-width: 550px;
        padding: 0 20px;
    }

    .logo-container {
        padding: 0 20px;
    }
}

@media (max-width: 760px) {
    .convidado {
        flex-direction: column;
        align-items: center;
    }






    .convidado .segundaparte {
        margin-top: -60px;
    }

    .container-convidado {


        width: 100%;
        height: 350px;
    }

    .convidado img {
        object-position: top;
        max-width: 100% !important;

    }
}

@media (max-width: 537px) {

    .subtitulo-principal,
    .titulo_principal {
        padding: 0 10px;
    }

    .meta-item:nth-child(2) {
        border-radius: 0px;
    }

    .meta-item:nth-child(3) {
        border-radius: 0px;
    }

    .meta-item:nth-child(4) {
        border-radius: 0 0 10px 10px;
    }

    .titulo_principal {
        font-size: 2.1rem;
        max-width: 300px;
    }

}


@media (min-width: 768px) and (max-height: 820px) {

    .contaudo-header {
        transform: scale(0.9);
    }
}

@media (min-width: 768px) and (max-height: 720px) {
    .contaudo-header {
        transform: scale(0.8);
    }
}




/* convidado --------------------------------------------------------------------------------------------------------------------------------------------------*/

.convidado {
    border: 2px solid #044488;
    padding: 20px;
    display: flex;
    gap: 20px;
    border-radius: 10px 0 10px 0;
}

.convidado h3 {
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
}



.convidado img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    max-width: 450px;

}


section {
    margin: 100px 0;
}

section:last-child {
    margin-bottom: 0;
}

/* Sobre section */
.sobre {
    text-align: center;
}

.sobre h1 {
    color: #1b3556;
    margin-top: 0;
}

.sobre p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Botão Inscreva-se padrão eventos */
.btn2 {
    font-weight: bold;
    margin-top: 10px;
    max-width: 450px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #033c82;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Source Sans 3', sans-serif;
    transition: all 0.3s;
    text-transform: uppercase;

    font-size: 18px;
    text-decoration: none;
    text-align: center;
    z-index: 999;
    box-shadow: inset 0 0 0 2px #f9e20f;
    background-color: #f9e20f;
    color: #242527;
    width: calc(100% - 40px);
}

.btn2:hover {
    box-shadow: inset 0 0 0 2px #f9e20f;
    color: white;
    background-color: transparent;
}

.btn2.mobile-margin {
    margin-top: 20px;

}

.topicos {
    display: flex;
    gap: 20px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.topicos h2 {
    margin-top: 0;
    margin-bottom: -5px;
}

.topicos div {
    display: flex;
    max-width: 320px;
    flex-direction: column;
    align-items: center;
}

.titulodiferente {
    text-align: center;
    background-color: #45b7e5;
    transform: rotate(2deg);
    border-radius: 5px;
    color: white;
    font-size: x-large;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px 20px;


}


iframe {
    border-radius: 10px;
}

.segundobotao {
    margin-top: 30px;
    max-width: 100% !important;
    width: auto;

}


#cta-final {
    padding: 30px 0 50px 0;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #044488;
    position: relative;
    overflow: visible;
    margin-top: 100px;
}

.opacaixa {
    max-width: 1000px;
    padding: 20px;
    margin: 0 auto;

}

.opacaixa h1 {
    color: white;
    margin-top: 0;
}


.opacaixa p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

/* Styles for the tags */
.tags-container {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    gap: 0.5em;
    z-index: 10;
}

.tag {
    background-color: #45b7e5;
    color: #044488;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0.3em 0.6em;
    border-radius: 5px;
    border: 2px solid #044488;
    white-space: nowrap;
}