/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.bg-title .elementor-heading-title span {
	background: url(https://sixseven.dev.duoapp.com.br/wp-content/uploads/2026/09/bg-title.webp) no-repeat center;
	background-size: contain !important;
	padding: 10px 0;
	display: inline-block; /* necessário pra transform funcionar no span */
	animation: circle-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
	animation-delay: 0.9s; /* espera o título "aparecer" antes de circular */
}
.bg-title.black .elementor-heading-title span {
	background: url(https://sixseven.dev.duoapp.com.br/wp-content/uploads/2026/09/bg-title-black.webp) no-repeat center;
}
@keyframes circle-pop {
	0% {
		opacity: 0;
		transform: scale(0.6) rotate(-8deg);
	}
	60% {
		opacity: 1;
		transform: scale(1.08) rotate(2deg);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

/* Respeita quem prefere menos movimento na tela */
@media (prefers-reduced-motion: reduce) {
	.bg-title .elementor-heading-title span {
		animation: none;
	}
}