@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 9;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 450px;
    width: auto;
}

/**Mobile x Desktop**/
#mobile {
    display: none;
}

#desktop {
    display: block;
}

@media (max-width: 768px) {
    #mobile {
        display: block;
    }

    #desktop {
        display: none;
    }
}
/** Fim Mobile x Desktop **/

/* Navegação */
.navbar {
    background-color: #fff;
}

.logo {
    max-width: 100%;
    width: 235px;
}

.navbar .logo {
    width: 200px;
}

.navbar .navbar-nav {
    gap: 20px;
}

.navbar .navbar-nav .nav-link {
    color: #000;
    border-bottom: 2px solid transparent;
    transition: all 0.5s;
    gap: 14px;
}

.navbar .navbar-nav .nav-link:hover {
    color: #000;
    border-bottom: 2px solid #000;
}

.navbar .social {
    margin-top: 14px;
    display: flex;
    list-style: none;
    gap: 15px;
}

.navbar .social ul {
    list-style: none;
    gap: 20px;
}

.navbar .social a {
    text-decoration: none;
    color: #000;
    font-size: 24px;
}

/* .navbar-toggler-icon {
    background-image: url('../images/menu-hamburguer.png');
} */

/* End Navegação */

/* Hero Section */
.hero-section {
    background-image: url('../images/banner-equilibrium-decor-principal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.hero-section .hero-content h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.hero-section .hero-content p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.form-content {
    margin-top: 40px;
}

.form-content .form-title h2 {
    color: #222222;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}

.form-content .form-title h2 span {
    font-weight: 700;
    border-bottom: 4px solid #E8817C;
}

#form-decor {
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    /* Cor com 90% de opacidade */
    padding: 14px;
    border: none;
    border-radius: 14px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#form-decor .btn-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

#form-decor .btn-form button {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #E8817C;
    border: none;
    border-radius: 14px;
    padding: 14px;
    width: 100%;
}

#form-decor .btn-wpp {
    display: grid;
    place-items: center;
}

#form-decor .btn-wpp a {
    text-decoration: none;
    color: #Fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #25D366;
    border: none;
    border-radius: 14px;
    padding: 14px 14px 14px 14px; 
    width: 100%;
}

#form-decor .btn-wpp a i {
    padding-right: 7px;
}

/* End Hero Section */

/* Beneficios Sal Rosa do Himalaia */
.benef-sal-rosa {
    color: #333333;
    background-color: #f8f8f8;
    padding: 30px;
}

.benef-sal-rosa .benef-content {
    margin-top: 14px;
}

.benef-sal-rosa .benef-content h2 {
    color: #E8817C;
    font-size: 40px;
    font-weight: 700;
}

.benef-sal-rosa .btn-section {
    margin-top: 40px;
}

.benef-sal-rosa .img-benef {
    margin-left: 100px;
}

.benef-sal-rosa .img-benef img {
    max-width: 100%;
    /* width: 450px; */
    border: none;
    border-radius: 14px;
}

.benef-sal-rosa .btn-section a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #E8817C;
    padding: 14px 20px 14px 20px;
    border: none;
    border-radius: 14px;
}

/* End Beneficios Sal Rosa do Himalaia */

/* Linha Bem-estar */
.bem-estar {
    color: #333333;
    background-color: #fff;
    padding: 30px;
}

.bem-estar h2 {
    color: #E8817C;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.bem-estar .bem-estar-content {
    display: grid;
    place-items: center;
}

.bem-estar .bem-estar-content .bem-estar-img {
    margin-bottom: 20px;
}

.bem-estar .bem-estar-content .bem-estar-img img {
    max-width: 100%;
    width: 325px;
    border: none;
    border-radius: 30px;
}

.bem-estar .bem-estar-content h3 {
    color: #E9716A;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.bem-estar img {
    --b: 8px;
    /* the border thickness*/
    --g: 14px;
    /* the gap */
    --c: #E8817C;
    /* the color */
    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s)/2) solid #0009;
    outline-offset: calc(var(--s)/-2);
    cursor: pointer;
    transition: .3s;
}

.bem-estar img:hover {
    outline: var(--b) solid var(--c);
    outline-offset: var(--g);
}

.bem-estar .bem-estar-content h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.bem-estar .bem-estar-content p {
    font-size: 16px;
    text-align: center;
}

.bem-estar .btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px;
}

.bem-estar .btn-section a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #E8817C;
    padding: 14px 20px 14px 20px;
    border: none;
    border-radius: 14px;
}

/* End Linha Bem-estar */

/* Linha Culinary */
.linha-culinary {
    color: #FE827C;
    background-color: #f8f8ff;
    padding: 30px;
}

.linha-culinary h2 {
    color: #FE827C;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.linha-culinary .culinary-content {
    display: grid;
    place-items: center;
    text-align: center;
}

.linha-culinary .culinary-content .culinary-img img {
    max-width: 100%;
    width: 325px;
    border: none;
    border-radius: 30px;
    margin-bottom: 20px;
}

.linha-culinary .culinary-content h3 {
    font-size: 22px !important;
    font-weight: 600;
    text-align: center;
}

.linha-culinary .culinary-content h3 {
    font-size: 16px;
    text-align: center;
}

.linha-culinary img {
    --b: 8px;
    /* the border thickness*/
    --g: 14px;
    /* the gap */
    --c: #FE827C;
    /* the color */
    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s)/2) solid #0009;
    outline-offset: calc(var(--s)/-2);
    cursor: pointer;
    transition: .3s;
}

.linha-culinary img:hover {
    outline: var(--b) solid var(--c);
    outline-offset: var(--g);
}

@media (max-width: 450px) {
    .col {
        flex: 0 0 100%;
    }
}

/* End Linha Culinary */

/* CTA */
.cta {
    background-image: url('../images/banner-equilibrium-decor-cta.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 45vh; */
}

.cta .cta-content {
    padding-top: 60px;
}

.cta .cta-content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}

.cta .cta-content p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.cta .btn-cta {
    display: grid;
    place-items: center;
}

.cta .btn-cta a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #E8817C;
    padding: 14px 20px 14px 20px;
    border: none;
    border-radius: 14px;
    margin-bottom: 50px;
}

/* End CTA */

/* Quem Somos */
.quem-somos {
    color: #333333;
    background-color: #F8F8F8;
    padding: 30px;
}

.quem-somos .quem-somos-content {
    margin-top: 60px;
}

.quem-somos .quem-somos-content h2 {
    color: #E8817C;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
}

.quem-somos .quem-somos-img {
    margin-left: 100px;
}

.quem-somos .quem-somos-img img {
    max-width: 100%;
    width: 450px;
    border: none;
    border-radius: 14px;
}

.diferenciais {
    margin-top: 70px;
}

.diferenciais .col {
    display: grid;
    place-items: center;
}

@media (max-width: 450px) {
    .diferenciais .col {
        flex: 0 0 100%;
    }
}

.diferenciais .diferenciais-img img {
    max-width: 100%;
    width: 100px;
    border: none;
    border-radius: 50%;
}

.diferenciais .col h3 {
    color: #E8817C;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* End Quem Somos */

/** Footer **/
footer {
    color: #fff;
    background-color: #E8817C;
    width: 100%;
}

footer ul li {
    padding-left: 0px !important;
}

footer span {
    color: #fff;
    padding-left: 14px;
}

.footer-link {
    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: auto;
}

#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: #333333;
    background-color: #fff;
    border: 2px solid #333333;
    border-radius: 50%;
    transition: all 0.4s;
}

#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: #fff;
    font-size: 16px;
    padding-right: 4px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list h3 {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    gap: 100px;
}

.footer-list .footer-link {
    color: #fff;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.footer-list .footer-link:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
}

#footer_copyright {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 100;
}

@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;
    }
}
/** Fim 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%;
}
/** Botão Whatsapp **/

/* Media */
@media (max-width: 450px) {
    /* Navegação */
    .navbar .social {
        align-items: center;
        justify-content: center;
    }
    /* End Navegação */

    /* Hero Section */
    .hero-section {
        height: fit-content;
    }

    .hero-section .hero-content {
        margin-top: 30px;
    }

    .hero-section .hero-content h1 {
        font-size: 34px;
    }

    .hero-section .hero-content p {
        font-size: 14px;
    }

    #form-decor {
        margin-bottom: 20px;
    }

    #form-decor .btn-form button, #form-decor .btn-wpp a  {
        width: 100%;
    }

    #form-decor .btn-wpp {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /* End Hero Section */

    /* Sal rosa */
    .benef-sal-rosa {
        padding: 10px;
    }

    .benef-sal-rosa .img-benef {
        margin-top: 20px;
        margin-left: 0px;
    }

    .benef-sal-rosa .btn-section {
        display: grid;
        place-items: center;
    }

    .benef-sal-rosa .btn-section a {
        text-align: center;
        width: 100%;
    }
    /* End Sal rosa */

    /* Linha bem estar */
    .bem-estar {
        padding: 10px;
    }

    .bem-estar h2 {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    /* End Linha bem estar */

    /* CTA */
    .cta {
        padding: 10px;
    }
    /* End CTA */

    /* Quem somos / Diferenciais */
    .quem-somos {
        padding: 10px;
    }

    .quem-somos .quem-somos-content {
        margin-top: 30px;
    }

    .quem-somos .quem-somos-img {
        margin-top: 20px;
        margin-left: 0px;
    }
    /* End Quem somos / Diferenciais */
}
/* End Media */