@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    scroll-behavior: smooth;
}

.header {
    transition: 0.5s ease-in-out;
    position: fixed;
    width: 100%;
    z-index: 20;
}
.header.scroll {
    background-color: white;
}
.header .navbar #logo{
    color: rgb(255, 128, 0) ;
}
.header.scroll .navbar a {
    color: black;
}
.header.scroll .navbar ul li a {
    color: black;
}
.navbar {
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0;
    align-items: center;
    width: 100%;
    transition: 0.2s;
}
 .logo{
    width: 25vw;
    max-width: 120px;
}
.navbar nav {
    display: flex;
    align-items: center;
    gap: 50px;
}
.navbar a {
    font-weight: 500;
    color: white;
    font-size: 2.5rem;
    text-decoration: none;
    transition: 0.4s;
}
.navbar a:hover {
    color: rgb(255, 128, 0);
}
.navbar ul {
    gap: 30px;
    display: flex;
    align-items: center;
    list-style: none;
}
.navbar ul li a {
    font-weight: 500;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: 0.4s;
}
.navbar ul li a:hover {
    color: rgb(255, 128, 0);
}
.header.scroll .navbar ul li a:hover {
    color: rgb(255, 128, 0);
}
.header.scroll .navbar a:hover {
    color: rgb(255, 128, 0);
}
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar-icons img {
    cursor: pointer;
    width: 24x;
    height: 24px;
    -webkit-filter: drop-shadow(3px 4px 3px #222);
    filter: drop-shadow(1px 1px 1px #222222ec);
}




/* GERAIS */
.title  {
    text-align: center;
    color: rgb(255, 128, 0);
    font-size: 2.7rem;
    font-weight: 500;
    margin-bottom: 7vh;
}
button {
    background-color: rgb(255, 128, 0);
    border: none;
    font-weight: bolder;
    font-size: 1.1rem;
    padding: 0.7rem 0;
}

/* BANNER */

.banner {
    
        display: flex;
        height: 100vh;
        overflow: hidden; /* Oculta as partes que ultrapassam a altura do contêiner */
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: no-repeat center/cover;
    padding: 0 15%;
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s;
}

.active {
    opacity: 1;
}

.banner-imagem-1 {
    background: no-repeat center/cover url(../FlyPages/Daycare/daycare1.jpg);
}

@media (max-width: 800px) {
    
    .banner-imagem-1 {
        background: no-repeat center/cover url(../FlyPages/Daycare/daycare1mb.jpg);
    }
}

/* Classe para a segunda imagem de fundo do carrossel */
.banner-imagem-2 {
    background: no-repeat center/cover url(../FlyPages/Daycare/daycare2.jpg);
    
}

@media (max-width: 800px) {
    
    .banner-imagem-2 {
        background: no-repeat center/cover url(../FlyPages/Daycare/daycare2mb.jpg);
    }
}


.banner-imagem-3 {
   background: no-repeat center/cover url(../FlyPages/Daycare/daycare3.jpg);

}

@media (max-width: 800px) {
    
    .banner-imagem-3 {
        background: no-repeat center/cover url(../FlyPages/Daycare/daycare3mb.jpg);

        
        
    }
}

.banner .banner-imagem h1 {
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-size: 4em;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 200px;
}
.banner .banner-imagem a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 12px 15px;
    border-radius: 15px;
    transition: .5s;
    border: 1px solid white;
    font-size: 24px;
    display: inline-block;
    animation: bounce 1s infinite alternate;
}
@keyframes bounce {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(20px);
    }
  }

  .banner .slider  a {
    background-color: rgba(12, 212, 69, 0.5);
 }
 
 .banner .banner-imagem-2   a{
     background-color: rgba(12, 212, 69, 0.5);
 }
 
 .banner .banner-imagem-3  a {
     background-color: rgba(12, 212, 69, 0.5);
 
 }


@media screen and (max-width:820px) {
   
    .navbar ul {
        display: none;
    }

    .banner .banner-imagem h1 {
        font-size: 2.3em;
    }
}

/*CARDS*/

.sectionPlanoDayCare{
    padding: 10vh 0;
}
.planoDayCare{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 650px;
    margin: auto;

}
.planoDayCare figure{
    object-fit: contain;
}
.planoDayCare img{
    width: 100%;   
}

.planoDayCare button{
    cursor: pointer;
    color: white;
    border-radius: 10px;
    padding: 15px;
}

/*MAIN NOVO PRODUTO*/

.nova-zen {
    overflow: hidden;
    padding: 7vh 20px 20vh 20px;
    background-color: rgba(0, 0, 0, 0.875);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;


}
.nova-zen-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: unsafe;
    width: 80%;
}
.nova-zen article {
    padding: 0 13%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.nova-zen article h1 {
    font-size: 3.8em;
    font-weight: 600;
    color: rgb(255, 128, 0);
}
.nova-zen article p {
    font-size: 1.6rem;
    color: white;

}
.nova-zen article a {
    margin-top: 25px;
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.7rem;
    transition: 0.4s;
}
.nova-zen article a:hover {
    background-color: rgb(255, 128, 0);
}
.nova-zen-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:1250px) {

    .nova-zen .nova-moto-text article {
        padding: 0%;

    }

    .nova-zen-text {
        width: 100%;
    }

    .nova-zen .nova-moto-text article h1 {
        font-size: 2.4rem;
    }

    .nova-zen .nova-moto-text article p {
        font-size: 1.5rem;
    }

    .nova-zen .nova-moto-text article a {
        font-size: 1.4rem;
    }

}

@media screen and (max-width:360px) {
    .nova-zen-image figure img {
        padding-left: 37px;

    }
}


/* DESCRIÇÃO DAYCARE */

.desc-zen {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4c8;
    justify-content: center;
}
.desc-zen-image {
    display: flex;
    flex-direction: column;
    align-items: center;

}
.desc-zen-image img {
    position: relative;
    top: -170px;
}
.desc-zen-image div {
    padding: 60px;
    position: relative;
    top: -170px;
}
.desc-zen-image div h1 {
    text-align: center;
    color: rgb(255, 128, 0);
    font-size: 3rem;
    font-weight: 500;
}
.desc-zen-image div p {
    text-align: center;
    font-size: 2rem;
}
.desc-zen-section .quadradinhos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    text-align: center;
    padding:  35px 10px;
    width: 95vw;
    max-width: 400px;
    max-height: 450px;
    border: 3.5px solid rgb(14, 213, 70);
    transition: 0.5s;
}
.desc-zen-section .quadradinhos:hover {
    transform: translateY(-10px);
}
.desc-zen-section .quadradinhos p {
    font-size: 1rem;
    max-height: 400px;
    
}
.desc-zen-section .quadradinhos h2{
    color: rgb(14, 213, 70) ;
    font-weight: bolder;
}

.desc-zen-section .quadradinhos a{
    background-color:transparent;
    color: rgb(14, 213, 70) ;
    font-weight: bold;
    padding:  15px 20px;
    text-decoration: none;
    border-radius: 12px;
    transition: .8s;
}

.desc-zen-section .quadradinhos a:hover{
    background-color: rgb(14, 213, 70) ;
    color: white;
}
.desc-zen-section {
    padding: 2%;
    position: relative;
    top: -180px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
   
}
@media screen and (max-width:700px) {
    .desc-zen-image img {
        width: 60vw;
        top: -100px;
        min-width: 300px;
    }

    .desc-zen-image div h1 {
        font-size: 2.5rem;
    }
}



/* CONTATO E SOBRE */

.sobre-nos-img, iframe{
    width: 40%;
    max-width: 500px;
    height: 45vh;
    object-fit: cover;
    border: 0;
}

.contato, .sobre-nos{
    justify-content: center;
    text-align: center;
    margin: 15vh 0;
}
.texto-sobre{
   max-width: 600px;
    text-align: right;
    font-size: 1.3rem;  
}

.class-contato, .class-sobre-nos{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}
.input{
    margin: 1rem;
    width: 25rem;
    padding: 3%;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}
.inputs textarea{
    width: 80vw;
    max-width: 400px;
    padding: 3%;
    font-size: 1rem;
    resize: none;
}
.contato button{
    margin: 0.5rem 2.3rem;
    padding: 1rem 2rem;
    border-radius: 9px;
    color: white;
}
.contato button:hover{
    cursor: pointer;
}
iframe {
    border-radius: 1rem;
    margin: 0.7rem 0;
    border: solid 1px rgb(255, 128, 0);
}

@media (max-width:815px) {
    .nova-zen-image figure img {
        width: 95vw;
        min-width: 490px;
    }

  
.sobre-nos-img, iframe{
    width: 80%;
    max-width: 500px;
    height: 45vh;
    object-fit: cover;
    border: 0;
}

.contato, .sobre-nos{
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2.5rem;
    padding-bottom: 3rem;
}

.texto-sobre{
    max-width: 80%;
    text-align: center;
    font-size: 1.3rem;
}
.class-contato, .class-sobre-nos{
    display: flex;
    flex-direction: column;
}
    
.input{
    width: 80vw;
    max-width: 400px;
}

}

/* BANNER PARALLAX */
.parallax-banner {
    height: 35vh;
    width: 100%;
}
.parallax-banner section {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image: url(../assetsPet/paralax.jpg);
}
.parallax-banner section h1 {
    position: absolute;
}


/* BOTAO WHATSAPP */

.btnWhatsapp{
    
    position: fixed;
    right: 20px;
    top: 85%;
    z-index: 100;
    transition: .5s;
}
.btnWhatsapp:hover{
    transform: translateY(-15px);
}

/* BOTAO INSTAGRAM */

.btnInsta{
    
    position: fixed;
    right: 20px;
    top: 74%;
    z-index: 100;
    transition: .5s;
}
.btnInsta:hover{
    transform: translateY(-15px);
}



/* FOOTER / RODAPÉ */
footer {
    background: rgba(0, 0, 0, 0.874);
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 150px;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}
footer h1 {
    font-size: 5vh;
    margin: 20px;
    color: rgb(255, 128, 0);
    font-weight: 500;
}
footer .listFooter {
    display: flex;
    flex-direction: column;
    margin: 20px;
    gap: 10px;
}
footer .listFooter h2 {
    font-size: 2.5vh;
    color: rgb(255, 128, 0);
    font-weight: 500;
}
footer .listFooter ul {
    list-style: none;
}
footer .listFooter ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.656);
    font-size: 1.8vh;
}
footer .listFooter ul li a:hover {
    text-decoration: underline;
    color: rgb(255, 128, 0);

}
footer .redesSociais {
    display: flex;
    gap: 20px;
    cursor: pointer;
    margin: 20px;
}
footer .redesSociais div img {
    width: 40px;
    height: 40px;
    transition: all .5s;
}
footer .redesSociais div img:hover {
    transform: translateY(-10px);
}

 .madeby{
    text-align: center;
    background-color: rgba(0, 0, 0, 0.906);
    width: 100%;
    padding: 10px 0;
    color: white;
}

.madeby a{
    color: rgb(255, 128, 0);
}

@media screen and (max-width:1264px) {
    footer {
        flex-direction: column;
        align-items: center;
        padding: 50px 0 60px 0;
       
    }
}
