/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 31 2025 | 18:14:25 */
.wpcf7-form p {
	margin: 0;
}
.wpcf7 form {
	padding: 0;
}

/* Estilizar os campos do formulário */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    outline: none;
    margin-bottom: 16px;
    background: #fff;
    font-size: 16px;
    color: #333;
}

/* Placeholder em cinza claro */
.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
    color: #b2b2b2;
    opacity: 1;
}

/* Botão laranja arredondado */
.wpcf7 input[type="submit"] {
    background: #cf4317;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
    margin: 24px auto 0 auto;
}

/* Efeito hover no botão */
.wpcf7 input[type="submit"]:hover {
    background: #b13a15;
}

/* Fundo do formulário, caso queira igualar */
.wpcf7 form {
    background: #113257;
    padding: 32px 16px;
    border-radius: 0;
}
