@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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --light-dark: #232323;
    --secundary-color: #24632C;
    --primary-text-color: #000;
    --secundary-text-color: #fff;
}

body {
    font-family: "Poppins", sans-serif;
}

h1 {
    color: var(--secundary-text-color);
    font-size: 72px;
    font-weight: 700;
    text-align: center;
}

h2 {
    color: var(--primary-text-color);
    font-size: 40px;
    font-weight: 600;
}

h3 {
    color: var(--primary-text-color);
    font-size: 22px;
    font-weight: 500;
}

p {
    color: var(--primary-text-color);
}

section {
    padding: 120px 0px;
}

.bt {
    display: grid;
    place-items: center;
}

.bt a {
    text-decoration: none;
    color: var(--secundary-text-color);
    font-size: 18px;
    border: 2px solid var(--secundary-text-color);
    border-radius: 100px;
    background-color: transparent;
    padding: 18px 52px;
    transition: all 0.3s ease-in-out;
}

.bt2 a {
    background-color: #24632c !important ;
    border-color: #24632c !important;
}

.bt a>i {
    padding-left: 8px;
}

/**Mobile x Desktop**/
#mobile {
    display: none;
}

#desktop {
    display: block;
}

@media (max-width: 1024px) {
    #mobile {
        display: block;
    }

    #desktop {
        display: none;
    }
}
/** Fim Mobile x Desktop **/

/* nav */
.navbar {
    color: var(--secundary-text-color);
    background-color: #fff;
    padding: 16px 0px;
}

.logo {
    color: var(--secundary-text-color);
    max-width: 100%;
    width: 150px;
}

.nav-link {
    color: var(--primary-text-color);
    font-size: 18px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--primary-text-color);
    border-bottom: 3px solid var(--secundary-color);
}
/* end nav */

/* hero section */
.hero-section {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/parquinho-com-escorregadores-e-piso-colorido.webp');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--primary-color) !important;
    padding: 200px 0px;
}

.hero-section .list {
    display: grid;
    place-items: center;
}

.hero-section .list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
}

.hero-section .list ul li {
    margin-right: 14px;
}

.hero-section .content .bt a:hover {
    border: 2px solid var(--secundary-color);
    background-color: var(--secundary-color);
}
/* end hero section */

/* linhas */
.linhas {
    background-color: #f8f8ff;
}

.linhas .title h2 {
    text-align: center;
}

.linhas .title h2>span {
    display: inline-block;
    color: var(--secundary-color);
    font-size: 52px;
    font-weight: 700;
    border-bottom: 2px solid var(--secundary-color);
}

.linhas .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-direction: column;
    height: 450px;
    border: non;
    border-radius: 12px;
}

.linhas .box h3 {
    color: var(--secundary-text-color);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.linhas .box a {
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
}

#fitness {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/academia-moderna-equipamentos-musculacao.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#play {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/quintal-grama-piso-vermelho-cerca-madeira.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* end linhas */

/* servicos */
.servicos .title h2 {
    text-align: center;
}

.servicos .title h2>span {
    color: var(--secundary-color);
}

.img-servicos {
    display: grid;
    place-items: center;
}

.img-servicos img {
    max-width: 100%;
    width: 450px;
    border: none;
    border-radius: 12px;
}
/* end servicos */

/* about */
.about .content h2 {
    color: var(--secundary-color);
}

.about .bt {
    display: block;
}

.about .bt a {
    background-color: var(--secundary-color);
    transition: all 0.3s ease-in;
}

/* .about .bt a:hover {
    transform: translateY(-6px);
} */

.img-about {
    display: grid;
    place-items: center;
}

.img-about img {
    max-width: 100%;
    width: 90%;
    border: none;
    border-radius: 12px;
}
/* end about */

/* diferenciais */
.diferenciais {
    background-color: #f8f8ff;
}

.diferenciais .title {
    text-align: center;
}

.diferenciais .title h2>span {
    border-bottom: 3px solid var(--secundary-color);
}

.diferenciais .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

.diferenciais .box img {
    max-width: 100%;
    width: 100px;
}

.diferenciais .box h3 {
    color: var(--secundary-color);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}
/* end diferenciais */

/* contact */
.contact .content h2 {
    font-size: 50px;
    font-weight: normal;
}

.contact .content h2>span {
    color: var(--secundary-color);
    font-weight: 700;
}

.formulario {
    display: grid;
    place-items: center;
}

#myForm {
    background-color: #f8f8ff;
    padding: 22px;
    border: none;
    border-radius: 24px;
    width: 80%;
}

#mybutton {
    color: var(--secundary-text-color);
    font-size: 18px;
    text-align: center;
    border: none;
    border-radius: 100px;
    background-color: var(--secundary-color);
    padding: 18px 52px;
    width: 100%;
}
/* end contact */

/* galeria */
.galeria .title h2 {
    text-align: center;
}

.galeria .box {
    display: grid;
    place-items: center;
}

.galeria .box img {
    max-width: 100%;
    width: 360px;
}

.galeria .bt a {
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
}
/* end galeria */

/** Footer **/
footer {
    color: var(--primary-text-color);
    background-color: #fff;
    width: 100%;
}

.logo-footer {
    width: 220px;
}

.footer-desc {
    margin-top: 20px;
}

.footer-desc p {
    color: var(--primary-color);
    font-size: 14px;
}

footer ul li {
    padding-left: 0px !important;
}

footer span {
    color: var(--secundary-color);
    padding-left: 14px;
}

.footer-link {
    text-decoration: none;
}

#footer_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 20px 0px 50px;
}

#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: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.4s;
}

#footer_social_media .footer-link:hover {
    color: #fff;
    background-color: var(--secundary-color);
    border: 2px solid var(--secundary-color);
}

#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: var(--primary-text-color);
    font-size: 16px;
    padding-right: 4px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list h3 {
    color: var(--secundary-color);
    font-weight: 600;
    font-size: 24px;
    gap: 100px;
}

.footer-list .footer-link {
    color: var(--primary-text-color);
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.footer-list .footer-link:hover {
    color: var(--primary-text-color);
    border-bottom: 2px solid var(--secundary-color);
}

#footer_copyright {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 300;
}

@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 **/

#lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: #ffffff;
    padding: 15px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

#lgpd-banner.hidden {
    display: none;
}

.lgpd-content {
    flex: 1;
    min-width: 300px;
}

.lgpd-content p {
    margin: 0;
    color: #ffffff;
}

.lgpd-links {
    color: #ffffff;
    text-decoration: underline;
}

.lgpd-links:hover {
    color: #cccccc;
}

.lgpd-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.lgpd-button:hover {
    background-color: #45a049;
}

/* Responsividade */
@media (max-width: 768px) {
    #lgpd-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .lgpd-content {
        min-width: auto;
        margin-bottom: 10px;
    }

    .lgpd-button {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    #lgpd-banner {
        font-size: 13px;
    }

    .lgpd-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 52px 10px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 30px;
    }

    .hero-section {
        padding: 72px 10px;
    }
    
    .home .list ul {
        flex-direction: column;
    }

    .linhas .col-xl-6 {
        margin-bottom: 32px;
    }

    .ambiente .content h2 {
        font-size: 42px;
    }

    .destaque {
        font-size: 28px;
    }

    .about .bt {
        display: grid;
        place-items: center;
    }

    .img-about {
        margin-bottom: 32px;
    }

    .diferenciais .col {
        flex: 0 0 100%;
        margin-bottom: 24px;
    }

    .galeria .col {
        flex: 0 0 100%;
        margin-bottom: 24px;
    }

    .contact .content h2 {
        font-size: 44px;
        text-align: center;
    }

    #myForm {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .linhas .col-xl-6 {
        margin-bottom: 32px;
    }

    .img-about {
        margin-bottom: 32px;
    }

    .diferenciais .col {
        flex: 0 0 50%;
        margin-bottom: 24px;
    } 

    .galeria .col {
        flex: 0 0 50%;
        margin-bottom: 24px;
    }
}