* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: white;
    background: #1e2a38;
    overflow: hidden;
    overflow-y: auto; 
}
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.header {
    background: #000000;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    width: 100%;
    position: relative;
}
.header img {
    height: 36px;
}
.nav {
    display: flex;
    gap: 20px;
    margin-left: auto;
    position: relative;
}
.nav a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 12px;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}
.nav a:hover {
    background: #ff003c;
    color: black;
    border-radius: 5px;
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b1622;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}
.dropdown a {
    display: block;
    padding: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}
.dropdown a:hover {
    background: #25a454;
    color: black;
}
.nav-item {
    position: relative;
}
.nav-item:hover .dropdown {
    display: block;
}
.second-header {
    background: transparent;
    display: flex;
    align-items: center;
    padding: 8px 30px;
    width: 100%;
    position: relative;
    justify-content: center;
}
.second-header img {
    height: 70px;
    margin-right: 20px;
}
.second-nav {
    display: flex;
    gap: 20px;
}
.second-nav a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 12px;
    transition: background 0.3s ease, color 0.3s ease;
}
.second-nav a:hover {
    background: #ffcc00;
    color: black;
    border-radius: 5px;
}
/* Seção COLOR THE UNIVERSE */
.color-universe {
    background: #000000;
    padding: 50px 20px;
    text-align: center;
    position: relative;
}

.color-universe h2 {
    font-size: 50px;
    font-weight: bolder;
    text-transform: uppercase;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-images {
    display: flex;
    gap: 10px;
}

.carousel img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.prev, .next {
    background: #6600ff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

/* Seção FEATURES */
.features {
    background: url('background_resources.png') no-repeat center center/cover;
    padding: 60px 20px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.features h2 {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.features p {
    font-size:20px;
    padding: 40px;
    text-align: center;
}

.featuresimage {
    background: transparent;
    display: flex;
    align-items: center;
    padding: 8px 30px;
    width: 100%;
    position: relative;
    justify-content: center;
}
.features-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.features-content p {
    width: 50%;
    font-size: 16px;
    line-height: 1.5;
}

.features-content img {
    width: 45%;
    height: auto;
    border-radius: 10px;
}
.rodape{
    background-color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.images{
    background: transparent;
    display: flex;
    align-items: center;
    padding: 8px 30px;
    width: 100%;
    position: relative;
    justify-content: center;
}
.main_text{
    padding: 20px;
}
.botao{
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: #39be8779;
    border: #ffffff;
    border-style: double;
    border-color: #73a786;
    border-radius: 20px;
    border-width: 10px;
    width: 130px;
    height: 65px;
}