* {
    font-family: "Arimo", sans-serif;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

h2, #navbarNav > ul > li > a {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
}

.hero {
    background-color: #710000;
    min-height: 100vh;
}

.about  {
    background-color: #E7E7E7;
    min-height: 100vh;
}

.nav-menu {
    background-color: #710000;
    color: #FFF;
}

.services  {
    background-color: #A63C06;
    color: #FFF;
    min-height: 100vh;
}

.testemonials  {
    background-color: #EEBA0B;
    min-height: 100vh;
}

.contact  {
    background-color: #FFF;
    min-height: 100vh;
}

.services p {
    font-weight: normal;
}

.service-item {
    margin: 10px auto;
    padding: 5px 15px;
}

.selo-consult {
    float: right;
    margin-top: -60px;
    margin-right: 30px;
}

.logo {
    font-size: 20px;
    color: #FFF;
}

#navbarNav ul li { 
    margin-left: 50px;
}

#navbarNav ul li a {
    color: #FFF;
}

#navbarNav ul li a:hover {
    color: #cba014;
}

.herotext {
    color: #FFF;
}

.hero {
    display: flex;
    justify-content: center; 
    align-items: center; 

    background-position: bottom left;
    background-position-x: 150px;
    background-size: contain;
    
 background-image: url('../images/d1.png');
 background-repeat: no-repeat;
}

.image-center-me {
    display: flex; 
    justify-content: space-around;
}

/* Buuttons */
.hero-btn {
    float: right;
    margin: 70px;
}
.btn-prime {
    background-color: #710000;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 10px;
}
.btn-prime:hover {
    background-color: #830909;
    color: #FFF;
}

.btn-yellow {
    background-color: #EEBA0B;
    color: #080703;
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
}

.btn-yellow:hover {
    background-color: #cba014;
    color: #080703;
    animation: moveUpDown 4s ease-in-out infinite alternate;
}

.image-me-mobile { 
    display: none;
}

.title {
    margin: 60px auto;
}

.title p {
    font-size: 13px;
    margin: 10px;
}

.items-about-me {
    list-style: none;
}

.items-about-me li  {
    padding: 60px;
}

.items-about-me li.to-right {
    margin-left: 40px;
}

.items-about-me li.to-left {
    margin-right: 0px;
}

.testemonials > button {
    height: 34px;
    padding: 0 10px;
    font-size: 14px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: center !important;
    margin: 0px auto !important;
}

/* Forms */
.form-control {
    border: 1px solid #BBB;
    border-radius: 5px;
    padding: 15px 10px;
}

.form > .form-group {
    margin: 20px auto;
}

footer {
    font-size: 12px;
}

@media (max-width: 768px) {
    
}


@media (max-width: 480px) {
    .hero {
        background-position-x: 0px;
        min-height: 94vh;
    }
    .herotext {
        margin-top: -350px;
    }
    .btn-yellow.hero-btn {
        width: 90%;
        margin: 0px auto;
        bottom: 30px;
        position: absolute;
        animation: moveUpDown 4s ease-in-out infinite alternate;
    }
    .consult-btn {
        width: 100%;
        animation: moveUpDown 4s ease-in-out infinite alternate;
    }
    .selo-consult {
        margin-top: -10px;
    }
    .image-center-me {
        display: initial;
    }
    .image-me-mobile {
        display: block;
    }
    .image-center-me {
        display: none;
    }
    .items-about-me li {
        padding: 20px;
        animation: shake 0.5s ease infinite;
    }

    .items-to-show li {
        opacity: 0; 
        animation: slideIn 1s ease forwards;
    }
}

 li img {
    margin-right: 10px;
}

.fadeIn {
    opacity: 1 !important;
}

/* Animações */
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px); 
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%); 
        opacity: 0;
    }
    100% {
        transform: translateX(0); 
        opacity: 1;
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(3deg); }
    50% { transform: translateX(5px) rotate(-3deg); }
    75% { transform: translateX(-5px) rotate(2deg); }
    100% { transform: translateX(0); }
}