/* CTA */

#cta-principal {
    background-color: green;
    color: white;
    padding: 60px 20px;
}

#cta-principal h2 {
    font-size: 2.2em;
    font-weight: bold;
}

#cta-principal p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#cta-principal .btn {
    background-color: #f5a700;
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#cta-principal .btn:hover {
    background-color: #ff99009c;
    transform: scale(1.05);
}


/* Seção Quem Somos */
#quem-somos h2 {
    color: #297e43;
    font-weight: bold;
    font-family: 'Sinova';
    font-size: 2em;
}
#quem-somos p {
    color: #555;
    font-size: 1.1em;
    margin: 10px 0;
}

/* Seção Final - Proteja seu Lar */
section h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 20px;
}
section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Seção Contato */
#contato h2 {
    color: #297e43;
    font-weight: bold;
    font-family: 'Sinova';
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
}
.contact-item {
    text-align: center;
}
.contact-item i {
    color: #25D366;
    transition: color 0.3s ease;
}
.contact-item p {
    margin: 0;
    font-size: 1.1em;
    color: #2c3e50;
}
.contact-text {
    font-size: 1em;
    font-weight: bold;
    color: #2c3e50;
}
.contact-item i:hover {
    color: #FFC107;
}

/* Ícone Fixo do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Estilo do Balão de Mensagem do WhatsApp */
.whatsapp-tooltip {
    visibility: hidden;
    width: 100px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    position: absolute;
    bottom: 80px;
    right: 55%;
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.4em;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}
.whatsapp-float:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
}

.whatsapp-float {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* CTA Final */

#cta-final {
    background-color: #333;
    color: white;
    padding: 30px 20px;
}

#cta-final h3 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
}

#cta-final p {
    font-size: 1.1em;
}

#cta-final .btn {
    background-color: #FFC107;
    color: #333;
    padding: 8px 20px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
}

#cta-final .btn:hover {
    background-color: #f1b600;
}

/* Seção Informações da Empresa */
#info-empresa h2 {
    color: #297e43;
    font-size: 2em;
}

#info-empresa p {
    font-size: 1.1em;
    color: #555;
}

#info-empresa .social-icons .btn {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    transition: color 0.3s, background-color 0.3s;
}

#info-empresa .social-icons .btn i {
    margin-right: 8px;
}

/* Rodapé */
footer {
    background-color: #333;
    color: #ecf0f1;
    padding: 40px 0;
}

footer h5 {
    font-weight: bold;
    color: #FFC107;
}

footer .text-center ul {
    padding: 0;
}

footer .text-center ul li {
    list-style: none;
}

footer a.text-white:hover {
    color: #FFC107;
    text-decoration: none;
}

footer .social-icons a {
    color: #ecf0f1;
    font-size: 1.5em;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #FFC107;
}

footer hr {
    border-top: 1px solid #555;
}

footer p.small {
    color: #777;
    font-size: 0.85em;
}

/* Centralização em dispositivos menores */
@media (max-width: 768px) {
    footer .text-center {
        text-align: center;
    }
}


.svg-icon {
    width: 50px; /* Ajuste conforme necessário */
    height: 50px;
    fill: #fcca34; /* Cor do SVG, se o SVG suportar a cor preenchida */
    transition: transform 0.2s;
}

.praga-item:hover .svg-icon {
    transform: scale(1.2); /* Efeito de ampliação no hover */
}