/* ================================================= */
/* Componente: 404.php                               */
/* ================================================= */

.page-404 {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-laranBlue), 1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.page-404 h1 {
    padding-top: 10rem;
    margin-bottom: 1rem;
    color: rgba(var(--color-lightBlue), 1);
}

.page-404 p {
    margin-bottom: 2rem;
    color: rgba(var(--color-almostWhite), 0.7);
}

.page-404 .btn {
    background-color: rgba(var(--color-laranBlue), 0.8);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
}

.page-404 .btn:hover {
    background-color: rgba(var(--color-laranBlue), 1);
}


/* ================================================= */
/* Componente: headerSlider.php                      */
/* ================================================= */

header {
    width: 100%;
    height: 100vw;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-laranBlue), 0.1);
    position: relative;
    display: flex;
}

.slider img {
    display: flex;
    width: 100vw;
    height: 100vw;
    object-position: center;
    object-fit: cover;
    flex-shrink: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.slideBackground {
    width: 100%;
    height: 100%;
}

.slide.active {
    top: 0;
    opacity: 1;
    z-index: 1;
}

.slide.previous {
    top: -100%;
    opacity: 0;
    z-index: 995;
}

.slide::after {
    content: "";
    position: absolute;
    margin: 0;
    background-color: rgba(0, 0, 10, 0.2);
    pointer-events: none;
    z-index: 1005;
}

.slide-content-wrapper {
    position: absolute;
    width: 83.33%;
    max-width: 1600px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide h1 {
    color: rgba(var(--color-almostWhite), 1);
}

.slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    background-color: rgba(var(--color-black), 0.5);
    z-index: 1;
}

.slide.active::before {
    height: 100%;
}

@media (min-width:1200px) {
    header {
        width: 100%;
        height: 50vw;
    }

    .slider img {
        width: 100vw;
        height: 50vw;
    }

    .slide-content-wrapper {
        bottom: 10rem;
    }
}

/* ================================================= */
/* Componente: callAction.php                        */
/* ================================================= */

.callAction-Section {
    width: 100%;
    padding: 5rem 0;
    background-color: rgba(var(--color-almostBlack), 0.05);
    overflow: hidden;
}

.callAction-Wrapper {
    width: 83.33%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    gap: 2rem;
}

.callAction-Container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.callAction-Container img {
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0.5rem 0.8rem rgba(var(--color-black), 0.2);
    border-radius: 1rem;
}

.callAction-Container h3 {
    color: rgba(var(--color-laranBlue), 1);
}

.callAction-Container h3,
.callAction-Container p {
    width: 75%;
}

@media (min-width:1200px) {
    .callAction-Wrapper {
        flex-direction: row;
    }

    .callAction-Container img {
        width: 50%;
    }
}

/* ================================================= */
/* Componente: bannerDownload.php                    */
/* ================================================= */

.bannerDownload {
    position: fixed;
    top: 0;
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
}

.bannerDownloadWrapper {
    background-color: rgba(var(--color-almostBlack), 0.9);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    padding: 10rem 0;
    width: 100%;
    height: 100%;
}

.bannerDownloadContainer {
    width: 83.33%;
    margin: 0 auto;
    display: flex;
    max-width: 600px;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(var(--color-almostBlack), 0.5);
    border: 1px solid rgba(var(--color-almostWhite), 0.1);
    border-radius: 1rem;
}

.bannerDownloadContainer h3 {
    color: rgba(var(--color-almostWhite), 0.85);
}

.bannerDownloadContainer p {
    color: rgba(var(--color-almostWhite), 0.65);
}

.bannerDownloadContainerGroup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.downloadBannerForm input {
    background-color: rgba(var(--color-almostWhite), 0.02);
    border: 1px solid rgba(var(--color-lightBlue), 0.2);
    color: rgba(var(--color-almostWhite), 0.5);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: flex;
    width: 100%;
    max-width: 100%;
}

.downloadBannerForm input:hover {
    color: rgba(var(--color-lightBlue), 1);
    background-color: rgba(var(--color-laranBlue), 0.15);
    border: 1px solid rgba(var(--color-lightBlue), 0.35);
}

.downloadBannerForm input:filled {
    color: rgba(var(--color-almostWhite), 1);
    background-color: rgba(var(--color-laranBlue), 0.15);
    border: 1px solid rgba(var(--color-lightBlue), 0.35);
}

.bannerDownloadAcceptTerms {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.customCheckbox {
    display: flex;
    align-items: center;
}

.AcceptTerms-Text {
    height: 100%;
    align-items: center;
}

.bannerDownloadAcceptTerms label p {
    padding: 0;
    margin: 0;
}

.bannerDownloadAcceptTerms label a {
    color: rgba(var(--color-lightBlue), 0.75);
}

.bannerDownloadAcceptTerms label a:hover {
    color: rgba(var(--color-lightBlue), 1);
}


.downloadLogo {
    position: fixed;
    top: 3rem;
    left: 8.45%;
    width: 12rem;
}

/* Estilização do botão de fechar */
.closeBannerBtn {
    display: flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--color-almostWhite), 0.05);
    border: 1px solid rgba(var(--color-almostWhite), 0.1);
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    border-radius: 5rem;
    color: rgba(var(--color-almostWhite), 0.5);
    cursor: pointer;
    position: absolute;
    top: 3rem;
    right: 8.45%;
}

.closeBannerBtn:hover {
    color: rgba(var(--color-lightBlue), 1);
    background-color: rgba(var(--color-laranBlue), 0.15);
    border: 1px solid rgba(var(--color-lightBlue), 0.35);
}

.centralAtendimento {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.centralAtendimento a {
    padding: 0.5rem;
    background-color: rgba(var(--color-lightBlue), 0.0);
    border: 1px solid rgba(var(--color-lightBlue), 0);
    border-radius: 5rem;
    color: rgba(var(--color-laranBlue), 1);
    overflow: hidden;
}

.centralAtendimento a:hover {
    background-color: rgba(var(--color-lightBlue), 0.1);
    border: 1px solid rgba(var(--color-lightBlue), 0.25);
    color: rgba(var(--color-lightBlue), 1);
}

.centralAtendimento a:hover i {
    animation: btnAnimation 0.2s ease forwards;
}

.central-info,
.whatsapp-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.central-info i,
.whatsapp-contact i {
    width: 1rem;
    height: 1rem;
}

@media (min-width:1200px) {
    .downloadLogo {
        position: relative;
        top: 0;
        left: 0;
    }
}

/* ================================================= */
/* Componente: downloadEmergencia.php                */
/* ================================================= */

.downloadEmergencia {
    width: 100%;
    background-color: rgba(var(--color-almostWhite), 1);
    padding: 0 0 10rem 0;
}

.downloadEmergenciaWrapper {
    display: flex;
    width: 83.33%;
    max-width: 1600px;
    flex-direction: column;
    margin: 0 auto;
    gap: 3rem;
    justify-content: center;
}

.downloadEmergenciaContainer {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: 0 2rem 3rem rgba(var(--color-black), 0.2);
}

.downloadEmergenciaContent {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.downloadEmergenciaContent img {
    border-radius: 1rem;
    width: 100%;
    height: auto;
}

.downloadContent h3 {
    color: rgba(var(--color-almostWhite), 0.85);
}

.downloadContent p,
.downloadContent a {
    color: rgba(var(--color-almostWhite), 0.65);
}

/* Botões dos downloads */

.downloadButtons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.downloadBtn {
    display: flex;
    width: 100%;
    background-color: rgba(var(--color-almostWhite), 0.1);
    border: 1px solid rgba(var(--color-almostWhite), 0.1);
    box-shadow: 0px 1rem 1rem rgba(var(--color-almostBlack), 0);
    padding: 1rem;
    border-radius: 1rem;
    justify-content: space-between;
}

.downloadBtnContent {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.downloadBtn:hover {
    background-color: rgba(var(--color-almostWhite), 0.25);
    border: 1px solid rgba(var(--color-almostWhite), 0.25);
    box-shadow: 0px 0.5rem 1rem rgba(var(--color-almostBlack), 0.3);
}

@media (min-width:1200px) {

    .downloadEmergenciaWrapper,
    .downloadEmergenciaContainer {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ================================================= */
/* Componente: nossaHistoria.php                     */
/* ================================================= */

.historia {
    width: 100%;
    background-color: rgba(var(--color-blueishGray), 1);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.historiaWrapper {
    display: flex;
    flex-direction: column;
    width: 83.33%;
    max-width: 1600px;
    justify-content: space-between;
    gap: 3rem;
    margin: 0 auto;
}

.historiaContent {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 2rem;
}

.historiaContent h2 {
    color: rgba(var(--color-almostBlack), 1);
}

.historiaContent p {
    color: rgba(var(--color-laranBlue), 1);
}

@media (min-width:1200px) {
    .historiaWrapper {
        flex-direction: row
    }
}

/* ================================================= */
/* Componente: trust.php                             */
/* ================================================= */

.trustSection {
    width: 100%;
    background-color: rgba(var(--color-blueishGray), 1);
}

.trustWrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 83.33%;
    max-width: 1600px;
    background-color: rgba(var(--color-misteryBlue), 1);
    border-radius: 2rem;
    margin: 0 auto;
    padding: 2.5rem;
}

.trustReasons {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.trustReason {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.trustReason i {
    color: rgba(var(--color-lightBlue), 1);
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    text-align: left;
    justify-content: flex-start;
}

.trustReason h3 {
    color: rgba(var(--color-lightBlue), 1);
    font-weight: 200;
}

.trustReason p {
    color: rgba(var(--color-almostWhite), 0.75);
}

.trustNumbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.trustNumbers h2 {
    color: rgba(var(--color-almostWhite), 1);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.trustNumber {
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    background-color: rgba(var(--color-laranBlue), 0.75);
    border-radius: 1rem;
    border: 1px solid rgba(var(--color-lightBlue), 0.25);
}

.trustNumber h3 {
    font-size: 2.4rem;
    color: rgba(var(--color-lightBlue), 1);
}

.trustNumber p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.2;
    color: rgba(var(--color-almostWhite), 0.75);
}

@media (min-width:1200px) {
    .trustWrapper {
        padding: 5rem;
    }

    .trustReasons {
        flex-direction: row;
    }

    .trustNumbers {
        flex-direction: row;
    }

    .trustNumbers h2 {
        font-size: 2rem;
    }
}

/* ================================================= */
/* Componente: clientsCarousel.php                   */
/* ================================================= */

.carrossel-clientes {
    width: 100%;
    background-color: rgba(var(--color-blueishGray), 1);
    margin: 0 auto;
    padding: 10rem 0 5rem 0;
    overflow: hidden;
}

.carrossel-clientes-wrapper ul {
    list-style: none;
    white-space: normal;
    display: flex;
    margin: 0;
    padding: 0;
    animation: animacao-carrossel 30s linear infinite;
    width: max-content;
}

.carrossel-clientes-wrapper ul li {
    display: inline-block;
    width: auto;
    margin: 0 2rem;
}

.carrossel-clientes-wrapper ul li:last-child {
    margin-right: 0;
}

.carrossel-clientes-wrapper ul li img {
    width: 10rem;
    height: auto;
}

@keyframes animacao-carrossel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-35%);
    }
}

/* ================================================= */
/* Componente: youtubeReviews.php                    */
/* ================================================= */

.reviewsVideosSection {
    width: 100%;
    background-color: rgba(var(--color-blueishGray), 1);
    overflow: hidden;
    padding: 5rem 0;
}

.reviewsVideosWrapper {
    width: 83.33%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.reviewsVideosCard {
    background-color: rgba(var(--color-almostWhite), 1);
    border: 1px solid rgba(var(--color-laranBlue), 0.1);
    width: 100%;
    padding: 1rem;
    border-radius: 2rem;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
}

.reviewsVideosLazy {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviewsVideosLazy img {
    border-radius: 1rem 1rem 0 0;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 16 / 9;
}

.reviewsVideosCardWrapper {
    border: 1px solid rgba(var(--color-almostBlack), 0.1);
    border-radius: 1rem;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.reviewsVideosColumnContent {
    display: flex;
    list-style: none;
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
}

.reviewsVideosMedia {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reviewsVideosName {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(var(--color-laranBlue), 1);
    padding-bottom: 1rem;
    margin: 0;
}

.reviewsVideosItem {
    display: flex;
    gap: 0.5rem;
    color: rgba(var(--color-almostBlack), 0.5);
}

.reviewsVideosItem i {
    padding: 0;
    margin: 0;
    width: 1rem;
    height: 1rem;
    line-height: 1;
}

@media (min-width:1200px) {
    .reviewsVideosWrapper {
        flex-direction: row;
    }

    /* Definindo largura específica para cada card no desktop */
    .reviewsVideosCard {
        flex: 1 1 calc(25% - 0.75rem);
        /* 4 cards por linha com gap */
        max-width: calc(25% - 0.75rem);
    }
}

/* ================================================= */
/* Componente: contacts.php                          */
/* ================================================= */

.nossosEnderecos {
    width: 100%;
    background-color: rgba(var(--color-darkBlue), 1);
    padding: 10rem 0;
}

.nossosEnderecosWrapper {
    width: 83.33%;
    max-width: 1600px;
    margin: 0 auto;
}

.nossosEnderecosWrapper h3 {
    color: rgba(var(--color-almostWhite), 1);
    margin-bottom: 3rem;
}

.nossosEnderecosWrapper h4 {
    color: rgba(var(--color-almostWhite), 0.5);
}

.nossosEnderecosWrapper p {
    color: rgba(var(--color-almostWhite), 0.75);
}

.nossosEnderecosWrapper a {
    color: rgba(var(--color-almostWhite), 0.75);
    text-decoration: underline;
}

.nossosEnderecosWrapper a:hover {
    text-decoration: none;
}

.nossosEnderecosColumns {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
}

.nossosEnderecosColumn {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.nossosEnderecosColumn iframe {
    width: 100%;
    height: 350px;
    border-radius: 1rem;
}

.nossosEnderecosColumn span {
    color: rgba(var(--color-almostWhite), 0.75);
}

.mapPlaceholderFoz {
    background-image: url('../img/mapThumbFoz.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 19rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    transition: all 0.3s ease;
    margin: 0 0 3rem 0;
}

.mapPlaceholderCascavel {
    background-image: url('../img/mapThumbCascavel.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 19rem;
    overflow: hidden;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin: 0 0 3rem 0;
}

.mapPlaceholderFoz:hover {
    opacity: 0.9;
}

@media (min-width:1200px) {
    .nossosEnderecosColumns {
        flex-direction: row;
    }
}

/* ================================================= */
/* Componente: mainForm.php                          */
/* ================================================= */

.formSection {
    width: 100%;
    background-color: rgba(var(--color-blueishGray), 1);
    padding: 10rem 0;
}

.formWrapper {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    font-weight: 300;
}

.formContainer {
    width: 100%;
}

.formContainerColumn,
.formContainerContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.formContainerColumn i {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(var(--color-laranBlue), 1);
}

.mainForm {
    background-color: rgba(var(--color-almostWhite), 0.75);
    border: 1px solid rgba(var(--color-laranBlue), 0.15);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formInput {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form input,
.form select {
    padding: 1rem;
    background-color: rgba(var(--color-almostWhite), 0.5);
    border: 1px solid rgba(var(--color-almostBlack), 0.1);
    border-radius: 0.5rem;
    gap: 0.5rem;
}

.formRadios,
.formRadiosTitle {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.preferenciaContatoLigacaoRadios {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
}

/* Estilização para a caixa de resposta do formulário */
#formResponse {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    margin-top: 1rem;
    display: none;
    /* Oculto por padrão */
}

/* Estado de sucesso (verde) */
#formResponse.success {
    background-color: rgba(34, 197, 94, 0.1);
    /* Verde com 10% opacidade */
    border-color: rgba(34, 197, 94, 0.2);
    /* Verde com 20% opacidade */
    color: rgb(34, 197, 94);
    /* Verde sólido para o texto */
    display: block;
}

/* Estado de erro (vermelho) */
#formResponse.error {
    background-color: rgba(239, 68, 68, 0.1);
    /* Vermelho com 10% opacidade */
    border-color: rgba(239, 68, 68, 0.2);
    /* Vermelho com 20% opacidade */
    color: rgb(239, 68, 68);
    /* Vermelho sólido para o texto */
    display: block;
}

/* Estado de carregamento (azul) */
#formResponse.loading {
    background-color: rgba(59, 130, 246, 0.1);
    /* Azul com 10% opacidade */
    border-color: rgba(59, 130, 246, 0.2);
    /* Azul com 20% opacidade */
    color: rgb(59, 130, 246);
    /* Azul sólido para o texto */
    display: block;
}

.error-message {
    display: none;
}

@media (min-width:1200px) {

    .formWrapper {
        flex-direction: row;
        width: 83.33%;
    }

    .formContainerContent,
    .formInput {
        flex-direction: row;
    }
}

/* ================================== */
/* Componente: footer.php             */
/* ================================== */

footer {
    background-color: rgba(var(--color-black), 1);
    display: flex;
    flex-direction: column;
    padding: 5rem 0;
    font-size: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(var(--color-almostWhite), 0.5);
    line-height: 1.6;
}

footer ul a {
    color: rgba(var(--color-almostWhite), 0.75);
}

footer ul a:hover {
    color: rgba(var(--color-lightBlue), 0.85);
}

footer img {
    max-width: 15rem;
    height: auto;
}

.footerWrapper {
    width: 83.33%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footerWrapper p,
.footerWrapper span {
    color: rgba(var(--color-almostWhite), 0.65);
}

.footerHelp {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(var(--color-almostWhite), 0.1);
}

.footerHelp a {
    color: rgba(var(--color-almostWhite), 0.85);
}

.footerHelp a:hover {
    color: rgba(var(--color-lightBlue), 0.85);
}

.footerGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
    box-sizing: border-box;
}

.footerColumn {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footerColumnTitle {
    color: rgba(var(--color-almostWhite), 0.15);
}