/* ============================================
   🔥 PREMIUM UI/UX - MARKETING AGRESSIVO 🔥
   ============================================ */

/* Importar animações */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* Variáveis Premium */
:root {
	--gold: #ffd700;
	--gold-dark: #b8860b;
	--premium-red: #dc143c;
	--premium-purple: #8b5cf6;
	--premium-pink: #ec4899;
	--neon-green: #39ff14;
	--glass-bg: rgba(0, 0, 0, 0.35);
	--gradient-gold: linear-gradient(
		135deg,
		#ffd700 0%,
		#ffa500 50%,
		#ffd700 100%
	);
	--gradient-fire: linear-gradient(
		135deg,
		#ff6b35 0%,
		#f7931e 50%,
		#ff6b35 100%
	);
	--gradient-love: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
	--gradient-money: linear-gradient(
		135deg,
		#10b981 0%,
		#059669 50%,
		#10b981 100%
	);
	--shadow-glow: 0 0 40px rgba(255, 215, 0, 0.4);
	--shadow-fire: 0 0 30px rgba(255, 107, 53, 0.5);
	--shadow-love: 0 0 30px rgba(236, 72, 153, 0.5);
}

/* Reset e Base Premium */
* {
	font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
.premium-heading {
	font-family: "Playfair Display", serif;
}

/* Scrollbar Premium */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
	background: var(--gradient-gold);
	border-radius: 10px;
}

/* ============================================
   🌟 ANIMAÇÕES PREMIUM
   ============================================ */

@keyframes pulse-glow {
	0%,
	100% {
		box-shadow:
			0 0 20px rgba(255, 215, 0, 0.4),
			0 0 40px rgba(255, 215, 0, 0.2);
	}
	50% {
		box-shadow:
			0 0 40px rgba(255, 215, 0, 0.8),
			0 0 80px rgba(255, 215, 0, 0.4);
	}
}

@keyframes shake-urgent {
	0%,
	100% {
		transform: translateX(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-5px);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translateX(5px);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% center;
	}
	100% {
		background-position: 200% center;
	}
}

@keyframes heartbeat {
	0%,
	100% {
		transform: scale(1);
	}
	14% {
		transform: scale(1.1);
	}
	28% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.1);
	}
	70% {
		transform: scale(1);
	}
}

@keyframes fire-glow {
	0%,
	100% {
		filter: drop-shadow(0 0 10px #ff6b35) drop-shadow(0 0 20px #f7931e);
	}
	50% {
		filter: drop-shadow(0 0 20px #ff6b35) drop-shadow(0 0 40px #f7931e);
	}
}

@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes sparkle {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

/* ============================================
   🎯 BOTÕES PREMIUM CTA
   ============================================ */

.btn-premium {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px 40px;
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
	z-index: 1;
}

.btn-premium::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
	z-index: -1;
}

.btn-premium:hover::before {
	left: 100%;
}

/* Botão WhatsApp Urgente */
.btn-whatsapp {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: white;
	animation:
		pulse-glow 2s infinite,
		float 3s ease-in-out infinite;
	box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
	transform: scale(1.08) translateY(-5px);
	box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp::after {
	content: "📲";
	font-size: 2rem;
	animation: heartbeat 1.5s infinite;
}

/* Botão de Urgência */
.btn-urgente {
	background: var(--gradient-fire);
	background-size: 200% 200%;
	animation:
		gradient-shift 3s ease infinite,
		shake-urgent 5s infinite;
	color: white;
	box-shadow: var(--shadow-fire);
}

.btn-urgente:hover {
	transform: scale(1.1);
	animation: gradient-shift 1s ease infinite;
}

/* Botão Amor */
.btn-amor {
	background: var(--gradient-love);
	color: white;
	box-shadow: var(--shadow-love);
}

.btn-amor:hover {
	transform: scale(1.08);
	box-shadow: 0 15px 50px rgba(236, 72, 153, 0.6);
}

.btn-amor::after {
	content: "💕";
	animation: heartbeat 1s infinite;
}

/* Botão Dinheiro */
.btn-dinheiro {
	background: var(--gradient-money);
	color: white;
	box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.btn-dinheiro:hover {
	transform: scale(1.08);
}

.btn-dinheiro::after {
	content: "💰";
	animation: float 2s ease-in-out infinite;
}

/* ============================================
   🏆 BADGES E ELEMENTOS DE URGÊNCIA
   ============================================ */

.badge-urgente {
	display: inline-block;
	padding: 8px 20px;
	background: var(--premium-red);
	color: white;
	font-size: 1.2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 30px;
	animation: pulse-glow 1.5s infinite;
	margin-bottom: 15px;
}

.badge-garantia {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 25px;
	background: var(--gradient-gold);
	color: #1a1a2e;
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 30px;
	box-shadow: var(--shadow-glow);
}

.badge-garantia::before {
	content: "✓";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #1a1a2e;
	color: var(--gold);
	border-radius: 50%;
	font-weight: bold;
}

.contador-urgencia {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background: rgba(220, 20, 60, 0.9);
	color: white;
	font-size: 1.6rem;
	font-weight: 700;
	border-radius: 10px;
	animation: shake-urgent 3s infinite;
}

.contador-urgencia .numero {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--gold);
}

/* ============================================
   📦 CARDS PREMIUM
   ============================================ */

.card-premium {
	position: relative;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 40px;
	border: 1px solid rgba(255, 215, 0, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	transition: all 0.4s ease;
	overflow: hidden;
}

.card-premium::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-gold);
}

.card-premium:hover {
	transform: translateY(-10px);
	box-shadow:
		0 35px 70px rgba(0, 0, 0, 0.4),
		var(--shadow-glow);
	border-color: rgba(255, 215, 0, 0.5);
}

.card-amor {
	border-top: 4px solid transparent;
	background-image:
		linear-gradient(var(--glass-bg), var(--glass-bg)), var(--gradient-love);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

.card-dinheiro {
	border-top: 4px solid transparent;
	background-image:
		linear-gradient(var(--glass-bg), var(--glass-bg)), var(--gradient-money);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

/* ============================================
   📊 PROVA SOCIAL
   ============================================ */

.prova-social {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin: 40px 0;
}

.stat-item {
	text-align: center;
	padding: 25px 35px;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	min-width: 180px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: scale(1.05);
}

.stat-numero {
	font-size: 4rem;
	font-weight: 900;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	line-height: 1;
}

.stat-label {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ============================================
   ⭐ DEPOIMENTOS
   ============================================ */

.depoimento {
	background: var(--glass-bg);
	backdrop-filter: blur(15px);
	padding: 30px;
	border-radius: 20px;
	border-left: 4px solid var(--gold);
	margin: 20px 0;
	position: relative;
}

.depoimento::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 6rem;
	color: var(--gold);
	opacity: 0.3;
	font-family: "Playfair Display", serif;
}

.depoimento-texto {
	font-size: 1.6rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	margin-bottom: 15px;
}

.depoimento-autor {
	display: flex;
	align-items: center;
	gap: 15px;
}

.depoimento-autor img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid var(--gold);
}

.depoimento-nome {
	font-weight: 700;
	color: var(--gold);
}

.depoimento-local {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.6);
}

.stars {
	color: var(--gold);
	font-size: 1.4rem;
	letter-spacing: 2px;
}

/* ============================================
   🎨 SEÇÕES HERO PREMIUM
   ============================================ */

.hero-premium {
	margin-top: 30px;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-premium::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		ellipse at center,
		transparent 0%,
		rgba(0, 0, 0, 0.2) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 40px;
	animation: fadeInUp 1s ease;
}

.hero-titulo {
	font-size: 5rem;
	font-weight: 900;
	margin-bottom: 20px;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: none;
	line-height: 1.2;
}

.hero-subtitulo {
	font-size: 2.2rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	font-weight: 300;
}

/* ============================================
   📝 LISTA DE SERVIÇOS PREMIUM
   ============================================ */

.servicos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

.servico-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 25px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	color: white;
}

.servico-item:hover {
	background: rgba(255, 215, 0, 0.1);
	border-color: var(--gold);
	transform: translateX(10px);
}

.servico-icon {
	font-size: 2.4rem;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-gold);
	border-radius: 12px;
}

.servico-texto {
	font-size: 1.5rem;
	font-weight: 500;
}

/* ============================================
   🖼️ GALERIA PREMIUM
   ============================================ */

.galeria-premium {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.galeria-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 1;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	transition: all 0.4s ease;
}

.galeria-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		transparent 50%,
		rgba(0, 0, 0, 0.8) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.galeria-item:hover::before {
	opacity: 1;
}

.galeria-item:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.galeria-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.galeria-item:hover img {
	transform: scale(1.1);
}

/* ============================================
   🔔 BANNER DE URGÊNCIA NO TOPO
   ============================================ */

.banner-urgencia {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, #dc143c, #ff4500, #dc143c);
	background-size: 200% 100%;
	animation: gradient-shift 3s linear infinite;
	color: white;
	padding: 10px 20px;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.banner-urgencia .emoji {
	animation: heartbeat 1s infinite;
}

/* ============================================
   📱 BOTÃO WHATSAPP FLUTUANTE
   ============================================ */

.whatsapp-float {
	position: fixed;
	bottom: 100px;
	right: 30px;
	z-index: 9998;
}

.whatsapp-float .btn-whatsapp {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	padding: 0;
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.whatsapp-float .btn-whatsapp::after {
	content: "💬";
	font-size: 3rem;
}

.whatsapp-float .pulse-ring {
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.4);
	animation: pulse-glow 2s infinite;
	z-index: -1;
}

/* ============================================
   ✨ EFEITOS ESPECIAIS
   ============================================ */

/* Card Hero mais claro */
.card-hero {
	background: linear-gradient(
		135deg,
		rgba(0, 7, 255, 0.85) 0%,
		rgba(8, 216, 234, 0.85) 100%
	) !important;
	border: 2px solid rgba(255, 215, 0, 0.4) !important;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.3),
		0 0 40px rgba(255, 215, 0, 0.15) !important;
}

.text-gradient-gold {
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-gradient-love {
	background: var(--gradient-love);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-glow {
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.box-glow-gold {
	box-shadow: var(--shadow-glow);
}

.box-glow-fire {
	box-shadow: var(--shadow-fire);
}

.animate-float {
	animation: float 3s ease-in-out infinite;
}

.animate-pulse {
	animation: pulse-glow 2s infinite;
}

.animate-shake {
	animation: shake-urgent 5s infinite;
}

/* Linha divisória premium */
.divider-premium {
	height: 3px;
	background: var(--gradient-gold);
	border: none;
	border-radius: 3px;
	margin: 40px auto;
	width: 150px;
}

/* ============================================
   📱 RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
	.hero-titulo {
		font-size: 3rem;
	}

	.hero-subtitulo {
		font-size: 1.6rem;
	}

	.btn-premium {
		padding: 15px 25px;
		font-size: 1.4rem;
	}

	.galeria-premium {
		grid-template-columns: 1fr;
	}

	.prova-social {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}

	.stat-item {
		width: auto;
		min-width: 100px;
		max-width: 150px;
		padding: 15px 20px;
	}

	.stat-numero {
		font-size: 2.5rem;
	}

	.stat-label {
		font-size: 1rem;
	}

	.servicos-grid {
		grid-template-columns: 1fr;
	}

	.banner-urgencia {
		font-size: 1.1rem;
		padding: 8px 10px;
		flex-wrap: wrap;
		gap: 5px;
	}

	.whatsapp-float {
		bottom: 80px;
		right: 15px;
	}

	.card-premium {
		padding: 25px 20px;
		border-radius: 16px;
	}

	.contador-urgencia {
		padding: 10px 20px;
		font-size: 1.3rem;
		gap: 8px;
	}

	.contador-urgencia .numero {
		font-size: 2rem;
	}

	.depoimento {
		padding: 20px;
	}

	.depoimento-texto {
		font-size: 1.4rem;
	}

	/* Hero Section Mobile */
	.hero-premium .intro-content {
		grid-template-columns: 1fr !important;
		gap: 2rem;
		padding: 2rem 1.5rem;
		min-height: auto;
	}

	.hero-premium .intro-text-content {
		order: 1;
		padding: 2rem !important;
	}

	.hero-premium .intro-img {
		order: 2;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 1rem;
	}

	.hero-premium .intro-img img {
		width: 100%;
		max-width: 350px;
		height: auto;
		border-radius: 20px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.hero-titulo {
		font-size: 2.5rem;
	}

	.hero-subtitulo {
		font-size: 1.4rem;
	}

	.prova-social {
		gap: 10px;
	}

	.stat-item {
		min-width: 90px;
		max-width: 110px;
		padding: 12px 15px;
	}

	.stat-numero {
		font-size: 2rem;
	}

	.stat-label {
		font-size: 0.9rem;
	}

	.btn-premium {
		padding: 12px 20px;
		font-size: 1.2rem;
	}

	.banner-urgencia {
		font-size: 1rem;
		padding: 6px 8px;
	}

	.badge-urgente {
		font-size: 1rem;
		padding: 6px 15px;
	}

	.contador-urgencia {
		padding: 8px 15px;
		font-size: 1.1rem;
	}

	.contador-urgencia .numero {
		font-size: 1.6rem;
	}

	.card-premium {
		padding: 20px 15px;
	}

	.hero-premium .intro-img img {
		max-width: 280px;
	}
}

/* ============================================
   🎭 OVERRIDE DOS ESTILOS EXISTENTES
   ============================================ */

body {
	background: #0a0a1a;
}

.section {
	position: relative;
}

.grid-main-heading {
	font-size: 3.5rem !important;
	font-weight: 900 !important;
	margin-bottom: 25px !important;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.grid-description {
	font-size: 1.7rem !important;
	line-height: 1.9 !important;
	color: rgba(255, 255, 255, 0.9) !important;
	padding-bottom: 30px !important;
}

/* Back to top premium */
.back-to-top {
	position: fixed !important;
	bottom: 20px !important;
	right: 20px !important;
	left: auto !important;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
	color: white !important;
	padding: 18px 30px !important;
	border-radius: 50px !important;
	font-weight: 700 !important;
	font-size: 1.5rem !important;
	box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4) !important;
	animation: pulse-glow 2s infinite !important;
	border: none !important;
	z-index: 9999 !important;
	text-decoration: none !important;
}

.back-to-top:hover {
	transform: scale(1.05) !important;
	box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6) !important;
}

@media (max-width: 606px) {
	.hero-premium {
		margin-top: 0;
	}
	.back-to-top {
		bottom: 0 !important;
		right: 0 !important;
		left: 0 !important;
		border-radius: 0 !important;
		text-align: center !important;
		padding: 15px !important;
	}
}
