@charset "UTF-8";

html,body{
    scroll-behavior: smooth;
}

.fundo-header {
    min-height: 65vh;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Véu escuro sobre a foto do banner. Era um bloco no fluxo com height:100%,
   o que só funcionava porque o banner tinha altura fixa — e impedia o banner
   de crescer com o conteúdo. Como overlay absoluto, sai do fluxo e o banner
   fica livre para usar min-height. */
.fundo-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: .6;
    pointer-events: none;
    z-index: 0;
}

.custom-toggler.navbar-toggler{
    border-color: white;
}
.custom-toggler .navbar-toggler-icon {

    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.nav-content {

    z-index: 2;
    top: 0;
    left: 0;
    font-family: 'Montserrat', sans-serif;
    transition: all 400ms ease-in-out;
}
.ativo {
    background-color: rgba(0, 0, 0, .8);
    
}
.nav-logo {
    width: 100px !important;
}
.container-ul-nav, .container-ul-nav-d{
    color: white;
    padding: 8px;
    -webkit-touch-callout: none;  /* iPhone OS, Safari */
    -webkit-user-select: none;    /* Chrome, Safari 3 */
    -khtml-user-select: none;     /* Safari 2 */
    -moz-user-select: none;       /* Firefox */
    -ms-user-select: none;        /* IE10+ */
    user-select: none;            /* Possível implementação no futuro */
    /* cursor: default; */
}
.separador-menu {
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: #ffffff;
    border-radius: 5px;
    position: relative;
    top: -3px;
}
.separador-menu-left {
    left: 8px;
}
.container-ul-nav-d:hover {
    color: #0afbc4;
}
.nav-item:hover .separador-menu{
    background-color: #0afbc4;
} 


.container-nav ul li {
    position: relative;
}
.container-ul-nav-d:hover ul li a{
    color: white;   
}
.container-ul-nav-d ul li a:hover{
    background-color: transparent;
    color: #0afbc4;

}

/* .container-nav ul li a::before {
    content: "";
    display: block;
    height: 5px;
    background-color: #0afbc4;
    position: absolute;
    top: 0;
    width: 0;
}
.container-nav ul li a:hover:before {
    width: 100%;
    left: 50%;
} */
.navbar-nav .nav-item .nav-link{
    color: white;
}


.navbar-nav .nav-item .nav-link:hover{
    color: #0afbc4;
}
.container-ul-nav-d{
    color: white;
}
.container-ul-nav-d:hover{
    color: #0afbc4;
}
/* O gatilho do dropdown virou <button data-bs-toggle="dropdown">, então o
   Bootstrap abre no clique em qualquer largura — inclusive em tablet grande,
   onde o hack antigo (window.screen.width <= 991) falhava e deixava o submenu
   inalcançável ao toque. O hover fica só onde o ponteiro realmente existe. */
.gatilho-dropdown {
    background: none;
    border: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.gatilho-dropdown:focus-visible {
    outline: 2px solid #0afbc4;
    outline-offset: 3px;
}

.lista-container.dropdown-menu {
    background-color: rgba(0, 0, 0, .9);
    margin-top: 8px;
}

@media (hover: hover) and (min-width: 992px) {
    .hover-container:hover > ul.dropdown-menu {
        display: block;
    }
}

.container-ul-nav-d ul li a:hover{
    background-color: transparent;
    padding: -10px ;
    color: #0afbc4;
    
}
.titulo-header {
    color: white;
    z-index: 1;
    font-size: 2.3em;
    line-height: 1.25;
	font-weight: bold;
	text-align: left;
}

.titulo-container {
    z-index: 1;
	width: 100%;
	top: 17%;
	display: flex;
	justify-content: center;
}

.titulo-col {
	width: 50%;
	display: flex;
	align-items: center;
	flex-direction: column;
    justify-content: center;
}

.imagem-col {
	width: 25%;
	display: flex;
	justify-content: end;
}

.botao-header {
	text-decoration: none;
	color: #01FFC1;
	padding: 10px 15px;
	display: block;
	background-color: #013C64;
	border-radius: 5px;
	margin-top: 15px;
	transition: color .3s ease-in;
}

.botao-header:hover {
	color: white;
}

.imagem-premio {
	width: 300px;
	height: auto;
	border: 4px solid #ddd;
	
}

.titulo-container i {
    font-weight: bold;
    font-style: italic;

}
.navbar-nav{
    width: 100%;
}

/* MOBILE */
@media screen and (max-width: 1399.98px){
	.titulo-header {
        font-size: 1.2em;
    }
	
	.titulo-container {
        z-index: 1;
        width: 100%;
        top: 22%;
        align-items: center;
    }
	
	.titulo-col {
		width: 50%;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}

	.imagem-col {
		width: 30%;
		display: flex;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.imagem-premio {
		width: 250px;
		height: auto;	
	}
	
	/* Era `height: 75vh !important`. O !important vencia o 65vh do <style> inline
	   de header.php e tornava código morto os 55vh e 40vh dos breakpoints
	   menores — o banner tinha 75vh em TODA largura abaixo de 1401px, inclusive
	   celular em landscape. Vira piso, não teto. */
	.fundo-header {
		min-height: 75vh;
		height: auto;
	}
}

@media screen and (max-width: 991.98px){
    /* Abaixo de 992px o título do banner sai do position:absolute e volta ao
       fluxo. Antes ele era absoluto dentro de uma caixa de altura fixa, então
       nunca empurrava o banner: em 375x812 o conteúdo pedia 741px numa caixa
       de 609px e 132px de título vazavam para trás da seção seguinte — na home
       sumiam "AWS NA AMÉRICA LATINA 2024" e o botão "Clique aqui".
       position:relative (e não static) para o z-index continuar valendo sobre
       o ::after. Os !important derrubam os utilitários do Bootstrap que vêm
       no HTML (position-absolute, top-50, start-50, translate-middle). */
    .fundo-header {
        display: flex;
        align-items: center;
        padding: 120px 20px 48px;
    }

    .titulo-container {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 auto;
    }

    .separador-menu {
        display: none;
    }
    .lista-container {
        color: white;
        background-color: black;
    }
    .lista-container a {
        color: white;
    }
	
	.titulo-header {
        font-size: 1.1em;
    }
	
	.titulo-container {
        z-index: 1;
        width: 100%;
        top: 25%;
        align-items: center;
        flex-direction: column;
    }
	
	.titulo-col {
		width: 68%;
		display: flex;
		align-items: center;
		flex-direction: column;
		order: 2;
		justify-content: center;
	}

	.imagem-col {
		width: 90%;
		display: flex;
		order: 1;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.imagem-premio {
		width: 180px;
		height: auto;	
	}
	
}
@media screen and (max-width: 767.98px){
    .container-ul-nav-d {
        padding-left: 0;
    }
	
	.titulo-header {
        font-size: 1.1em;
    }
	
	.titulo-container {
        z-index: 1;
        width: 100%;
        top: 25%;
        align-items: center;
        flex-direction: column;
    }
	
	.titulo-col {
		width: 68%;
		display: flex;
		align-items: center;
		flex-direction: column;
		order: 2;
		justify-content: center;
	}

	.imagem-col {
		width: 90%;
		display: flex;
		order: 1;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.imagem-premio {
		width: 170px;
		height: auto;	
	}
}
@media screen and (max-width: 575.98px){
    .container-ul-nav-d ul li{
        font-size: 0.8em;
    }
    .navbar-nav {
        justify-content: end;
    }
    .titulo-header {
        font-size: 1.1em;
    }
    .titulo-container {
        z-index: 1;
        width: 350px;
        left: 10%;
        top: 25%;
		flex-direction: column;
    }
	
	.titulo-col {
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		order: 2;
		justify-content: center;
	}

	.imagem-col {
		width: 100%;
		display: flex;
		order: 1;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.imagem-premio {
		width: 150px;
		height: auto;	
	}

    .fundo-header {
        min-height: 55vh;
        height: auto;
    }
    
}
@media screen and (max-width: 400px){
    .titulo-header {
        font-size: 1em;
    }
    .titulo-container {
        z-index: 1;
        width: 350px;
        left: 5%;
        top: 50%;
    }
	
	.titulo-col {
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		order: 2;
		justify-content: center;
	}

	.imagem-col {
		width: 100%;
		display: flex;
		order: 1;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.imagem-premio {
		width: 150px;
		height: auto;	
	}
	
    .fundo-header {
        min-height: 40vh;
        height: auto;
    }
}

@media screen and (max-width: 360px){
    .titulo-header {
        font-size: 0.95em;
    }
    .titulo-container {
        z-index: 1;
        width: 300px;
        left: 5%;
        top: 20%;
    }
    
	.titulo-col {
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		order: 2;
		justify-content: center;
	}

	.imagem-col {
		width: 100%;
		display: flex;
		order: 1;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.imagem-premio {
		width: 150px;
		height: auto;	
	}
	
}


