@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,400;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1A1A1A;
    font-family: 'Poppins', sans-serif;
}

header {
    background: #121212;
    height: 60px;
    width: 100%;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 13px;
}

.menu h1 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}
.menu ul {
    display: flex;
    list-style: none;
    padding: 0;
}
.menu li {
    margin: 0 10px;
}
.menu li a {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.menu li a:hover {
    color: #e26f6f;
    border-bottom: 6px solid #e26f6f;
    border-radius: 4px;
}

/* div inicio */
.inicio {
    display: flex;
    justify-content: space-between;
    width: 1590px;
    height: 833px;
    position: absolute;
    top: 52.2%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: #121212; */
    border-radius: 10px;
}
.left h1{
    color: #fff;
    padding-top: 16rem;
    padding-left: 22rem;
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
}
.left p {
    color: #fff;
    padding-top: 1rem;
    padding-left: 8rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
}
.img_prc {
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
}
.btn_contratar, .btn_ler_mais {
    border: none;
    border-radius: 6px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all .1s ease-in-out;
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
}
.btn_ler_mais {
    padding: 10px 30px;
    position: absolute;
    margin-left: 17rem;
    background: rgba( 211, 70, 70, 35);
    border-bottom: 4px solid rgb(133, 28, 28);
}
.btn_contratar {
    margin-left: 3rem;
    position: absolute;
    padding: 10px 30px;
    margin-left: 28rem;
    background: rgba( 65, 130, 206, 35);
    border-bottom: 4px solid rgb(17, 55, 99);
}
.btn_ler_mais:hover {
    background: rgb(151, 38, 38);
    border-bottom: 0;
    margin-top: 2px;
}
.btn_contratar:hover {
    background: rgb(28, 74, 128);
    border-bottom: 0;
    margin-top: 2px;
}

/* Animações */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}