:root {
    --cor-primaria: #28b6da;     /* Verde-azulado */
    --cor-secundaria: #BC5872;   /* Rosa */
    --cor-terciaria: #8CAEDE;    /* Azul claro */
    --cor-fundo: #F4DAC3;        /* Bege claro */
    --cor-branco: #FFFFFF;       /* Branco */
    --cor-texto-escuro: #333333;
    --cor-texto-medio: #555555;
    --cor-texto-claro: #666666;
}

/*menu responsivo*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: var(--cor-branco);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px; /* Espaço entre a imagem e o texto */
        }
        
        .logo-container img {
            height: 100px; /* Ajuste a altura conforme necessário */
            width: auto;
            object-fit: contain;
            max-width: 150px; /* Largura máxima para evitar que fique muito grande */
        }
        
        .logo-container .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--cor-primaria); /* Use sua cor de marca */
            letter-spacing: 1px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: var(--cor-texto-escuro);
            margin: 3px 0;
            transition: 0.4s;
        }

        .menu {
            display: flex;
            list-style: none;
        }

        .menu li {
            margin-left: 1.5rem;
        }

        .menu a {
            text-decoration: none;
            color: var(--cor-texto-escuro);
            transition: color 0.3s ease;
        }

        .menu a:hover {
            color: var(--cor-primaria);
        }

        @media screen and (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .menu {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: var(--cor-branco);
                padding: 1rem;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }

            .menu.active {
                display: flex;
            }

            .menu li {
                margin: 0.5rem 0;
                text-align: center;
            }

            .menu-toggle.active .bar:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active .bar:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

/*fim menu responsivo*/

/*testimonials*/


.testimonials-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--cor-texto-escuro);
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--cor-branco);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--cor-primaria);
    opacity: 0.1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--cor-texto-medio);
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--cor-primaria);
}

.client-name {
    font-weight: bold;
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
}

.client-role {
    color: var(--cor-texto-claro);
    font-size: 0.9rem;
}

@media screen and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* fim testimonials*/

/*service card*/
.services-container {
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--cor-texto-escuro);
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
}

/* Quando houver 7 cards, centraliza o último */
@media (min-width: 1024px) {
    .services-grid:has(.service-card:nth-child(7)) {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }

    .services-grid:has(.service-card:nth-child(7)) .service-card:last-child {
        grid-column: 2 / span 1;
        justify-self: center;
        max-width: 100%;
    }
}

.service-card {
    background-color: #f4f4f4f4;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-description {
    color: var(--cor-texto-medio);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: justify;
}

.schedule-btn {
    background-color: var(--cor-primaria);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: center;
}

.schedule-btn:hover {
    background-color: var(--cor-secundaria);
}

@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-image {
        height: 300px;
    }
}

/*fim service card*/

/*seção home/hero */
.hero {
    background-color:var(--cor-fundo);
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-texto {
    flex: 1;
    min-width: 300px;
}

.hero-texto h1 {
    font-size: 2.5rem;
    color: var(--cor-texto-escuro);
    margin-bottom: 10px;
}

.hero-texto h2 {
    font-size: 1.8rem;
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

.hero-texto p {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: 25px;
}

.hero-botoes {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primario {
    background-color: var(--cor-primaria);
    color: white;
}

.btn-primario:hover {
    background-color: var(--cor-secundaria);
}

.btn-secundario {
    background-color: var(--cor-secundaria);
    color: white;
    /* Animação de Pulsação */
    animation: pulse 2s infinite;
    
    /* Efeito de Brilho */
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Keyframes para Pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255,255,255,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
}

.btn-secundario:hover {
    background-color: var(--cor-primaria);
}

.hero-imagem {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
}

.hero-imagem img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-botoes {
        justify-content: center;
    }

    .hero-texto h1 {
        font-size: 2rem;
    }

    .hero-texto h2 {
        font-size: 1.5rem;
    }
}

/* seção sobre */
.secao-sobre {
    background-color: var(--cor-fundo);
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.conteudo-sobre {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.sobre-imagem {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sobre-texto {
    flex: 1;
    min-width: 300px;
}

.sobre-texto h2 {
    font-size: 2.2rem;
    color: var(--cor-texto-escuro);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sobre-texto h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--cor-primaria);
}

.sobre-texto p {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: 25px;
}

.sobre-texto ul {
    list-style-type: none;
    margin-bottom: 25px;
}

.sobre-texto ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--cor-texto-claro);
    display: flex;
    align-items: center;
}

.sobre-texto ul li::before {
    content: '✓';
    color: var(--cor-primaria);
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primario {
    background-color: var(--cor-primaria);
    color: white;
    /* Animação de Pulsação */
    animation: pulse 2s infinite;
    
    /* Efeito de Brilho */
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Keyframes para Pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255,255,255,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
}

.btn-primario:hover {
    background-color: var(--cor-secundaria);
}

@media screen and (max-width: 768px) {
    .conteudo-sobre {
        flex-direction: column;
        text-align: center;
    }

    .sobre-texto h2 {
        font-size: 2rem;
        text-align: center;
    }

    .sobre-texto h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sobre-texto ul {
        display: inline-block;
        text-align: left;
    }

    .sobre-texto ul li {
        justify-content: center;
    }
}
/*fim seção sobre*/

/*contatos*/
.contatos {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contatos-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contatos-redes {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.contatos-redes h2 {
    margin-bottom: 20px;
    color: var(--cor-texto-escuro);
}

.redes-sociais {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.redes-sociais a {
    color: var(--cor-primaria);
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.redes-sociais a:hover {
    transform: scale(1.2);
}

.contatos-endereco {
    flex: 1;
    min-width: 300px;
}

.contatos-endereco h2 {
    margin-bottom: 20px;
    color: var(--cor-secundaria);
}

.mapa-container {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.endereco-texto {
    text-align: center;
    color: var(--cor-secundaria);
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.footer a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #45a049;
}

@media screen and (max-width: 768px) {
    .contatos-content {
        flex-direction: column;
        text-align: center;
    }

    .redes-sociais {
        justify-content: center;
    }
}
/*contatos*/

/*botao whatsapp*/
/* Estilos gerais do botão WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 30px;
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-button.pulse {
    animation: pulse 1.5s infinite;
}

/* Responsividade */
@media screen and (max-width: 600px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button i {
        font-size: 25px;
    }
}

/*botao whatsapp*/

.google-reviews-section {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.google-rating .stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.more-reviews-btn {
    display: inline-block;
    background-color: var(--cor-primaria);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.more-reviews-btn:hover {
    background-color: var(--cor-secundaria);
}