@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Yesteryear&display=swap');


* {
    box-sizing: border-box;
}

:root {
    --verde: #66CDAA;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--verde);
    height: 80px;

}

header span {
    font-size: 60px;
    color: white;
    font-family: "Yesteryear", cursive;
    font-weight: normal;
    font-style: normal;

}

.hero {
    display: flex;
    width: 100%;
    /*border: 2px solid red;*/
    justify-content: center;
    align-items: center;
    text-align: center;
}

.box-img src {
    display: flex;
    width: 35%;
    height: 600px;
    justify-content: center;
    align-items: center;

}

.box-txt {
    display: flex;
    flex-flow: row wrap;
    width: 35%;
    height: 400px;
    justify-content: center;
    align-items: center;
}

.box-txt h1 {
    color: gray;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.box-txt h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 50px;
    color: var(--verde);
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 40px;
}

.box-txt p {
    color: gray;
    margin-bottom: 30px;

}

.btn-hero {
    background-color: aqua;
    padding: 15px 25px;
    text-decoration: none;
    font-family: "DM Sans";
    color: black;
    border-radius: 5px;
    transition: 0.5s all;
    margin-bottom: 30px;
    font-weight: bold;
}

.btn-hero:hover {
    background: lightseagreen;
    font-size: 18px;

}

.box-item {
    width: 30%;
    height: 380px;

    justify-content: center;
    background: var(--verde);
    margin: 10px;
    text-align: center;
    border-radius: 10px;
    padding: 30px 20px;

}

.especialidades {
    display: flex;
    margin-top: 40px;
    width: 80%;
    /*border: 2px solid red;*/
    justify-content: center;
    align-items: center;
    margin-left: 10%;
    flex-flow: row wrap;

}

.m-top {
    margin-top: 30px;
}

footer {
    background: var(--verde);
    margin-top: 100px;
    align-items: center;
    justify-content: center;
    height: 100px;
    color: black;
    font-size: 22px;
    display: flex;


}

.whats {
    position: fixed;
    right: 20px;
    bottom: 20px;

}

@media screen and (max-width:1100px) {
    body {
        .hero {
            flex-direction: column-reverse;
        }

        .box-txt {
            width: 90%;
            margin-top: 20px;
            padding: 40px 30px;
            justify-content: center;
            align-items: center;
            flex-flow: row wrap;
            /*  border: 2px solid red;*/

        }





        .box-txt h2 {
            font-size: 50px;

        }


        .especialidades {
            flex-direction: column;
            align-items: center;



        }

        .box-txt h2 {
            font-size: 60px;
        }

        .box-img {
            margin-top: 200px;

        }

        .responsiva {
            max-width: 100%;
        }

        .box-item {
            width: 90%;
        }

        footer {
            font-size: 18px;
            text-align: center;
        }

    }


}