/* Botão flutuante do WhatsApp */
a .whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 100px;
    height: auto;
    z-index: 99999;
    cursor: pointer;
    border-radius: 50%;
    transform-origin: center;
    animation: whatsappPulse 1.8s infinite;
    transition: transform .3s ease;
}

/* Efeito ao passar o mouse */
a .whatsapp-float:hover {
    animation-play-state: paused;
    transform: scale(1.15);
}

/* Animação pulsante */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }

    40% {
        transform: scale(1.12);
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    a .whatsapp-float {
        width: 80px;
        right: 15px;
        bottom: 15px;
    }
}









/* ===========================
   FORMULÁRIO DE CONTATO
=========================== */

#form {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

#form fieldset {
    border: none;
    padding: 35px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

/* Labels */

#form label {
    display: block;
    margin: 18px 0 8px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

/* Campos */

#form input,
#form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    border: 2px solid #dddddd;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    background: #fafafa;
    transition: .35s ease;
    outline: none;
}

/* Placeholder */

#form input::placeholder,
#form textarea::placeholder {
    color: #999;
}

/* Foco */

#form input:focus,
#form textarea:focus {
    background: #fff;
    border-color: #25D366;
    box-shadow: 0 0 12px rgba(37,211,102,.25);
}

/* Textarea */

#form textarea {
    resize: vertical;
    min-height: 160px;
}

/* Botão */

#form .button {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #25D366, #1EBE57);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all .35s ease;
    box-shadow: 0 8px 18px rgba(37,211,102,.35);
}

/* Hover */
#form .button:hover {
    background: linear-gradient(135deg, #FFD400, #FFB800);
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 196, 0, .45);
}

/* Clique */
#form .button:active {
    transform: scale(.98);
}

/* Campos obrigatórios inválidos */

#form input:invalid,
#form textarea:invalid {
    border-color: #e5e5e5;
}

/* Campos válidos */

#form input:valid,
#form textarea:valid {
    border-color: #b8e6c8;
}

/* Responsivo */

@media (max-width:768px){

    #form fieldset{
        padding:25px;
        border-radius:12px;
    }

    #form input,
    #form textarea{
        font-size:15px;
        padding:13px 15px;
    }

    #form .button{
        font-size:17px;
        padding:15px;
    }

}




/* ====================================
   FOOTER
==================================== */

footer {
    background: linear-gradient(180deg, #2b2b2b 0%, #1a1a1a 100%);
    color: #e8e8e8;
    padding: 60px 0 30px;
    font-family: Arial, Helvetica, sans-serif;
    border-top: 5px solid #FFD400;
}

footer .wrap-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

footer .col-1-2 {
    flex: 1;
    min-width: 300px;
}

/* Títulos */

footer strong {
    color: #FFD400;
    font-weight: 700;
}

/* Parágrafos */

footer p,
footer address {
    color: #d8d8d8;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 18px;
    font-style: normal;
}

/* Links */

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

footer a:hover {
    color: #FFD400;
}

/* Botão */

footer .button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #25D366, #1EBE57);
    color: #fff;
    border-radius: 40px;
    font-weight: bold;
    transition: all .35s;
    box-shadow: 0 8px 18px rgba(37,211,102,.35);
}

footer .button:hover {
    background: linear-gradient(135deg, #FFD400, #FFB800);
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,212,0,.45);
}

/* Redes sociais */

.bottom-social {
    margin-top: 20px;
}

.bottom-social a {
    display: inline-block;
    margin-right: 12px;
}

.bottom-social img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: .35s;
}

.bottom-social img:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 0 18px rgba(255,212,0,.6);
}

/* Linha divisória */

.footer-links {
    margin: 40px 0 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
    line-height: 2;
}

.footer-links a {
    margin: 0 10px;
    color: #f5f5f5;
    font-size: 15px;
}

.footer-links a:hover {
    color: #FFD400;
}

/* Atendimento */

.atendimento {
    text-align: center;
    color: #bfbfbf;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.8;
}

/* Copyright */

.copy-right p:first-child {
    font-size: 15px;
    margin-bottom: 15px;
}

/* Endereço */

address {
    background: rgba(255,255,255,.05);
    padding: 20px;
    border-left: 4px solid #FFD400;
    border-radius: 10px;
}

/* Responsivo */

@media (max-width:768px){

    footer{
        padding:40px 0 25px;
        text-align:center;
    }

    footer .row{
        flex-direction:column;
        gap:30px;
    }

    footer .col-1-2{
        min-width:100%;
    }

    address{
        text-align:left;
    }

    .footer-links a{
        display:inline-block;
        margin:8px;
    }

    .bottom-social{
        text-align:center;
    }

}

