@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav {
    background-color: #0067a3;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo a {
    text-decoration: none;
    color: white;
    font-size: 35px;
    font-weight: 600;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 10px;
}

nav li {
    margin-left: 7px;
}

nav li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

nav li a:hover {
    background-color: white;
    color: black;
}

.banner {
    height: 95vh;
    /*    background: linear-gradient(hsla(103, 29%, 31%, 0.282), hsla(103, 100%, 78%, 0.282)), url('background.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.texto .titulo {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
}

.texto .sub_titulo {
    color: #fff;
    font-size: 58px;
    font-weight: 600;
}

.texto .botoes {
    margin-top: 1px;

}

.texto .botoes button {
    height: 90px;
    width: 170px;
    border-radius: 5px;
    border: 0;
    margin: 0 10px;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    transition: 0.8s;
}

.texto .botoes button.n-overlay {
    color: white;
    background: none;
    border: 2px solid white;
}

.texto .botoes button.n-overlay:hover {
    color: black;
    background-color: white;
}

.texto .botoes button.overlay {
    background: linear-gradient(oklab(72.353% -0.08699 -0.10751 / 0.486), rgba(248, 0, 0, 0.300));
    color: white;
    animation: vibrar 0.6s ease-in-out infinite both;
}

@keyframes vibrar {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.testoap {
    text-align: justify;
}

.link1 {
    text-align: center;
    background: #DFDFDF;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border-width: 4px;
    border-style: solid;
    border-top-color: #DFDFDF;
    border-right-color: #DFDFDF;
    border-bottom-color: #DFDFDF;
    border-left-color: #DFDFDF;
    background: #DFDFDF;
    color: #FFF;
    font-weight: bold;
    border-color: #DFDFDF;
}

.link2 {
    text-align: center;
    background: #DFDFDF;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border-width: 4px;
    border-style: solid;
    border-top-color: #DFDFDF;
    border-right-color: #DFDFDF;
    border-bottom-color: #DFDFDF;
    border-left-color: #DFDFDF;
    background: #DFDFDF;
    color: #FFF;
    font-weight: bold;
    border-color: #DFDFDF;
}

.fotos {
    padding: 30px;
    padding-top: 90px;
}

.dark-mode {
    background-color: black;
    color: white;
}

.light-mode {
    background-color: white;
    color: black;
}

/*Aqui estão as configurações das imagens dos parceiros*/
/* Reset de margens e paddings */
.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Espaçamento entre as imagens */
}

.image-wrapper {
    width: 250px;
    /* Largura das imagens */
    height: 250px;
    /* Altura das imagens */
    overflow: hidden;
    /* Para garantir que as bordas arredondadas sejam visíveis */
    border-radius: 50px;
    /* Bordas arredondadas */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Sombra para destacar as imagens */
    transform: translateZ(0);
    /* Ativa a renderização 3D */
    transition: transform 0.3s ease-out;
    /* Transição suave ao passar o mouse */
}

.image-wrapper:hover {
    transform: scale(1.08);
    /* Efeito de escala ao passar o mouse */
}

.image-wrapper img {
    width: 100%;
    /* Imagem ocupa toda a largura do seu contêiner */
    height: 100%;
    /* Imagem ocupa toda a altura do seu contêiner */
    object-fit: cover;
    /* Para cobrir todo o espaço disponível sem distorção */
    border-radius: 10px;
    /* Garante que as bordas da imagem sejam arredondadas */
}

.image-container {
    margin-left: 100px;
}

/* Additional CSS for image dimensions */
.texto figure img {
    width: 30px;
    /* Set the width to 30px */
    height: 30px;
    /* Set the height to 30px */
    object-fit: cover;
    /* Ensure the image covers the set dimensions without distortion */
}

/* Adjusted CSS for image and button spacing */
.texto .botoes {
    margin-top: 1px;
    /* Set to a smaller value to reduce the space */
}

.texto figure img {
    width: 30px;
    /* Set the width to 30px */
    height: 30px;
    /* Set the height to 30px */
    object-fit: cover;
    /* Ensure the image covers the set dimensions without distortion */
}

.conteiner {
    position: relative;
    display: inline-block;
}

.hover-element {
    padding: 20px;
    background-color: 3498db;
    color: #FFF;
    border-radius: 5px;
}

.info-box {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: 2ecc71;
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition: opacity 0.3s ease;
    bottom: 120px;
    /*posição acima do hover-element*/
    left: 50%;
    transform: translateX(-50%);
}

.hover-element:hover+.info-box {
    visibility: visible;
    opacity: 1;
}


/*recursividade do site*/
@media screen and (max-widht:768px) {
    .conteiner {
        display: block;
        background-image: none;
    }

    .conteiner__image {
        width: 50vh;
    }

    .conteiner__caixa {
        margin: 2em 2em;
    }
}

body {
    font-size: 16px;
}

/*aqui são os ajustes para telas dde celulares*/
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 10px;

    }

    .logo a {
        font-size: 25px;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .banner {
        height: auto;
        padding: 20px;
        background-position: top;
    }

    .texto .titulo {
        font-size: 40px;
    }

    .texto .sub_titulo {
        font-size: 35px;
    }

    .texto .botoes button {
        height: 60px;
        width: 140;
        font-size: 16px;
    }

    .image-container {
        margin-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .image-wrapper {
        width: 100%;
        height: auto;
    }

}

/* Ajustes para telas menores que 480px */
@media screen and (max-width: 480px) {
    .logo a {
        font-size: 20px;
    }

    .texto .titulo {
        font-size: 30px;
    }

    .texto .sub_titulo {
        font-size: 25px;
    }

    .texto .botoes button {
        height: 50px;
        width: 120px;
        font-size: 14px;
    }
}

video#myVideo {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    /* Ajusta a altura para compensar o deslocamento */
    object-fit: cover;
    z-index: -1;
}

nav {
    position: relative;
    z-index: 2;
}

.texto,
.arrow-container {
    position: relative;
    z-index: 2;
}

.imgmanuel {
    position: absolute;
    top: calc(10px + [altura da navbar]);
    left: 0;
}

.arrow-container {
    position: relative;
    width: 50px;
    height: 100px;
}

.arrow {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid #3498db;
    animation: bounce 1s infinite;
    transform: rotate(45deg);
    transform-origin: bottom;
}

.shaft {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 10px;
    height: 100px;
    background-color: #3498db;
    transform: translateX(-50%);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

#myVideo {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.parceiros {
    background-image: url(img/fundoin.jpg);
    height: 180vh;
}

.image-juc {
    width: 300px;
    /* Largura das imagens */
    height: 280px;
    /* Altura das imagens */
    overflow: hidden;
    /* Para garantir que as bordas arredondadas sejam visíveis */
    border-radius: 100px;
    /* Bordas arredondadas */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Sombra para destacar as imagens */
    transform: translateZ(0);
    /* Ativa a renderização 3D */
    transition: transform 0.3s ease-out;
    /* Transição suave ao passar o mouse */

}

.imgmanuel {
    margin-left: 5vh;
    animation: vibrar 0.6s ease-in-out infinite both;
}
.pdf{
    
}