@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: rgb(24, 24, 24);
    width: 100vw;
}

ul {
    list-style: none;
    display: flex;
}

li {
    margin: 0 25px
}

ul li a {
    text-decoration: none;
    padding: 5px;
    color: rgb(15, 15, 15);
    position: relative;
}

ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2.5px;
    background-color: #071a33;
    left: 51%;
    bottom: 0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

ul li a:hover::after {
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    margin: auto 50px;
    font-size: 1.5rem;
}

nav p { 
    font-weight: bold;
}

.header-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.background-section{
    width: 100%;
    position: absolute;
    z-index: -1;
}

.background-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 85%;
}

.background-container {
    width: 80%;
    position: relative;
    z-index: -1;
    background: linear-gradient(to right, rgb (0, 0, 0, 0.9), black);
    display: flex;
}

.text-background {
    margin: 180px 120px;
}

.text-background h1 {
    color: white;
    font-size: 4rem;
    padding-bottom: 5vh;
}

.text-background p {
    color: white;
    text-align: justify; 
    max-width: 500px;
    font-size: 1.3rem;
}

.title-principal {
    text-align: center;
    font-size: 2.5rem;
}

.text-principal {
    margin-left: 10%;
    margin-right: 12%;
    text-align: justify;
    font-style: italic;
    color: rgb(58, 58, 58);
}

.text {
    margin-left: 10%;
    margin-right: 12%;
    text-align: justify;
    line-height: 3vh;
}

.subtitle {
    font-size: 2rem;
    text-align: center;
}

.container-image {
    text-align: center;
}

.image {
    width: 50%; 
    height: auto; 
}

.legenda-image {
    color: rgb(70, 70, 70);
}

.image2{
    width: 40%;
}

footer {
    background: #409EC8;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid white;
}
