/* Reset básico */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* Menu */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

/* Ajustando o logo */
.logo img {
   width: 150px;

}
.conta{
    display: block !important; /* Garante que o elemento será exibido */
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
    padding: 8px;
    margin-top: 120px;
    padding-top: 20px;
    padding-bottom: -30px;
}
/* Menu de navegação */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    transition: max-height 0.3s ease-in-out;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: rgb(19, 19, 19);
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Botão do Menu Hambúrguer */
.hamburguer {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: #007BFF;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid black;
    position: absolute;
    right: 10px;
    top: 15px;
    z-index: 1001;
}

/* Seções */
section {
    padding: 80px 20px;
    margin-top: 60px;
}

/* Botões */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

button {
    background: #0d6916;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 80%;
    border-radius: 5px;
    font-size: 16px;
    margin: 10px 0;
}

button:hover {
    background: #02b03f;
}


/* Responsividade */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background: #0056b3;
        width: 100%;
        top: 60px;
        left: 0;
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburguer {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    /* Quando o menu está aberto */
    .nav-active {
        display: flex;
    }
}


/* Estilização do carrossel */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    color: white;
}

h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background: green;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.responsive-img {
    width: 100%;
    height: 100vh; /* Garante que a imagem ocupe toda a altura da tela */
    object-fit: cover; /* Mantém a proporção da imagem sem distorcer */
}

@media (max-width: 768px) {
    .responsive-img {
        height: 80vh; /* Ajuste específico para telas menores */
    }

    .content h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 16px;
    }
}

.vantagens {
    padding: 30px 15px;
    background-color: #2d4ba4;
    margin-top: -60px;
}

.vantagens h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.vantagens h2 span {
    font-weight: bold;
}

.vantagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin: auto;
}

.vantagem {
    background: linear-gradient(to right, #070042, #05002f);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vantagem i {
    font-size: 30px; /* Tamanho do ícone */
    color: #fff;
    margin-bottom: 5px;
}

.vantagem p {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .vantagens-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .vantagem {
        width: 120px;
        padding: 10px;
    }

    .vantagem i {
        font-size: 24px; /* Reduz tamanho do ícone em telas menores */
    }

    .vantagem p {
        font-size: 12px;
    }

    .plano-item{
margin-bottom: 70PX;    }
}

/* planos-residenciaj*/
.tabela-planos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 10px;
}


/* Estilização dos cards */
.plano-item {
    background: linear-gradient(to bottom, #060606, #010f8e);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    margin-top: -60PX;
}

.plano-item:hover {
    transform: scale(1.05);
}

/* Imagens nos cards */
.plano-item img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Estilização do título do plano */
.detalhes-plano h3 {
    background: white;
    color: #052e90;
    font-size: 130px;
    font-weight: bold;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 10px;
    margin-top: -30px;
    position: relative;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.titulo-planos{
    text-align: center;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #030303;
    margin-top: -130PX;
    font-size: 65PX;
}
.descricao-planos,span{
    text-align: center;
    font-size: 20px;
    color: #121212;
}


/* Lista de benefícios */
.plano-item ul {
    list-style: none;
    padding: 0;
    margin: -10px 0;
}

.plano-item ul li {
    padding: 5px 0;
    font-size: 14px;
}

.plano-item span{
    color: white;
}
/* Preço */
.preco {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}

/* Botão de assinatura */
.plano-item a button {
    background-color: rgb(0, 211, 53);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.plano-item a button:hover {
    background-color: #686868;
}

.plano-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid #1dacff; /* Cor da borda */
    border-radius: 10px;
    animation: borderMove 4s linear infinite;
    box-sizing: border-box;
}

/* Animação de borda circulando */
@keyframes borderMove {
    0% {
        clip-path: inset(0% 100% 0% 0%);
    }
    25% {
        clip-path: inset(0% 0% 100% 0%);
    }
    50% {
        clip-path: inset(0% 0% 0% 100%);
    }
    75% {
        clip-path: inset(100% 0% 0% 0%);
    }
    100% {
        clip-path: inset(0% 100% 0% 0%);
    }
}

/* Responsividade */
/* Responsividade para telas grandes (monitores acima de 1200px) */
@media (min-width: 1200px) {
    .tabela-planos {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .plano-item {
        width: 22%;
        max-width: 300px;
    }

    .titulo-planos {
        font-size: 45px;
    }
   
}

/* Responsividade para telas grandes (Monitores acima de 1200px) */
@media (min-width: 1200px) {
    .tabela-planos {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: nowrap; /* Evita que os planos quebrem linha */
    }

  
    .plano-item {
        width: 22%; /* Reduz o tamanho dos cartões */
        max-width: 250px; /* Garante que fiquem menores */
        padding: 15px;
    }

    .plano-item h3 {
        font-size: 20px;
    }

    .plano-item ul li {
        font-size: 13px;
    }

    .preco {
        font-size: 16px;
    }

    .plano-item button {
        font-size: 14px;
        padding: 10px;
    }
}

/* Ajuste para notebooks médios (900px - 1199px) */
@media (min-width: 900px) and (max-width: 1199px) {
    .tabela-planos {
        justify-content: center;
    }

    .plano-item {
        width: 30%;
        max-width: 280px;
    }
}

/* planos-residenciais*/

/* Seção principal */
.floating-section {
    background: linear-gradient(to bottom, #035ae6, #1357b1);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: floating 3s ease-in-out infinite;
padding-top: 80px;
padding-bottom: 100px;
}

.floating-section h2{
    padding-bottom: 30px;
    font-size: 30px;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Animação de flutuação */
@keyframes floating {
    0%, 100% {
        transform: translateY(10);
    }
    50% {
        transform: translateY(-28px);
    }
}

/* Botões */
.buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.button {
    background: #0e0e0e;
    color: white;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.button:hover {
    background: #127d13;
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
    }

    .button {
        width: 90%;
        text-align: center;
        justify-content: center;
    }
}


/* familia*/
.banner-familia {
    position: relative;
    background: url('img/familia-filmes.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    margin-bottom: 90px;
    margin-top: -50px;
}

/* Sobreposição escura */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 19, 33, 0.529); /* Verde escuro semi-transparente */
}

/* Conteúdo dentro do banner */
.conteudo {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.conteudo h2 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
    color: #248aff;
}

.conteudo h2 span {
    color: #ffffff; /* Cor laranja para "Para sua" */
    font-weight: bold;
}

.conteudo p {
    font-size: 18px;
    margin: 10px 0 20px;
}

/* Botão */
.botao-saiba-mais {
    background: #53c700; /* Laranja */
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.botao-saiba-mais:hover {
    background: #bfd001;
    color: #000201;
}

.botao-saiba-mais i {
    margin-left: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .conteudo h2 {
        font-size: 28px;
    }

    .conteudo p {
        font-size: 16px;
    }

    .botao-saiba-mais {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* baner-familia*/

/* Seção de segurança */
.banner-seguranca {
    position: relative;
    background: url('https://img.freepik.com/fotos-premium/sistema-da-camera-do-cctv-da-seguranca-rendicao-3d_110893-97.jpg?w=1380') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Efeito de escurecimento */
.overlay-seguranca {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Conteúdo do banner */
.conteudo-seguranca {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.conteudo-seguranca h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.conteudo-seguranca h2 {
    font-weight: normal;
    color: white;
}

.conteudo-seguranca p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Botão */
.botao-seguranca {
    background: #18a119;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease-in-out;
}

.botao-seguranca:hover {
    background: #127d13;
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .banner-seguranca {
        height: 300px;
    }

    .conteudo-seguranca h2 {
        font-size: 24px;
    }

    .conteudo-seguranca p {
        font-size: 16px;
    }

    .botao-seguranca {
        font-size: 16px;
        padding: 8px 16px;
    }
}


/* Seção dos planos comerciais */
#planos-comerciais {
    background: linear-gradient(to right, #1f0661, #0116db);
    padding: 50px 20px;
    text-align: center;
    color: white;
}

/* Título e descrição */
.descricao-planos-comercial h1 {
    font-size: 64px;
    margin-bottom: 10px;
}

.descricao-planos-comercial span {
    font-size: 18px;
    display: block;
    margin-bottom: 30px;
    color: white;
}

/* Layout dos planos comerciais */
.tabela-planos-comercial {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Estilos de cada plano comercial */
.plano-comercial-item {
    background: white;
    color: rgb(255, 255, 255);
    width: 260px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    animation: floating-comercial 2s ease-in-out infinite;
}

/* Efeito flutuante */
@keyframes floating-comercial {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.plano-comercial-item:hover {
    transform: scale(1.05);
}

/* Destaque para o plano intermediário */
.destaque-comercial {
    background: #fdfbfb;
    color: white;
    transform: scale(1.1);
}

.plano-comercial-item h3 {
    font-size: 32px;
    margin-bottom: 10px;
    background-color: #0a35ad;
    height: 50px;
    border-radius: 50px;
padding-top: 20px;
margin-top: -25px;
}

.plano-comercial-item .preco-comercial {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
    color: #000000;
}

/* Lista de benefícios */
.plano-comercial-item ul {
    list-style: none;
    padding: 0;
    color: #000000;
}

.plano-comercial-item ul li {
    font-size: 16px;
    padding: 5px 0;
}

/* Imagem do plano */
.plano-comercial-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Botão */
.btn-comercial {
    background: #0cc60c;
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-comercial:hover {
    background: #127d13;
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .tabela-planos-comercial {
        flex-direction: column;
        align-items: center;
    }

    .plano-comercial-item {
        width: 90%;
    }

.descricao-planos-comercial h1 {
    font-size: 40px;
}

.detalhes-plano h3 {
    font-size: 35px;
}


}

.wifi-mash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 50px auto;
    background: linear-gradient(90deg, #fefeff, #f6f6ff);
    border-radius: 10px;
    padding: 40px;
    color: rgb(1, 1, 1);
    padding-right: 100px;
}

.wifi-mash-imagem img {
    width: 500px;
    height: auto;
    border-radius: 10px;
}

.wifi-mash-texto {
    flex: 1;
    padding-left: 30px;
}

.wifi-mash-texto h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.wifi-mash-texto p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.wifi-mash-texto ul {
    list-style: none;
    margin-bottom: 20px;
}

.wifi-mash-texto ul li {
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.wifi-mash-texto ul li::before {
    content: "✔";
    color: #ffcc00;
    position: absolute;
    left: 0;
}

.botao {
    display: inline-block;
    background: linear-gradient(45deg, #1bbf01, #11ff00);
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    box-shadow: #030303;
}

.botao:hover {
    background: linear-gradient(45deg, #00ff40, #015416);
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .wifi-mash {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .wifi-mash-imagem img {
        width: 100%;
        max-width: 380px;
    }

    .wifi-mash-texto {
        padding-left:0px;
        margin-top: 10px;
        padding-right: 30px;
        line-height: 30px;

    }

    .wifi-mash-texto p{
margin-right: -30px;

    }

    .botao {
        width: 80%;
        text-align: center;
margin-left: 30px;    
}
}

.contato {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: -50px;
}

h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contato-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contato-item {
    display: flex;
    align-items: center;
    background: #0b066f;
    padding: 15px;
    border-radius: 8px;
    width: 30%;
    min-width: 250px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    
}

.icone {
    background: rgb(8, 125, 180);
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
}

.texto h3 {
    font-size: 18px;
    color: #ffffff;
}

.texto p {
    font-size: 16px;
    color: #ffffff;
}

.mapa {
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
    height: 400px;
}

/* Responsivo */
@media (max-width: 768px) {
    .contato-info {
        flex-direction: column;
        align-items: center;
    }

    .contato-item {
        width: 90%;
        margin-bottom: 10px;
    }
}


/* Títulos */
.section-title {
    color: #0056d2;
    font-size: 18px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Container principal */
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Área dos cards */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    width: 45%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Imagens */
.image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-style-one {
    background: #003366;
    padding: 10px;
    border-radius: 10px;
}

.img-style-two {
    background: #ff7f00;
    padding: 10px;
    border-radius: 10px;
}

/* Conteúdo */
.text-content h2 {
    color: #003366;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.plan-price {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #0056d2;
    margin-top: 10px;
}

.highlight-text {
    color: #00cc44;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
    }
}


/* Botão estilizado */
button {
    background-color: #009f03;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0px 4px 8px rgba(1, 36, 85, 0.3);
}

/* Efeito hover */
button:hover {
    background-color: #00c80a;
    box-shadow: 0px 6px 12px rgba(2, 18, 46, 0.5);
    transform: translateY(-2px);
}

/* Efeito ao clicar */
button:active {
    background-color: #000611;
    transform: translateY(1px);
}

/* Estilização para telas menores */
@media (max-width: 900px) {
    button {
        width: 100%;
        padding: 14px;
    }
}


.footer {
    background: #2353b3;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.footer-logo {
    flex: 1;
    text-align: center;
    max-width: 400px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 10px;
    padding-bottom: 30px;
}

.footer-logo p {
    font-size: 14px;
    margin-bottom: -50px;

}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #000000;
}

.footer-contato {
    flex: 1;
    max-width: 400px;
    text-align: left;
    margin-top: 60px;
}

.footer-contato h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-contato p {
    font-size: 14px;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.footer-contato p i {
    color: #00ffcc;
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.footer-bottom a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.agencia {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contato {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Estilização do botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    animation: bounce 1.5s infinite; /* Efeito de pulo */
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease-in-out;
}

/* Efeito ao passar o mouse */
.whatsapp-float:hover img {
    transform: scale(1.0);
}

/* Animação de "pulo" */
@keyframes bounce {
    5%, 100% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-10px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}
