/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    width: 100%;
    overflow-x: hidden; /* Evitar rolagem lateral */
}

/* Top Bar com Redes Sociais */
.top-bar {
    background-color: #0078d4;
    color: white;
    padding: 5px 0;
    text-align: center;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
}

.social-icons a:hover {
    color: #ffcc00;
}

/* Cabeçalho */
header {
    background-color: #0078d4;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo à esquerda */
.logo img {
    height: 70px;
}

/* Botão do menu hambúrguer à direita */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    margin-left: auto;
    position: relative;
    top: 0;
    right: 25px;
}

.menu-toggle .bar {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        display: flex;
        justify-content: flex-end;
        background-color: transparent;
        padding-right: 20px;
    }

    .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
    }

    .nav-menu ul li {
        margin: 0 15px;
    }

    .nav-menu ul li a {
        color: white;
        font-size: 1em;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -250px;
        height: 100%;
        width: 250px;
        background-color: #0078d4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s ease;
        z-index: 999;
        overflow-x: hidden;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .nav-menu ul li {
        margin: 20px 0;
    }

    .nav-menu ul li a {
        color: white;
        font-size: 1.5em;
        text-decoration: none;
    }
}

/* Seções da página */
.section {
    padding: 100px 20px;
    text-align: center;
}

/* Seção Home com imagem de fundo */
.home-banner {
    position: relative;
    background: url('/assets/images/mulher_bandeiras3.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Overlay escuro */
.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Subheading e título principal */
.subheading {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
    z-index: 2;
}

.mb-4 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
    z-index: 2;
}

/* Footer */
footer {
    background-color: #0078d4;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Estilo para o botão Make an Appointment */
.btn {
    background-color: #0078d4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    display: inline-block;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn:hover,
.btn:active {
    background-color: transparent;
    color: #0078d4;
    border: 2px solid #0078d4;
}

/* Estilo geral do formulário */
.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.appointment-form .btn {
    background-color: #0078d4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    display: inline-block;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.appointment-form .btn:hover,
.appointment-form .btn:active {
    background-color: transparent;
    color: #0078d4;
    border: 2px solid #0078d4;
}

/* Seção About Us */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 60px 20px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    box-sizing: border-box;
    position: relative;
    min-height: 500px; /* Altura mínima para acompanhar os blocos */
}

/* Bloco da esquerda (Business Hours e Emergency) */
.left-block {
    background-color: #2b98f0;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 250px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

/* Adicionando faixa amarela abaixo de For Emergency Cases */
.emergency-info {
    background-color: #f3e53d;
    color: black;
    padding: 20px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

/* Bloco da direita (Welcome Text e Contadores) */
.right-block {
    width: calc(50% - 5cm); /* Tornando o bloco da direita mais estreito */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 2;
}

.welcome-text {
    background-color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome-text h2 {
    color: #0078d4;
    font-size: 2em;
}

.welcome-text p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: justify; /* Justifica o parágrafo */
}

/* Contadores */
.counter-section {
    background-color: #f3e53d;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 0 0 10px 10px;
    margin-top: auto;
}

.counter-box {
    text-align: center;
    color: black;
    flex: 1;
    padding: 0 10px;
}

.counter-box span {
    font-size: 3em;
    font-weight: bold;
    display: block;
}

/* Imagem de fundo da mulher acompanhando os blocos */
.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/mulher_vecan.png') no-repeat center center;
    background-size: contain; /* Exibe a imagem inteira sem cortes */
    opacity: 0.9;
    z-index: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
    }

    .left-block, .right-block {
        width: 100%;
    }

    .counter-section {
        flex-direction: column;
    }

    .about-us::before {
        left: 0;
        transform: none;
        background-size: cover;
    }
}

/* Seção Services */
.services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.services-section h2 {
    font-size: 2.5em;
    color: #0078d4;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; /* Para se ajustar a dispositivos menores */
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 22%;
    min-width: 250px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px); /* Efeito hover para destacar o serviço */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-box img {
    max-width: 80px;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.5em;
    color: #0078d4;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1em;
    color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 80%; /* Ajusta a largura para telas menores */
        margin-bottom: 30px;
    }
}
/* Serviços - Tamanho padrão para todas as imagens */
.zoomable-image {
    width: 100%; /* Preenche o container */
    max-width: 250px; /* Tamanho padrão de largura */
    height: 200px; /* Altura padrão */
    object-fit: cover; /* Ajuste da imagem sem distorção */
    margin-bottom: 20px;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease; /* Suavidade no efeito de zoom */
    cursor: pointer;
}

/* Quando a imagem recebe o zoom */
.zoomable-image.zoom {
    transform: scale(1.3); /* Aumenta 30% no zoom */
    max-width: 325px; /* Ajusta a largura no estado de zoom */
    height: 260px; /* Ajusta a altura no estado de zoom */
    z-index: 10; /* Mantém a imagem sobreposta */
}

/* Estilos para a seção de contatos */
.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: space-around; /* Distribui os itens uniformemente no modo PC */
    flex-wrap: wrap; /* Garante que os itens se ajustem ao espaço em telas menores */
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%; /* Deixa os itens lado a lado em telas grandes */
    min-width: 150px; /* Define uma largura mínima */
}

.contact-item i.fa {
    font-size: 40px;
    color: #0078d4; /* Cor do ícone */
    margin-bottom: 10px; /* Espaço entre o ícone e o texto */
}

.contact-item p {
    margin: 0;
    font-size: 1.2em;
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Empilha os itens em telas menores */
        text-align: left; /* Ajusta o texto para ficar alinhado à esquerda */
    }

    .contact-item {
        width: 100%; /* Cada item ocupa a largura total em telas menores */
        text-align: left;
    }

    .contact-item i.fa {
        margin-bottom: 10px; /* Espaço entre o ícone e o texto */
    }
}

/* Appointment section styles */
#appointment-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Estilos elegantes para o formulário */
.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.appointment-form h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.appointment-form label {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.appointment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.1em;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
}

.appointment-form .form-control:focus {
    border-color: #0078d4;
    background-color: #fff;
    outline: none;
}

.appointment-form .btn-submit {
    background-color: #0078d4;
    color: white;
    padding: 15px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.appointment-form .btn-submit:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

/* Alinhamento para Residential Service Options */
.residential-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.residential-options label {
    width: 48%; /* Alinhamento das opções lado a lado em desktops */
    margin-bottom: 10px;
    font-size: 1em;
    color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
    .residential-options label {
        width: 100%; /* No modo responsivo, as opções ocupam 100% da largura */
    }
}

/* Alinhamento para Carpet Cleaning, Window Washing, Deep Cleaning */
.residential-options {
    display: flex;
    flex-direction: column;
}

.residential-options label {
    display: flex;
    align-items: center; /* Alinha o checkbox e o texto no centro verticalmente */
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.residential-options input[type="checkbox"] {
    margin-right: 10px; /* Espaçamento entre o checkbox e o texto */
}

/* Ajuste para responsivo */
@media (max-width: 768px) {
    .residential-options label {
        font-size: 1em; /* Ajusta o tamanho da fonte para telas menores */
    }
}

/* Estilos elegantes para o formulário com uma nova paleta de cores */
.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f0f4f8; /* Cor de fundo suave */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    border: 1px solid #0078d4; /* Azul suave nas bordas */
}

/* Estilo dos rótulos (labels) */
.appointment-form label {
    font-size: 1.1em;
    color: #0078d4; /* Azul no texto dos rótulos */
    margin-bottom: 10px;
    display: block;
}

/* Estilo dos campos de entrada (input) */
.appointment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.1em;
    background-color: #fff;
    transition: border-color 0.3s;
}

/* Cor ao focar no campo */
.appointment-form .form-control:focus {
    border-color: #0078d4; /* Destaque ao focar no campo */
    background-color: #eef6ff; /* Fundo leve ao focar */
    outline: none;
}

/* Cor e estilo para o botão de envio */
.appointment-form .btn-submit {
    background-color: #0078d4; /* Cor principal do botão */
    color: white;
    padding: 15px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.appointment-form .btn-submit:hover {
    background-color: #005bb5; /* Cor mais escura no hover */
    transform: translateY(-2px);
}


/* Alinhamento para Residential Service Options */
.residential-options label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #0078d4; /* Cor azul para harmonizar com o layout */
}

.residential-options input[type="checkbox"] {
    margin-right: 10px;
}

/* Hover dos links do menu - cor amarela */
.nav-menu ul li a:hover {
    color: #ffcc00; /* Cor amarela */
    transition: color 0.3s ease; /* Suavidade na transição da cor */
}

/* Hover para o menu no modo responsivo */
.nav-menu.active ul li a:hover {
    color: #ffcc00; /* Cor amarela no hover */
    transition: color 0.3s ease;
}

/* Seção Customer Reviews */
.reviews-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5em;
    color: #0078d4;
    margin-bottom: 40px;
}

.reviews-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.review-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 22%;
    min-width: 250px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de hover nas caixas de review */
.review-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Estilo para as imagens de review */
.review-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Suavidade na transição do zoom */
}

/* Efeito de zoom ao clicar */
.review-image.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%); /* Centraliza a imagem */
    z-index: 1000;
    border-radius: 8px; /* Remove a borda arredondada no zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Responsivo para Customer Reviews */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-box {
        width: 80%;
        margin-bottom: 30px;
    }

    .review-image {
        width: 50px;
        height: 50px;
    }

    .review-image.zoomed {
        width: 250px;
        height: 250px;
    }
}
.review-box h3 {
    font-size: 1.3em; /* Ajusta o tamanho do nome para ficar harmonioso com a imagem */
    color: #0078d4;
    margin-bottom: 10px;
}

.review-box .stars {
    color: #ffcc00; /* Cor das estrelas */
    margin-bottom: 15px;
}

.review-box p {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
}

/* Responsivo para Customer Reviews */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-box {
        width: 80%;
        margin-bottom: 30px;
    }

    .review-image {
        width: 50px; /* Tamanho menor em dispositivos móveis */
        height: 50px;
    }

    .review-box h3 {
        font-size: 1.2em; /* Tamanho do nome ajustado para mobile */
    }
}


/* Efeito de hover nas caixas de review */
.review-box:hover {
    transform: translateY(-10px); /* Movimenta a caixa de review para cima */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Aumenta a sombra ao passar o mouse */
}

.review-box h3 {
    font-size: 1.5em;
    color: #0078d4;
    margin-bottom: 10px;
}

.review-box .stars {
    color: #ffcc00; /* Cor das estrelas */
    margin-bottom: 15px;
}

.review-box p {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
}

/* Responsivo para Customer Reviews */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-box {
        width: 80%;
        margin-bottom: 30px;
    }
}


/* Seção Happy Customers */
.happy-customers-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.happy-customers-section h2 {
    font-size: 2.5em;
    color: #0078d4;
    margin-bottom: 40px;
}

.customers-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    min-width: 250px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Suavidade na transição do efeito */
}

/* Efeito de hover nas caixas */
.customer-box:hover {
    transform: translateY(-10px); /* Movimenta a caixa para cima */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Aumenta a sombra no hover */
}

.customer-box img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.customer-box h3 {
    font-size: 1.5em;
    color: #0078d4;
}

/* Responsivo para Happy Customers */
@media (max-width: 768px) {
    .customers-container {
        flex-direction: column;
        align-items: center;
    }

    .customer-box {
        width: 80%;
        margin-bottom: 30px;
    }
}

/* Estilos para a seção de contatos */
.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    min-width: 150px;
}

/* Tamanho e estilo para os ícones Font Awesome e as imagens */
.contact-item i.fa,
.social-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Estilo para as imagens sociais */
.social-icon {
    object-fit: contain; /* Garante que as imagens se ajustem ao tamanho sem distorção */
}

/* Efeito de hover nas imagens e ícones */
.contact-item i.fa:hover,
.social-icon:hover {
    transform: scale(1.1); /* Aumenta ligeiramente a imagem ao passar o mouse */
}

.contact-item p {
    margin: 0;
    font-size: 1.2em;
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: left;
    }

    .contact-item {
        width: 100%;
        text-align: left;
    }

    .contact-item i.fa,
    .social-icon {
        margin-bottom: 10px;
    }
}

/* Estilo Moderno para o Contador de Visitas */
#visit-counter-section {
    background-color: #f9f9f9; /* Cor de fundo clara e suave */
    padding: 10px 0; /* Espaçamento pequeno */
    border-top: 1px solid #e0e0e0; /* Linha sutil acima da seção */
}

#visit-counter-section .container {
    text-align: center;
    font-family: 'Arial', sans-serif; /* Garantir que mantenha a tipografia moderna */
}

#visit-counter-section p {
    font-size: 0.9em; /* Texto pequeno */
    color: #555; /* Cor suave */
    margin: 0; /* Remover margens extras */
}

#visit-counter {
    font-weight: bold;
    color: #0078d4; /* Cor destaque moderna para o número de visitas */
    font-size: 1.1em; /* Aumentar levemente o número */
    transition: color 0.3s ease, transform 0.3s ease; /* Efeito suave */
}

/* Estilo Hover para deixar mais interativo */
#visit-counter-section:hover #visit-counter {
    color: #005bb5; /* Cor um pouco mais escura ao passar o mouse */
    transform: scale(1.05); /* Leve aumento no número */
}


