/* Reset and general styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #ececec;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header styling */
.container {
    width: 100%;
    text-align: center;
}

.interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.interface .img1 img {
    width: 80%;
    max-width: 500px;
    height: auto;
}

/* Main content styling */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.remote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.img21 img {
    width: 100px;
    height: auto;
    border-radius: 4px;
}

.img2 {
    border-radius: 5px;
    transition: transform 0.5s;
    margin-top: 30px;
    margin-left: 85px;
}

.img2:hover {
    transform: scale(1.08);
}

.remote-text {
    margin-top: 40px;
}

.remoto a {
    margin-top: -50px;
    padding: 10px 50px;
    font-weight: bold;
    color: #fff;
    background-color: #ffd000;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #da0404;
    text-decoration: none;
}

.remoto a:hover {
    color: #161311;
}

.alink {
    margin-top: 90px;
}


.btn1:hover {
    background-color: orange;
}

/* Contact section */
#sobre {
    margin-top: -50px;
    max-width: 100%;
}

.contact-section {
    margin-bottom: 55px;
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #000; /* Primeira cor de fundo */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Para garantir que o pseudo-elemento não transborde */
    z-index: 2; /* Adiciona z-index */
    width: 100vw;  /* Define a largura para 100% da viewport */
    left: 40%;
    right: 40%;
    margin-left: -50vw; /* Centraliza horizontalmente */
    margin-right: -49vw; /* Centraliza horizontalmente */
}

.contact-section > * {
    position: relative;
    z-index: 3; /* Garante que o conteúdo fique acima do pseudo-elemento */
    max-width: 112.1rem; /* Limita a largura máxima dos conteúdos internos */
    width: 100%; /* Define a largura para 100% do elemento pai */
}

/* .cor1 {
    background-color: #000;
    height: 1000px;
    margin-top: 30px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1; /* Adiciona z-index 
} */

/* Sidebar */
.sidebar-container {
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 4px 2px;
}

/* wdawdawdawd */
.about-section,
.contact-section{
    padding: 4rem 1rem;
    text-align: center;
    color: white;
}

.about-section h2,
.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f58114;
}


footer {
    background-color: #ffd000; /* #007BFF */
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: -5rem;
    z-index: 2; /* Adiciona z-index */
}

footer p {
    font-size: 1rem;
}

/* wajhdauhd */
::-webkit-scrollbar {
    width: 4.9px;
}

::-webkit-scrollbar-track {
    border: 7px solid #232943;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, .5) inset;
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: linear-gradient(
        45deg,
        #ffd000,
        #ff9900
    );
}



