/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 06 2025 | 20:13:08 */
/* ===================== */
/* TOPO COM EFEITO BLUR */
/* ===================== */
#topo-blur {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	/*z-index: 999;*/
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
/* Espaço para evitar sobreposição do topo fixo */
.section-apos-topo {
	padding-top: 100px;
}
/* ===================== */
/* FORMULÁRIO CONTACT 7 */
/* ===================== */
/* Container principal */
.wpcf7-form {
	display: flex;
	flex-direction: column;
	font-family: 'Delius Swash Caps', cursive;
	padding: 0px 20px 0px 20px !important;
	color: #fff;
	font-size: 15px;
}
/* Labels */
.wpcf7-form label {
	display: block;
}
/* Espaçamento entre campos */
.wpcf7-form .wpcf7-form-control {
	margin-bottom: 20px !important;
}
/* Inputs e textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ffc78d;
	border-radius: 12px;
	background-color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #333;
	transition: all 0.3s ease;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	border-color: #f39749;
	outline: none;
	box-shadow: 0 0 0 2px rgba(243, 151, 73, 0.2);
}
/* Textarea ajustada */
textarea[name="detalhes"] {
	height: 80px !important;
	resize: vertical;
}
/* Checkbox */
.wpcf7-acceptance {
	font-size: 13px;
	margin-bottom: 20px;
}
/* Botão de envio - full width + estilizado */
.wpcf7 input[type="submit"] {
	width: 100%;
	display: block;
	text-align: center;
	background-color: #2bbec7;
	color: white;
	border: none;
	padding: 14px 24px;
	font-size: 16px;
	font-family: 'Delius Swash Caps', cursive;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.wpcf7 input[type="submit"]:hover {
	background-color: #219eaa;
}
.wpcf7-form br {
	display:none;
}
/* ===================== */
/* MODAL DE CONFIRMAÇÃO */
/* ===================== */
/* ========== Modal Background ========== */
#modal-bg {
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
#colorir-success-box {
	position: relative;
	font-family: 'Delius Swash Caps', cursive !important;
	max-width: 90%;
	margin: 10% auto;
	background-color: #36b7ba;
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
	animation: fadeInUp 0.3s ease-out;
}
/* ========== Cabeçalho com Nome ========== */
.modal-header {
	color: white;
	font-family: 'Delius Swash Caps', cursive !important;
	font-size: 36px;
	line-height: 1.2;
	margin: 0;
	padding: 30px 0 15px;
}
/* ========== Emoji ========== */
.emoji {
	font-size: 60px;
	margin: 0 auto -22px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
/* ========== Conteúdo Branco ========== */
.modal-content {
	background-color: white;
	padding: 30px 20px 20px;
	margin-top: -10px;
	z-index: 0;
	position: relative;
}
/* ========== Texto ========== */
.mensagem-box {
	font-size: 22px !important;
	margin: 8px 0;
	color: #5e3a2f;
}
.mensagem-box span {
	font-size: 40px;
	color: #4a2d20;
	display: block;
	/*margin: 10px 0;*/
}
/* ========== Botão ========== */
.modal-content button {
	background-color: #2bbec7;
	font-family: 'Delius Swash Caps', cursive;
	color: white;
	min-width: 50%;
	padding: 16px 20px;
	font-size: 16px;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	margin-top: 20px;
	transition: 0.3s;
}
.modal-content button:hover {
	background-color: #219eaa;
}
/* ========== Animação ========== */
@keyframes fadeInUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
