@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    width: 100%;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}



.admin-form {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    background: rgb(163, 150, 129);
    padding: 20px;
    border-radius: 8px;
    color: white;
}

/* Substitui o margin-top inline */
.form-gerenciar {
    margin-top: 20px;
}

.admin-form h2 {
    margin-bottom: 20px;
    text-align: center;
}

.label-data {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #ccc;
}

.admin-form input,
.admin-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

/* Estilo para o link de voltar */
.container-voltar {
    margin-top: 15px;
    text-align: center;
}

.link-voltar {
    color: #131111;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.link-voltar:hover {
    color: #ffffff;
}

.btn-salvar {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .admin-form {
        width: 95%;
        padding: 15px;
    }
}

/* Estilo para o container e o link de voltar */
.container-voltar {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Linha sutil para separar */
    padding-top: 15px;
}

.link-voltar {
    display: inline-block;
    color: rgb(163, 150, 129);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.link-voltar:hover {
    background-color: #ffffff;
    color: rgb(163, 150, 129); /* Cor do fundo do form */
    transform: translateY(-2px);
}

/* Estilo Base do Botão Flutuante
.whatsapp-flutuante {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    z-index: 9999;

    /* Box Shadow - Sombra para dar profundidade 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

    /* Transição suave para o hover 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


 Estilização para botão whatsapp

.whatsapp-flutuante:hover {
    background-color: #128c7e;
    /* Verde um pouco mais escuro 
    transform: scale(1.1) rotate(10deg);
    /* Aumenta e gira levemente */

    /* Box Shadow mais forte no hover 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

 Efeito de Clique 
.whatsapp-flutuante:active {
    transform: scale(0.9);
}
*/