
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* ===== Variáveis e Configurações Globais ===== */
:root {
    --verde-escuro: #006400; /* Verde bandeira */
    --verde-primario: #30d1a9;
    --verde-secundario: #38c2cc;
    --vermelho: rgb(248, 5, 5);
    --amarelo: #ffc107;
    --branco: #ffffff;
    --texto-cinza: #6c757d;
    --degrade-btn: linear-gradient(to right, #fe9611, #ff5c00);
    --sombra: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    padding: 0 5%;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0;
  }
  h1, h2, h3, h4 {
    font-weight: 700;
  }
  .imagem-lateral {
    float: right;
    margin-top: 80px;
    margin-right: -40px;
    position: relative;
    
    /* Efeitos base */
    transform: perspective(500px) rotateY(-10deg);
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Borda decorativa */
    border: 3px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    
    /* Efeito de brilho sutil */
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Efeito ao passar o mouse */
.imagem-lateral:hover {
    transform: perspective(500px) rotateY(0deg) scale(1.05);
    filter: drop-shadow(12px 12px 15px rgba(0, 0, 0, 0.4));
    
    /* Efeito de brilho mais intenso no hover */
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(255, 255, 255, 0.5);
    
    /* Efeito de flutuação */
    animation: float 3s ease-in-out infinite;
}

/* Animação de flutuação */
@keyframes float {
    0%, 100% {
        transform: perspective(500px) rotateY(0deg) translateY(0);
    }
    50% {
        transform: perspective(500px) rotateY(0deg) translateY(-10px);
    }
}

/* RESET E ESTILOS GERAIS */
.container {
    max-width: 1200px;
    padding: 0 5%;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

/* Efeito para quando estiver em foco (acessibilidade) */
.imagem-lateral:focus {
    outline: 2px solid var(--verde);
    outline-offset: 3px;
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
/* RESET E ESTILOS GERAIS */
.container {
    max-width: 1200px;
    padding: 0 5%;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

/* Efeito para quando estiver em foco (acessibilidade) */
.imagem-lateral:focus {
    outline: 2px solid var(--verde);
    outline-offset: 3px;
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .imagem-lateral {
        order: -1; /* opcional: muda a ordem para aparecer acima do conteúdo */
        margin-bottom: 30px;
    }
}
  
  /* BOTÕES */
  .btn-gradiente {
    padding: 12px 30px;
    color: var(--branco);
    border: none;
    cursor: pointer;
    background-image: var(--degrade-btn);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
  }
  
.btn-gradiente:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
  
  
  .main-text div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .main-text button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: var(--verde);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .main-text button:hover {
    background-color: var(--verde-escuro);
  }
  
  @keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .btn-gradiente:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  /* HEADER E NAVEGAÇÃO */
  .background-verde {
    background-image: url('img/Banner-meio2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    position: relative;
    color: var(--branco);
  }
  
  .background-verde::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(148, 143, 143, 0.6);
    z-index: 1;
  }
  
  header, main {
    position: relative;
    z-index: 2;
  }
  
  /* No seu CSS - Adicione estas regras: */
  
  /* Container do logo (ajuste se necessário) */
  .logo-container {
    display: flex;
    align-items: center;
    padding: 5px 0;
  }
  
  /* Imagem do logo - ESTILO PRINCIPAL (TELAS GRANDES) */
.logo-img:not(.servicos-limpeza .logo-img) {
    height: 150px !important; /* Tamanho grande em desktop */
    width: auto;
    max-width: 380px !important; /* Largura máxima aumentada */
    transition: transform 0.3s ease;
}
  
  /* Efeito hover opcional */
  .logo-img:hover {
    transform: scale(1.05);
  }
  
  /* Tablet (992px pra baixo) */
  @media (max-width: 992px) {
    .logo-img {
        height: 100px !important; /* Quase do mesmo tamanho que desktop */
    }
  }
  
  /* Celular (768px pra baixo) - DEIXEI BEM GRANDE */
  @media (max-width: 768px) {
    .logo-img {
        height: 90px !important; /* Muito maior que antes (era 50px) */
        max-width: 280px !important; /* Evita que ultrapasse a tela */
    }
  }
  
  /* Celular pequeno (576px pra baixo) - Ajuste extra */
  @media (max-width: 576px) {
    .logo-img {
        height: 80px !important; /* Grande mesmo em telas pequenas */
        max-width: 250px !important;
    }
  }
  /* Caso esteja usando Bootstrap 5, adicione isso para sobrescrever */
  .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 1rem;
  }
  
  header {
    position: relative;
    z-index: 2;
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .navbar-brand img:hover {
    transform: scale(1.05);
  }
  
  .nav-link {
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
    color: var(--branco) !important;
  }
  
  .nav-link:hover {
    color: var(--amarelo) !important;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--amarelo);
    bottom: 0;
    left: 15px;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: calc(100% - 30px);
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: var(--sombra);
  }
  
  .dropdown-item {
    padding: 8px 20px;
    transition: all 0.3s ease;
  }
  
  .dropdown-item:hover {
    background-color: var(--verde-escuro);
    color: var(--branco);
  }
  
  .titulo-personalizado {
    font-size: 1.5em; /* Tamanho da fonte um pouco menor que o padrão h2 */
    text-align: center; /* Centraliza o texto */
    position: relative; /* Permite posicionar as linhas */
    margin: 40px 0; /* Espaçamento externo */
    padding: 20px 0; /* Espaçamento interno para as linhas */
    color: #fff; /* Cor do texto (branco) */
  }
  
  .titulo-personalizado::before,
  .titulo-personalizado::after {
    content: ''; /* Cria os elementos pseudo */
    position: absolute; /* Posiciona as linhas */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajusta o posicionamento */
    width: 80%; /* Largura das linhas */
    height: 2px; /* Espessura das linhas */
    background-color: #d43b15; /* Cor das linhas (branco) */
  }
  
  .titulo-personalizado::before {
    top: 0; /* Linha em cima */
  }
  
  .titulo-personalizado::after {
    bottom: 0; /* Linha em baixo */
  }
  /* ===== BOTÕES ===== */
  .btn-gradiente, .btn-prioridade {
    padding: 10px 25px;
    color: white;
    border: none;
    cursor: pointer;
    background-image: var(--degrade-btn);
    border-radius: 5px;
    transition: var(--transition);
  }
  
  .btn-gradiente:hover, .btn-prioridade:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }
  
  .main-text div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .main-text button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: var(--verde);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
  }
  .main-text h2{
    color: white;
  }
  .main-text button:hover {
    background-color: var(--verde-escuro);
  }
  
  @keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .resultados {
    background: #d34507;
  }
  
  .resultados .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .resultados .resultados-text {
    color: rgb(255, 255, 255);
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
  }
  
  .resultados .resultados-numeros {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    color: white;
    margin-top: 30px;
  }
  
  .resultados .resultados-numeros p {
    text-align: center;
    font-size: 30px;
    margin: 20px;
  }
  
  .resultados .resultados-numeros p span {
    font-size: 30px;
    font-weight: 600;
    display: block;
  }
  
  @media (max-width: 440px) {
    .resultados .resultados-numeros {
        flex-direction: column;
    }
  }
  
  .diferencias .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* Para que os cards tenham a mesma altura */
    gap: 20px;
    padding: 20px;
    max-width: 1200px; /* Limitar a largura máxima para não ficar muito espaçado */
    margin: 0 auto; /* Centralizar o container */
  }
  
  .diferencias .card {
    flex: 1 1 280px; /* Cresce, encolhe, base de 280px */
    min-width: 280px; /* Largura mínima */
    max-width: 320px; /* Largura máxima */
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .diferencias .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .diferencias .card svg {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  
  .diferencias .titulo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .diferencias .card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0; /* Garantir que não haja espaçamento extra */
    flex-grow: 1; /* Para que o texto ocupe o espaço disponível */
  }
  .casa {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .casa .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .casa-img {
    flex: 1;
  }
  
  .casa-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .txt-sobre {
    flex: 1;
  }
  
  .txt-sobre h2 {
    font-size: 2.5rem;
    color: #14424b;
    margin-bottom: 20px;
  }
  
  .txt-sobre h2 span {
    color: #2f9364;
  }
  
  .txt-sobre p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .btn-social {
    display: flex;
    gap: 15px;
  }
  
  .btn-social button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #2f9364;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-social button:hover {
    background-color: #14424b;
    transform: translateY(-5px);
  }
  
  .btn-social button svg {
    width: 24px;
    height: 24px;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .casa .container {
        flex-direction: column;
        text-align: center;
    }
  
    .casa-img img {
        max-width: 100%;
    }
  
    .txt-sobre h2 {
        font-size: 2rem;
    }
  
    .txt-sobre p {
        font-size: 1rem;
    }
  
    .btn-social {
        justify-content: center;
    }
  }
  
  .formulario {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .formulario .titulo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .formulario .titulo span {
    color: var(--verde);
  }
  
  form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  form input:focus, form textarea:focus {
    border-color: var(--verde);
  }
/* Estilos para inputs e textarea */
form input:focus, 
form textarea:focus {
    outline: none;
    border-color: var(--verde);
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.1); /* Efeito sutil de foco */
}

/* Estilo específico para textarea */
form textarea {
    resize: none;
    max-height: 200px;
    min-height: 100px; /* Altura mínima recomendada */
    transition: border-color 0.3s ease; /* Suaviza a transição do foco */
}

/* Estilo do botão de enviar */
form .btn-enviar input {
    width: 128px;
    padding: 10px;
    background-color: var(--verde);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease; /* Transição para todos os estados */
    font-size: 1rem; /* Tamanho de fonte consistente */
}

/* Efeito hover do botão */
form .btn-enviar input:hover {
    background-color: var(--verde-escuro);
    transform: translateY(-2px); /* Efeito de levitação sutil */
}

/* Efeito active (quando clicado) */
form .btn-enviar input:active {
    transform: translateY(0);
}
  
  footer {
    background-color: var(--verde-escuro);
    padding: 40px 0;
    color: white;
    text-align: center;
  }
  
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .valores {
    padding: 20px 0;
    text-align: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .valores h2 {
    font-size: 2.5em;
    color: #333;
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
  }
  
  .valores h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #007BFF;
    margin: 10px auto 0;
  }
  
  .valores-lista {
    list-style: none;
    padding: 0;
  }
  
  .valores-lista li {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
  }
  
  .valores-lista p {
    margin: 10px 0;
    font-size: 1em;
    color: #777;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  footer p, footer a {
    font-size: 14px;
    color: #ccc;
  }
  
  .melhores-servicos {
    padding: 60px 0;
  }
  
  .melhores-servicos .destaque-azul {
    font-size: 24px;
    font-weight: 600;
    color: #0060f0;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .melhores-servicos h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .melhores-servicos .cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .melhores-servicos .cards-item {
    width: 30%;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .melhores-servicos .cards-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .melhores-servicos .cards img {
    width: 100%;
    max-width: 200px; /* Aumentei o tamanho máximo da imagem */
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px; /* Adicionei bordas arredondadas */
  }
  
  .melhores-servicos .tipo-servico {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-p);
  }
  
  .melhores-servicos .nome-servico {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
  }
  
  .melhores-servicos .contato {
    font-size: 14px;
    color: var(--color-p-2);
    margin-bottom: 15px;
  }
  
  /* Responsividade para telas menores */
  @media (max-width: 768px) {
    .melhores-servicos .cards-item {
        width: 100%; /* Ocupa toda a largura em telas menores */
    }
  
    .melhores-servicos .cards img {
        max-width: 150px; /* Ajuste para telas menores */
    }
  }
  
  .btn-prioridade {
    background: var(--degrade-btn);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn-prioridade:hover {
    background: var(--orange);
  }
  
  /* Responsividade para telas menores */
  @media (max-width: 768px) {
    .melhores-servicos {
        padding: 40px 20px;
    }
  
    .melhores-servicos h2 {
        font-size: 2rem;
    }
  
    .melhores-servicos .cards-item {
        width: 100%; /* Ocupa toda a largura para melhorar a leitura */
        padding: 20px;
    }
  
    .btn-prioridade {
        width: 100%; /* Botão ocupa toda a largura para melhor clique no mobile */
        padding: 12px;
    }
  }
  
  .menu-icon {
    display: none;
    position: relative;
    z-index: 10;
  }
  
  @media (max-width: 960px) {
    .menu-icon {
        display: block;
    }
  
    .nav-ul {
        position: fixed;
        background: var(--verde-escuro);
        top: 0;
        width: 100%;
        height: 100%;
        left: 100%;
        transition: 0.3s;
        flex-direction: column;
        justify-content: center;
    }
  
    .nav-ul li {
        font-size: 20px;
        margin: 20px 0;
    }
  
    .nav-ul.ativo {
        left: 0;
    }
  
    .main .container {
        flex-direction: column;
    }
  
    .main .container .main-img {
        width: 100%;
    }
  
    .main .container .main-text {
        width: 100%;
        text-align: center;
    }
  
    .main .container .main-text div {
        justify-items: center;
    }
  
    footer .flex {
        flex-direction: column;
    }
  
    footer .redes-sociais {
        text-align: center;
    }
    
    .main-text button:hover {
        background-color: var(--verde-escuro);
    }
    
    @keyframes fadeInDown {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-text h2 {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 30px;
    }
    }
    /* Título principal */
  .main-text h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* 1.8rem mobile, 2.5rem desktop */
    margin: 10px 0 15px 0;
    color: #000000;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    text-shadow: none; /* Remove sombra se existir */
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s ease-out forwards;
  }
  
  /* Ajuste do overlay do header */
  .background-verde::before {
    background: rgba(255, 255, 255, 0.85); /* Fundo branco mais sólido */
  }
  
  /* Se precisar ajustar o contraste do restante do texto */
  .main-text h2,
  .main-text p {
    color: #ed0808; /* Texto escuro para contraste */
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .main-text h1 {
      font-size: 2rem;
      margin: 5px 0 10px 0;
    }
  }
  
  @media (max-width: 480px) {
    .main-text h1 {
      font-size: 1.7rem;
    }
  
    
  @media (max-width: 480px) {
    .main-text h2 {
      font-size: 1.7rem;
    }
  }
  }
  
    
  
  /* Opcional: para telas muito pequenas */
  @media (max-width: 400px) {
    .main-text h1 {
        font-size: 1.8rem;
    }
  }
  
    
    .main-text div {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        gap: 10px;
    }
    
    .main-text button {
        padding: 10px 20px;
        font-size: 1rem;
        color: white;
        background-color: var(--verde);
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .main-text button:hover {
        background-color: var(--verde-escuro);
    }
  
  /* Widget do WhatsApp - Responsivo */
  .whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }
  
  .whatsapp-icon:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-msg {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #e1e1e1;
    display: none;
    transform-origin: bottom right;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .whatsapp-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .whatsapp-header i {
    font-size: 24px;
    color: #25D366;
    margin-right: 10px;
  }
  
  .whatsapp-header h5 {
    margin: 0;
    flex-grow: 1;
    font-size: 16px;
    color: #333;
  }
  
  .close-msg {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0 0 4px 5px;
  }
  
  .whatsapp-msg p {
    margin: 0 0 15px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
  }
  
  .whatsapp-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
  }
  
  .whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
  }
  
  .whatsapp-btn i {
    margin-right: 8px;
  }
  
  /* Animação de pulsação */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  /* Responsivo para celulares */
  @media (max-width: 768px) {
    .whatsapp-widget {
      bottom: 15px;
      right: 15px;
    }
    
    .whatsapp-icon {
      width: 56px;
      height: 56px;
      font-size: 28px;
    }
    
    .whatsapp-msg {
      width: 280px;
      right: -10px;
      bottom: 65px;
    }
    
    .whatsapp-btn {
      padding: 12px 15px;
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .whatsapp-msg {
      width: 260px;
      right: -15px;
      padding: 12px;
    }
    
    .whatsapp-header h5 {
      font-size: 15px;
    }
    
    .whatsapp-msg p {
      font-size: 13px;
      margin-bottom: 12px;
    }
  }
  
  