@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Pacifico&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

#img-mente {
    width: 70px;
    height: 70px;
}

.img-section2 {
    display: none;
}

.container {
    background-color: rgb(255, 255, 255);
    max-width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    flex: 30%;
    margin-left: 50px;
}

.logo h1 {
    font-family: 'Lobster', sans-serif;
    font-size: 29px;
}

.menu {
    display: flex;
    flex: 60%;
    justify-content: right;
}

.menu a {
    color: rgb(58, 52, 52);
    text-decoration: none;
    font-size: 17px;
    padding: 5px 11px;
    margin-right: 5%;
}

.menu a:hover {
    border-top: 2px solid rgb(0, 0, 0);
}

#fale-conosco-btn {
    background-color: rgb(58, 52, 52);
    border-style: none;
    border-radius: 4px;
    color: white;
}

#fale-conosco-btn:hover {
    background-color: #e42148;
    color: white;
}

#p1 {
    font-size: 17px;
}

#p2 {
    font-size: 55px;
    margin: 0px 0px 10px 0px;

    padding: 0;
}

#p3 {
    margin-top: 0;
    color: rgb(59, 53, 53);
}

.content {
    display: flex;
    background-color: rgb(255, 255, 255);
    margin-bottom: 350px;
}

.content-r {
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    margin-top: 200px;
    max-width: 50%;
    margin-left: 10%;
}

.content-r a {
    background-color: rgb(58, 52, 52);
    padding: 14px 12px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    width: 145px;
    border-radius: 4px;
}

.content-r a:hover {
    background-color: #e42148;
}

.img-section {
    padding-top: 90px;
    max-width: 50%;
}

.img-section img {
    width: 40%;
    position: absolute;
    right: 0px;
    flex-shrink: 3;
    padding-left: 100px;
    height: auto;
    max-height: 800px;
    max-width: 400px;
}

.explanation {
    margin: 0% 4% 0% 4%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.explanation h2 {
    font-family: 'Lobster', sans-serif;
    text-align: center;
    font-size: 30px;
    padding-top: 2%;
}

.cards {
    display: flex;
    padding: 2% 5% 5% 5%;
}

.cards div {
    text-align: center;
    font-size: 14px;
}

.cards div:hover {
    background-color: #e42148;
    margin-top: 10px;
    color: white;
}

.container-card {
    border: 1px solid #e42148;
    border-radius: 8px;
    padding: 30px;
    flex-wrap: wrap;
}

.container-card .alt {
    display: none;
}

.container-card:hover .alt {
    display: flex;
    flex-direction: column;
}

.container-card:hover .card {
    display: none;
}

#card1 {
    margin-right: 10px;
}

#card3 {
    margin-left: 10px;
}

.rodape {
    max-width: 100%;
    height: 200px;
    background-image: linear-gradient(rgb(29, 21, 71), black);
    border-top: 3px solid #e42148;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rodape h3 {
    color: white;
    text-align: center;
    font-family: 'Lobster', sans-serif;
    font-size: 23px;
}

.rodape p {
    color: white;
    text-align: center;
    font-size: 13px;
    margin: 0px;
}

.whatsapp img {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 60px;
    right: 32px;
}