@import url("bootstrap.min.css");
@import url("animate.css");
@import url("font-awesome.css");
@import url("../fonts/stylesheet.css");

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #858687;
    margin: 0;
    padding: 0;
}

body.overlay {
    overflow: hidden;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

h2 {
    display: block;
    max-width: 50%;
    text-align: center;
    margin: 0 auto;
    font-family: 'Mochiy Pop One', 'mikadobold', sans-serif;
    line-height: 1em;
    font-size: 42px;
    color: #08256F;
    margin-bottom: 80px;
}

@media (max-width:840px) {
    h2 {
        font-size: 30px;
    }
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index:99;	
}
.whatsapp .form {
    position: absolute;
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
    width: 350px;
    box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.4);
    animation: slideInUp 1s ease-in-out;
    opacity: 0;
    right: 10px;
    bottom: 100px;
    z-index: -1;
    visibility: hidden;
}
.whatsapp.active .form{
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.whatsapp .form h3 {
    display: block;
    font-family: 'Mochiy Pop One', 'mikadobold', sans-serif;
    line-height: 1em;
    font-size: 22px;
    color: #08256F;
    margin-bottom: 20px;
}
.whatsapp .form-input,
.whatsapp .form-input::placeholder{  
     color: #08256F;
}
.whatsapp .form-input{
     width: 100%;
     padding: 0 10px;
     margin-bottom: 10px;
     border-radius: 20px;
     height: 40px;
     border: solid 1px #08256F ;
}
.whatsapp .form-input:focus{outline: none;}
.whatsapp .form-submit{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #FF0063;
    font-weight: bold;
    color:#fff;
    padding: 0px 20px;
    height: 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    margin-bottom: 10px;
}
.whatsapp .form-submit:hover{
    background: #08256F;
}

.whatsapp .form-success{
    display: none;
    text-align: center;
    color: #08256F;
}
.whatsapp .form-success strong{    font-size: 22px;}
.whatsapp .text {
    position: absolute;

    display: block;
    right: 100px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
    width: 250px;
    box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 25px -4px rgba(0, 0, 0, 0.4);
    animation: slideInUp 1s ease-in-out;
    opacity: 1;
    top: -40px;
}
.whatsapp.active .text{
    display: none;
}
.whatsapp .text .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    cursor: pointer;
}

.whatsapp .text:hover .close {
    display: block;
}

.whatsapp .button {
    display: flex;
    background: #2BB941;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    border-radius: 100%;
    text-decoration: none;
    transform: all 0.3s;
    z-index: 10;
}

.whatsapp .button:hover {
    text-decoration: none;

    background: #FF0063;
    color: #fff;
}

.container {
    padding: 0 3%;

}

.header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 5%;
    background: #FF0063;
}

.logo {
    position: relative;
    z-index: 11;
    max-width: 150px;
}

@media (max-width:530px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 30px;
    }
} 

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu li a {
    font-family: 'mikadobold', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.menu li a.button {
    display: flex;
    align-items: center;
    background: #08256F;
    padding: 0px 20px;
    height: 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;

}

.menu li a.button:hover {
    background: #FDDE02;
    color: #08256F;
}

.menu li a.button i {
    font-size: 18px;
    margin-right: 5px;
}

@media (max-width:940px) {
    .menu {
        gap: 0px;
    }

    .menu li a {
        display: none;
    }
}


.banner {
    position: relative;
    background: #FF0063;
    margin-top: -50px;

}

.banner .item {
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.banner h1 {
    font-family: 'Mochiy Pop One', 'mikadobold', sans-serif;
    line-height: 1em;
    font-size: 52px;
    margin-bottom: 20px;
    color: #fff;
}

.banner .text {
    max-width: 40%;
    margin-top: -60px;
}

.banner .text p {
    color: #fff;
    margin-bottom: 40px;
}

.banner .image {
    position: relative;
    margin-right: 100px;
    z-index: 2;
}


.banner .button {
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: #08256F;
    padding: 0px 40px;
    height: 50px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}

.banner .button::after {
    display: inline-block;
    content: "";
    width: 10px;
    height: 11px;
    background: url('../images/arrow.svg') no-repeat;
    margin-left: 10px;
}

.banner a.button:hover {
    background: #FDDE02;
    color: #08256F;
}

.banner .owl-item.active .text {
    animation: fadeIn 1s ease-in-out;

}

.banner .owl-item.active .image {
    animation: fadeIn 1s ease-in-out;

}

.banner::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 134px;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: url('../images/wave.svg') no-repeat;
}

.banner .owl-carousel .owl-item img {
    width: auto;
}

.banner .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.banner .owl-dots .owl-dot span {
    display: block;
    width: 14px;
    height: 14px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
    border-radius: 100%;
}

.banner .owl-dots .owl-dot.active span {
    background: #FF0063;
    border-color: #FF0063;
}


@media (max-width: 1400px) {
    .banner {
        margin-top: 0px;
    }


    .banner .text {
        max-width: 50%;
        margin-top: 0;

    }

    .banner .image {
        margin-right: 0px;
        max-width: 45%;
    }

    .banner .image img {
        width: 100% !important;
    }
}

@media (max-width:840px) {
    .banner h1 {
        font-size: 30px;
    }
}

@media (max-width:768px) {
    .banner .item {
        flex-direction: column-reverse;
        ;
    }

    .banner .text {
        text-align: center;
        max-width: 100%;
        margin-top: 30px;
    }

    .banner .image {
        max-width: 80%;
    }
}

.main {
    padding-top: 40px;

}

.services {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.services .image {
    margin-left: -200px;
    margin-top: -100px;
    z-index: -1;
}

.services .text {
    width: 50%;

}

.services .image img {
    max-width: 100%;
}

@media (max-width:768px) {
    .services {
        flex-direction: column-reverse;
    }

    .services .text {
        width: 100%;

    }

    .services .image {
        margin-left: 0;
        margin-top: 0;
    }
}

.ul {
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.ul li {
    font-family: 'mikadobold', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #08256F;
}

.ul li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'FontAwesome';
    content: "\f00c";
    font-size: 10px;
    border-radius: 100%;
    color: #fff;
    width: 16px;
    height: 16px;
    background: #FF0063;
    margin-right: 20px;
}

.slide {
    margin-bottom: 80px;
}

.slide .item {
    text-align: center;
}

.slide .item .image {
    display: inline-block;
    max-width: 200px;
    height: 200px;
    margin-bottom: 40px;
    overflow: hidden;
}

.slide .item .image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.slide .item h3 {
    font-family: 'mikadobold', sans-serif;
    font-size: 22px;
    color: #08256F;
}

.slide .item s {
    display: block;
}

.slide .item .price {
    display: block;
    font-family: 'mikadobold', sans-serif;
    font-size: 22px;
    color: #FF0063;
    margin-bottom: 10px;
}

.slide .item .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'mikadobold', sans-serif;
    width: 40px;
    height: 40px;
    font-size: 22px;
    background: #FF0063;
    color: #fff;
    text-transform: uppercase;
    border-radius: 100%;
    transition: all 0.3s;
    text-decoration: none;
}

.slide .item .button i {
    margin-right: 5px;
}

.slide .item .button:hover {
    background: #08256F;
}

.slide .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slide .owl-dots .owl-dot span {
    display: block;
    width: 14px;
    height: 14px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
    border-radius: 100%;
}

.slide .owl-dots .owl-dot.active span {
    background: #FF0063;
    border-color: #FF0063;
}

.gallery {
    text-align: center;
    margin-bottom: 60px;
}

.gallery .owl-carousel {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.gallery .gallery-page{
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 itens por linha */
    grid-gap: 30px; /* Espaçamento entre os itens */
}
.gallery .item {
    width: 100%;
	height:250px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery .item .image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.gallery .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'mikadobold', sans-serif;
    padding: 0 40px;
    height: 50px;
    font-size: 16px;
    background: #FF0063;
    color: #fff;
    text-transform: uppercase;
    border-radius: 40px;
    margin: 0 auto;
    transition: all 0.3s;
    text-decoration: none;
}

.gallery .button:hover {
    background: #08256F;
}

.gallery .button i {
    margin-right: 10px;
    font-size: 22px;
}

.gallery .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.gallery .owl-dots .owl-dot span {
    display: block;
    width: 14px;
    height: 14px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
    border-radius: 100%;
}

.gallery .owl-dots .owl-dot.active span {
    background: #FF0063;
    border-color: #FF0063;
}

@media (max-width:1000px) {
    .gallery .gallery-page{
        display: flex;
       flex-direction: column;
    }
    .gallery .item {
        width: 100%;
    }
}

.review {
    text-align: center;
    margin-bottom: 80px;
}

.review .item {
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
}

.review .item .author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.review .item .author h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #08256F;
    font-weight: bold;
    margin: 0;
}

.review .item .author span {
    font-size: 14px;
    color: #FF0063;
}

.review .item .author .pic {
    border-radius: 100%;
    overflow: hidden;
    width: 50px;
    object-fit: contain;
}

/* Estilos para o círculo com iniciais quando não há imagem */
.review .item .author .pic.no-image {
    width: 50px;
    height: 50px;
    background:#FF0063;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

.review .item .author .pic.no-image .initials {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
}

.review .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.review .owl-dots .owl-dot span {
    display: block;
    width: 14px;
    height: 14px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
    border-radius: 100%;
}

.review .owl-dots .owl-dot.active span {
    background: #FF0063;
    border-color: #FF0063;
}


.review .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'mikadobold', sans-serif;
    padding: 0 40px;
    height: 50px;
    font-size: 16px;
    background: #08256F;
    color: #fff;
    text-transform: uppercase;
    border-radius: 40px;
    margin-top: 40px;
    transition: all 0.3s;
    text-decoration: none;
}

.review .button:hover {
    background: #08256F;
}


.review .google-review-button .google-button:hover {
    background: #1967D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
}

.review .google-review-button .google-button i {
    margin-right: 10px;
    font-size: 18px;
    color: #FFD700;
}

@media (max-width:768px) {
    .review .item {
        max-width: 100%;
    }
}

.footer {
    display: flex;
    align-items: center;
    background: #08256F;
    padding: 60px 10% 30px 10%;
}

.footer .col {
    flex-grow: 1;
}

.footer h4 {
    font-family: 'mikadobold', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.footer p {
    color: #C4CBDD;
}

.footer adddress {
    display: block;
    color: #C4CBDD;
    padding: 0;
    margin-bottom: 10px;
}

.footer .link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #C4CBDD;
    margin-bottom: 8px;
}

.footer .link i {
    font-size: 24px;
    color: #FF0063;
    margin-right: 10px;
}

.footer .phone {
    font-size: 24px;
    font-weight: bold;
    color: #FF0063;
}

.footer small {
    line-height: 0.5em;
}

@media (max-width:1100px) {
    .footer {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer .col:nth-child(3) {
        min-width: 100%;
        margin-top: 30px;
    }

}

@media (max-width:768px) {
    .footer {
        flex-direction: column;
    }

    .footer .col:nth-child(3) {
        margin-top: 0;
        margin-bottom: 0;
    }

    .footer .col {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer .link,
    .footer .phone {
        display: inline-block;
        width: 100%;
    }

}

.modal {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    display: none;
}

.modal .content {
    position: relative;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #fff;
    padding: 5% 0;
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF0063;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #fff;
    border-radius: 100%;
    cursor: pointer;
}

.modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width:768px) {
    .modal .content {
        width: 100%;
        height: 100%;
    }
}