/* Estilo Global */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('fundo2.jpg'); 
    font-family: 'Arial', sans-serif;
}

.app-card {
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url('images/fundo.jpg'); 
    background-size: cover; /* Cobre todo o contêiner */
    background-repeat: no-repeat;
    background-position: center; 
    border-radius: 0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: auto;
    width: 700px;
    max-width: 600%;
    text-align: center;
    transition: transform 0.1s ease;
    height: 100%; /* Define a altura total para o contêiner */
    min-height: 300px; /* Define uma altura mínima para garantir que a imagem seja visível */
    overflow: hidden; /* Evita o transbordamento */
}

/* Ajuste para dispositivos com telas menores */
@media (max-width: 768px) {
    .app-card {
        width: 100%;
        padding: 15px;
        min-height: 300px;
    }
}

/* Ajuste para dispositivos dobráveis, como o Samsung Galaxy Z Fold 5 */
@media (max-width: 450px) {
    .app-card {
        width: 100%;
        min-height: 300px;
        padding: 12px;
    }
}

/* Ajuste para dispositivos muito pequenos, como smartphones em modo retrato */
@media (max-width: 375px) {
    .app-card {
        width: 100%;
        min-height: 300px;
        padding: 10px;
    }
}











img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.container {
    margin-top: 20px;
}
/* Ajuste responsivo para telas menores */
@media (max-width: 768px) {
    .service-item {
        width: 100%; /* Em telas menores, aumenta o quadro */
        margin: 20px auto; /* Centraliza o item */
    }
}

@media (max-width: 375px) {
    .service-item {
        width: 90%;
        margin: 10px auto;
    }
}



























/*botão icone*/
.button-grid {
    font-size: 28px;
    font-weight: 600;
    color: #342727;
    margin-bottom: 30px;
    background-color: rgba(52, 39, 39, 0.9);
}
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    padding: 20px;
    background-image: url('fundofaixa1.jpg'); 
}
.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    color: #333333;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button i {
    font-size: 80px; /* Aumentando o tamanho do ícone */
    color: #e4b261;
}

.button span {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px; /* Espaçamento entre o ícone e o texto */
    text-align: center;
}

.cta {
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    background-color: #e9f5ff;
    padding: 8px 12px;
    border-radius: 20px;
    margin-top: 10px; /* Espaçamento entre o texto e o botão */
    text-align: center;
    width: 100%;
}

/* Ajuste responsivo para telas menores */
@media (max-width: 768px) {
    .button-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Ajuste para telas menores */
        padding: 15px; /* Reduz o padding */
    }

    .button {
        padding: 15px; /* Ajusta o padding para botões */
        font-size: 24px; /* Diminui o tamanho da fonte do botão */
    }

    .button i {
        font-size: 60px; /* Reduz o tamanho do ícone em telas menores */
    }

    .cta {
        font-size: 12px; /* Ajusta o tamanho da fonte do CTA */
    }
}

@media (max-width: 375px) {
    .button-grid {
        grid-template-columns: 1fr; /* Apenas uma coluna em telas muito pequenas */
        padding: 10px; /* Diminui o padding */
    }

    .button {
        padding: 10px; /* Ajusta o padding para telas menores */
    }

    .button i {
        font-size: 50px; /* Reduz ainda mais o tamanho do ícone */
    }

    .button span {
        font-size: 16px; /* Ajusta o tamanho do texto */
    }

    .cta {
        font-size: 10px; /* Ajusta o tamanho do CTA */
    }
}

























.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #f8efef;
    margin-bottom: 30px;
    background-color: rgba(52, 39, 39, 0.9);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    padding: 20px;
    background-image: url('fundofaixa.jpg'); 
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    flex-direction: column;
    text-align: center;
}

.service-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-button span {
    font-size: 18px;
    font-weight: 600;
}




























.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    font-size: 1.4rem;
    color: #0056b3;
    margin: 15px;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    padding: 0 15px;
    line-height: 1.5;
}

.whatsapp-button {
    display: block;
    margin: 15px;
    padding: 10px 15px;
    background: #25d366;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.whatsapp-button:hover {
    background: #1ebe5c;
}


/* CTA */
.cta {
    background: #161115;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.cta h2 {
    font-size: 1.8rem;
}

.cta p {
    font-size: 1rem;
    margin: 15px 0;
}

.cta-button {
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1da851;
}

/* Rodapé */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}




















/* Container para as imagens */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espaçamento entre as imagens */
    flex-wrap: wrap; /* Permite que as imagens quebrem linha em telas menores */
    margin: 20px auto; /* Centraliza o container */
    padding: 20px;
  }
  
  /* Estilo para cada imagem */
  .image {
    width: 600px; /* Largura fixa para as imagens */
    height: auto; /* Mantém a proporção da imagem */
    border-radius: 10px; /* Bordas arredondadas */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave nas imagens */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efeitos de transição */
  }
  
  /* Efeito de hover nas imagens */
  .image:hover {
    transform: scale(1.05); /* Aumenta o tamanho da imagem */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Aumenta a sombra ao passar o mouse */
  }
  
  /* Responsividade para telas menores */
  @media (max-width: 768px) {
    .image-container {
      flex-direction: column; /* Empilha as imagens verticalmente em telas pequenas */
      align-items: center;
    }
  
    .image {
      width: 95%; /* Faz as imagens ocuparem 80% da largura em telas pequenas */
    }
  }
  








































body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Ícone fixo para a agenda */
.fixed-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056b3, #ffa500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 1000;
}

.fixed-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.fixed-icon:active {
    transform: scale(0.95);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ícone interno */
.fixed-icon img {
    width: 40px;
    height: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
    .fixed-icon {
        width: 50px;
        height: 50px;
    }
    .fixed-icon img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 375px) {
    .fixed-icon {
        width: 40px;
        height: 40px;
    }
    .fixed-icon img {
        width: 25px;
        height: 25px;
    }
}
















/* Contêiner de Botões */
.contact-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 5px;
    padding: 20px;
}

/* Botões de Contato */
.contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 120px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #000;
}

/* Efeito de Hover nos Botões */
.contact-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Ícones nos Botões */
.contact-button .icon {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Texto abaixo do ícone */
.contact-button span {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    opacity: 0.8;
}

/* Efeito de Hover no Texto */
.contact-button:hover span {
    color: #1E90FF;
    opacity: 1;
}

/* Botão do WhatsApp */
.contact-button.whatsapp-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-button.whatsapp-button:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.whatsapp-button span {
    color: rgb(0, 0, 0);
}

/* Botão de Localização */
.contact-button.location-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-button.location-button:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.location-button span {
    color: rgb(0, 0, 0);
}

/* Botão de Instagram */
.contact-button.instagram-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-button.instagram-button:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.instagram-button span {
    color: rgb(0, 0, 0);
}

/* Botão de Enviar Cartão */
.contact-button.send-card-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-button.send-card-button:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.send-card-button span {
    color: rgb(0, 0, 0);
}

/* Botão de Salvar Contato */
.contact-button.save-contact {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-button.save-contact:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.save-contact span {
    color: rgb(0, 0, 0);
}








/* Botão de Ligar */
.contact-button.call-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;  
}

.contact-button.call-button:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.call-button span {
    color: rgb(0, 0, 0);
}










/* Botão de copia chave pix */
.contact-button.copy-pix-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-button.copy-pix-button:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.copy-pix-button span {
    color: rgb(0, 0, 0);
}










/* Botão de QR Code */
.contact-button.qr-code-button {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-button.qr-code-button:hover {
    background-color: #337d45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-button.qr-code-button span {
    color: rgb(0, 0, 0);
}

/* Modal para o QR Code */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    padding-top: 60px;
  }
  
  .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
  }
  
  .modal-content img {
    width: 100%;
    max-width: 300px;
  }

/* Fechar Modal */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
}












/* logo misat final da pagina */
.contact-image {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    margin-top: 10px;  /* Espaço acima da imagem */
    margin-bottom: 10px; /* Espaço abaixo da imagem */
  }
  
  .footer-image {
    width: 50px; /* Largura da imagem */
    height: auto; /* Mantém a proporção da altura */
    border-radius: 5px; /* Bordas arredondadas */
    transition: transform 0.3s ease; /* Efeito de transição suave no hover */
  }
  
  .footer-image:hover {
    transform: scale(1.1); /* Aumenta um pouco o tamanho ao passar o mouse */
  }
  















 /* Reset e Configurações Gerais */


h1 {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Container de Serviços */
.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cartões de Serviço */
.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #444;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
}

.send-whatsapp {
    display: inline-block;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.send-whatsapp:hover {
    background: #1da851;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-card {
        width: 90%;
    }
}


















/* Estilo geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}


.info-banner {
    background: linear-gradient(90deg, #0057b8, #4CAF50);
    color: white;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.info-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ffca28;
    top: 0;
    left: 0;
    animation: slide 5s infinite linear;
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.info-banner h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.info-banner ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.info-banner li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: fadeIn 0.8s ease-in-out;
}

.info-banner li i {
    font-size: 1.5rem;
    color: #ffca28;
    flex-shrink: 0;
}

.info-banner p {
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    .info-banner {
        padding: 20px;
    }

    .info-banner h1 {
        font-size: 1.5rem;
    }

    .info-banner li i {
        font-size: 1.2rem;
    }

    .info-banner li {
        flex-direction: column;
        gap: 5px;
    }
}












/* voce tem alguma pergunta */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Estilo do banner de contato */
.contact-banner {
    background-color: #0ad383; /* Cor de fundo vibrante */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: attentionEffect 1s ease-in-out infinite;
}

/* Animação de atenção: piscar e balançar */
@keyframes attentionEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    75% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-banner p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-banner a {
    text-decoration: none;
    color: white;
    background-color: #128C7E; /* Cor do botão WhatsApp */
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-banner a:hover {
    background-color: #075E54; /* Cor de hover do WhatsApp */
}

/* Responsividade para telas menores */
@media (max-width: 1024px) {
    .contact-banner h2 {
        font-size: 1.8rem; /* Ajuste no tamanho da fonte */
    }

    .contact-banner p {
        font-size: 0.95rem; /* Ajuste no tamanho da fonte */
    }

    .contact-banner a {
        font-size: 1rem; /* Ajuste no tamanho da fonte do botão */
    }
}

/* Responsividade específica para telas dobráveis como o Samsung Z Fold */
@media (max-width: 768px) {
    .contact-banner h2 {
        font-size: 1.5rem; /* Ajuste de fonte para telas menores */
    }

    .contact-banner p {
        font-size: 0.9rem; /* Ajuste de fonte para telas menores */
    }

    .contact-banner a {
        font-size: 0.95rem; /* Ajuste de tamanho de fonte no botão */
        padding: 10px 25px; /* Ajuste no padding do botão */
    }
}

/* Responsividade para telas externas do Samsung Galaxy Z Fold (aproximadamente 6.2") */
@media (max-width: 411px) {
    .contact-banner {
        padding: 15px; /* Menor padding para telas pequenas */
        margin-top: 15px; /* Menor margin superior */
        margin-bottom: 15px; /* Menor margin inferior */
    }

    .contact-banner h2 {
        font-size: 1.3rem; /* Ajuste no tamanho da fonte */
    }

    .contact-banner p {
        font-size: 0.85rem; /* Ajuste no tamanho da fonte */
    }

    .contact-banner a {
        font-size: 0.9rem; /* Ajuste no tamanho do botão */
        padding: 8px 20px; /* Menor padding para o botão */
    }
}















  /* Endereço */
  

/* Estilo dos números e endereço */
.contact-info {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff; /* Cor de link */
}

.contact-info i {
    margin-right: 8px;
}

.contact-info a {
    color: #1abc9c; /* Cor de link */
    text-decoration: none;
    font-weight: bold;
}

.contact-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-banner h2 {
        font-size: 1.4rem;
    }

    .contact-info {
        font-size: 1rem;
    }
}