* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #ffffff;
    font-size: 100%;
    font-family: Inter;
    color: #1F1D3B;
}

p {
    cursor: default;
}


/* cabecalho  */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2% 2% 2%;
    transition: all 0.5s;
    margin-bottom: 0;
    border-bottom-style: solid;
    border-bottom-color: #1F1D3B;
    border-bottom-width: .02rem;
}

.logo-img {
    height: 6em;
    right: 1.5%;
    cursor: pointer;
}

.nav-link {
    color: #1F1D3B;
    font-size: larger;
}

.nav-link:hover {
    color: #FF6C19;
    transition: .3s;
}

/* centro  */

.main-content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 10%;
    padding-top: 0;
    padding-bottom: 0;
}

.lamp-img {
    height: 510.44px;
}

.main2 {
    display: flex;
    flex-direction: column;
    justify-content: right;
    gap: 2rem;
}

.p1 {
    font-size: xx-large;
    font-weight: bold;
    color: #1F1D3B;
}


.p2 {
    font-size: larger;
}

.p3 {
    font-size: larger;
}

button {
    width: 50%;
    padding: 1rem;
    background-color: #FF6C19;
    border-style: solid;
    border-color: #1F1D3B;
    border-radius: 10px;
    font-family: Inter;
    font-style: bold;
    font-size: large;
}

button:hover {
    background-color: #ffa774;
    transition: .3s;
    cursor: pointer;
}


/* rodape  */

.footer {
    border-top-style: solid;
    border-top-color: #1F1D3B;
    border-top-width: .02rem;
    padding-top: 4%
}

.footer>p {
    position: relative;
    text-align: right;
    float: left;
    margin: 10px;
    bottom: 0;
    cursor: default;
}

/* responsividade  */

@media (max-width: 852px) {

    .lamp-img {
        display: none;
    }

    .main-content {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}

@media (max-width: 357px){

        header {
            border: none;
        }

        .footer {
            border: none;
        }
}