@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100vh;
    background: #000;
    color: white;
}

nav {
    width: 100%;
    height: 10vh;
    position: sticky;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2%;
}

.hamburg {
    display: none;
}

.nav-container .links {
    display: flex;
    gap: 3rem;
    width: 100%;
    align-items: center;
}

.nav-container .links a {
    position: relative;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-container .links a::before {
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #00ff00;
    transition: 0.2s linear;
}

.nav-container .links a:hover::before {
    width: 100%;
}

.nav-container .contact-btn {
    margin-left: auto;
    margin-right: 4%;
    cursor: pointer;
}


dialog{
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    z-index: 1000; 
    width: 30%; 
    min-width: 450px; 
    min-height: 200px; 
    padding: 20px; 
    background-color: white; 
    border-radius:  10px; 
    border: 3px solid #50C878;
    cursor: pointer;
}


.fechar {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    color: rgb(255, 0, 0);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.botao-baixar{
    margin-top: 8% ;
    display: inline-block;
    background-color: green;
    color: white; 
    text-decoration: none; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-size: 16px; 
    font-family: Arial, sans-serif; 
    cursor: pointer;
}
    
.botao-baixar:hover {
    background-color: darkgreen;
  }

.linha {
    width: 100%;
    height: 1px;
    background-color: #1f232a; 
    margin: 0;
    padding: 0;
}

.nav-container .links a:hover {
    color: #00ff00;
}

.dropdown {
    display: none;
}

section {
    width: 100%;
    height: 90vh;
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.main-container .image {
    width: 50%;
}

.main-container .image img {
    height: 60vh;
    margin-left: 22%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.main-container .content {
    width: 40%;
}

.content h1 {
    font-size: clamp(1rem, 2rem + 5vw, 2.2rem);
}

.link.ativo a {
    color: #00ff00;
}

.link.ativo a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00ff00;
}

.content h1 span,
p span {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.content p {
    font-size: clamp(0.4rem, 0.2rem + 9vw, 1rem);
    margin: 10px 0;
}

.social-links i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid white;
    border-radius: 0.5rem;
    color: white;
    margin: 5px 10px;
    font-size: 1.5rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.social-links i:hover {
    color: #00ff00;
    border-color: #00ff00;
    filter: drop-shadow(0 0 10px #00ff00);
}

.content button {
    width: 40%;
    height: 6vh;
    margin: 30px;
    background-color: #00ff00;
    color: black;
    border: none;
    font-size: 100%;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.2s linear;
}

.content button:hover {
    scale: 1.1;
    color: #00ff00;
    border: 2px solid #00ff00;
    background-color: transparent;
    box-shadow: 0 0 40px #00ff00;
}