@import url('https://fonts.googleapis.com/css2?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&display=swap');

/* :root {

} */

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    text-transform: uppercase;
}

h1 {
    color: #333;
    font-size: 42px;
    font-weight: 300;
}

h2 {
    color: #333;
    font-size: 32px;
    font-weight: 300;
}

h3 {
    color: #333;
    font-size: 24px;
    font-weight: 400;
}

section {
    padding: 120px 0px;
}

button {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    border: none;
    border-radius: 24px;
    background-color: #009053;
    padding: 10px 40px;
}

a {
    text-decoration: none;
}

.btns a {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    border: none;
    border-radius: 24px;
    background-color: #009053;
    padding: 10px 40px;

}

/**Mobile x Desktop**/
#mobile {
    display: none;
}

#desktop {
    display: block;
}

@media screen and (max-width: 768px) {
    #mobile {
        display: block;
    }

    #desktop {
        display: none;
    }
}
/** Fim Mobile x Desktop **/

/* nav */
.navbar {
    background-color: #fff;
}

.navbar .logo {
    width: 220px;
}

.nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #333;
    border-bottom: 2px solid #333;
}
/* end nav */

/* hero section */
.hero-section {
    background-image: url('../images/banner-mariana-dias-principal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home {
    padding: 140px 0px;
}

#myForm {
    width: 75%;
}

#myForm .form-title p {
    margin: 0px 0px 6px 0px;
}

#myForm .aviso {
    font-size: 14px;
}

#myForm .aviso>span {
    font-weight: 700;
    font-style: italic;
}
/* end hero section */

/* mariana dias */
.marianadias h2 {
    border-left: 4px solid #A28D7C;
    padding-left: 8px;
    margin-bottom: 24px;
}

.marianadias .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marianadias .img-dias {
    display: grid;
    place-items: center;
}

.marianadias .img-dias img {
    max-width: 100%;
}
/* end mariana dias */

/* produtos */
.produtos {
    background-color: #F6F7F8;
}

.produtos .title h2 {
    text-align: center;
    margin-bottom: 32px;
}

.Produtos .card {
    display: grid;
    place-items: center;
    text-align: center;
    border: none;
    padding: 24px 24px;
}

.Produtos .card .card-img {
    display: grid;
    place-items: center;
    margin-bottom: 24px;
}

.Produtos .card .card-img img {
    max-width: 100%;
    width: 80%;
}

.produtos .pag {
    margin: 32px 0px 24px 0px;
}

.produtos .btns {
    display: grid;
    place-items: center;
}
/* end produtos */

/* cta */
.cta {
    background-color: #f3f3f3;
    background-image: url('../images/banner-mariana-dias-cta.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0px;
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    text-align: center;
}

.cta-content p {
    color: #fff;
    text-align: center;
}

.cta-content .btns {
    display: grid;
    place-items: center;
}

.cta-content .btns a {
    text-decoration: underline;
    background-color: transparent;
}
/* end cta */

/* diferenciais */
.diferenciais .title h2 {
    text-align: center;
    margin-bottom: 32px;
}

.diferenciais .title h2>span {
    border-bottom: 4px solid #A28D7C;
}

.diferenciais .row {
    margin-bottom: 32px;
}

.diferenciais .col {
    display: grid;
    place-items: center;
    text-align: center;
}

.diferenciais .col img {
    max-width: 100%;
    width: 120px;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
}

.diferenciais .col img:hover {
    transform: scale(1.1);
}

.diferenciais .col h3 {
    text-transform: none;
}

.diferenciais .btns {
    display: grid;
    place-items: center;
}
/* end diferenciais */

/* about */
.about {
    background-color: #f3f3f3;
    background-image: url('../images/banner-mariana-dias-quem-somos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about h2 {
    color: #fff;
    border-left: 4px solid #fff;
    padding-left: 8px;
    margin-bottom: 24px;
}

.about p {
    color: #fff;
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .img-about {
    display: grid;
    place-items: center;
}

.about .img-about img {
    max-width: 100%;
}
/* end about */

/* footer */
footer {
    color: #333;
    background-color: #F6F7F8;
    width: 100%;
}

footer ul li {
    padding-left: 0px !important;
}

footer span {
    color: #333;
    padding-left: 14px;
}

.footer-link {
    text-transform: uppercase;
    text-decoration: none;
}

#footer_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 20px 0px 50px;
}

.footer-logo img {
    max-width: 100%;
    width: 280px;
}

#footer_social_media {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
    #footer_social_media {
        align-items: left;
        justify-content: left;
    }
}

#footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: #fff;
    background-color: #A28D7C;
    border: 2px solid #A28D7C;
    border-radius: 12px;
    transition: all 0.4s;
}

#footer_social_media .footer-link:hover {
    color: #fff;
    background-color: #A28D7C;
    border: 2px solid #A28D7C;
}

#footer_social_media .footer-link i {
    font-size: 1.25rem;
}

#instagram {
    background-color: transparent;
}

#facebook {
    background-color: transparent;
}

#whatsapp-footer {
    background-color: transparent;
}

#contacts li i {
    color: #A28D7C;
    font-size: 16px;
    padding-right: 4px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list h3 {
    color: #333;
    font-weight: 300;
    font-size: 24px;
    border-left: 4px solid #A28D7C;
    padding-left: 6px;
    gap: 100px;
}

.footer-list .footer-link {
    color: #313131;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.footer-list .footer-link:hover {
    color: #A28D7C;
    border-bottom: 2px solid #A28D7C;
}

#footer_copyright {
    color: #333;
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    #footer_content {
        text-align: left;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 450px) {
    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 10px;
    }
}
/* end footer */

/* botão whatsapp */
.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    transition: 0.5s;
}

.float:hover {
    transform: scale(1.1);
}

.float img {
    max-width: 100%;
}
/* end botão whatsapp */

/* media queries */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 38px;
        text-align: center;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    section {
        padding: 32px 10px;
    }

    .hero-section {
        background-position: left;
    }

    .home {
        padding: 42px 10px;
    }

    #myForm {
        width: 100%;
    }

    #myForm .form-title p {
        text-align: center;
    }

    #myForm .aviso {
        text-align: center;
    }

    #mybutton {
        width: 100%;
    }

    .marianadias .img-dias {
        margin-bottom: 32px;
    }

    .Produtos .card .card-img img {
        width: 100%;
    }

    .diferenciais .title h2>span {
        display: inline-block;
    }

    .diferenciais .col {
        flex: 0 0 100%;
        margin-bottom: 32px;
    }

    .diferenciais .col img {
        margin-bottom: 6px;

    }

    .diferenciais .col h3 {
        font-size: 18px;
    }

    .about {
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/banner-mariana-dias-quem-somos.jpg');
        background-position: right;
    }

    .img-about {
        display: grid;
        place-items: center;
        margin-bottom: 32px;
    }

    .img-about {
        max-width: 100%;
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    section {
        padding: 32px 10px;
    }

    .hero-section {
        background-position: left;
    }

    .home {
        padding: 42px 10px;
    }

    .marianadias .img-dias {
        margin-bottom: 32px;
    }

    .Produtos .card .card-img img {
        width: 100%;
    }

    .about {
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/banner-mariana-dias-quem-somos.jpg');
        background-position: left;
    }

    .img-about {
        display: grid;
        place-items: center;
        margin-bottom: 32px;
    }

    .img-about {
        max-width: 100%;
        width: 100%;
    }
}
/* end media queries */