:root {
	--primary-color: #9b59b6; /* Roxo */
	--primary-dark: #8e44ad;
	--secondary-color: #1a1a1a; /* Preto suave */
	--accent-color: #6c3483; /* Roxo escuro */
	--text-color: #333;
	--light-bg: #f8f5fa;
	--white: #ffffff;
	--whatsapp-green: #25d366;
	--gradient-gold: linear-gradient(
		135deg,
		#9b59b6 0%,
		#d7bde2 50%,
		#9b59b6 100%
	);
	--gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", sans-serif;
	color: var(--text-color);
	line-height: 1.7;
	margin: 0;
	padding: 0;
	background-color: var(--light-bg);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", serif;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}

/* Urgency Banner */
.urgency-banner {
	background: linear-gradient(90deg, #6c3483, #9b59b6, #6c3483);
	color: white;
	padding: 12px 0;
	text-align: center;
	font-size: 0.95rem;
	animation: pulse-bg 2s infinite;
}

.urgency-banner .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.pulse-dot {
	width: 10px;
	height: 10px;
	background: #00ff00;
	border-radius: 50%;
	animation: pulse-dot 1s infinite;
}

@keyframes pulse-dot {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

@keyframes pulse-bg {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.urgency-timer {
	background: rgba(255, 255, 255, 0.2);
	padding: 3px 10px;
	border-radius: 20px;
	font-weight: bold;
}

/* Buttons */
.btn-primary {
	background: var(--gradient-gold);
	color: var(--white);
	padding: 15px 35px;
	border-radius: 50px;
	font-weight: bold;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	box-shadow: 0 4px 20px rgba(155, 89, 182, 0.4);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(155, 89, 182, 0.6);
}

.btn-whatsapp {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: white;
	padding: 18px 40px;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
	transition: all 0.3s ease;
}

.btn-whatsapp:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.btn-mega {
	padding: 22px 50px;
	font-size: 1.4rem;
}

.btn-pulse {
	animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	50% {
		box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
	}
}

.btn-service {
	background: var(--gradient-gold);
	color: var(--white);
	padding: 12px 25px;
	border-radius: 30px;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.btn-service:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

/* Navigation */
.main-nav {
	background: var(--gradient-dark);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	color: var(--primary-color);
	font-family: "Playfair Display", serif;
	font-size: 1.6rem;
	font-weight: bold;
	text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-links a {
	color: var(--white);
	font-weight: 500;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s;
}

.nav-links a:hover {
	color: var(--primary-color);
}

.nav-cta {
	background: var(--whatsapp-green);
	padding: 10px 20px !important;
	border-radius: 30px;
	animation: nav-cta-pulse 2s infinite;
}

@keyframes nav-cta-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
	}
}

/* Header / Masthead */
header.masthead {
	background:
		linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
		url("material/1.jpeg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	padding: 100px 0 120px;
	text-align: center;
	position: relative;
}

header.masthead::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.4) 100%
	);
}

header.masthead .container {
	position: relative;
	z-index: 1;
}

.badge-trust {
	display: inline-block;
	background: var(--gradient-gold);
	color: var(--white);
	padding: 8px 25px;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: bold;
	margin-bottom: 25px;
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
	}
	50% {
		box-shadow: 0 0 40px rgba(155, 89, 182, 0.8);
	}
}

header.masthead h1 {
	font-size: 4rem;
	color: var(--primary-color);
	margin-bottom: 15px;
	text-shadow:
		2px 2px 4px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(155, 89, 182, 0.3);
	letter-spacing: 2px;
}

header.masthead .subtitle {
	font-size: 1.4rem;
	margin-bottom: 25px;
	color: #fff;
	font-weight: 300;
}

.hero-features {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 35px;
	flex-wrap: wrap;
}

.hero-features span {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 1rem;
}

.hero-features i {
	color: var(--whatsapp-green);
}

.cta-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(155, 89, 182, 0.3);
	border-radius: 20px;
	padding: 30px 40px;
	display: inline-block;
	margin-bottom: 30px;
}

.cta-urgency {
	color: #d7bde2;
	font-size: 1.1rem;
	margin-bottom: 20px;
	font-weight: bold;
	animation: blink 1s infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.micro-text {
	color: #aaa;
	font-size: 0.85rem;
	margin-top: 15px;
}

.social-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	color: #ccc;
	font-size: 0.95rem;
}

.proof-avatars {
	display: flex;
}

.proof-avatars img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 2px solid var(--primary-color);
	margin-left: -10px;
}

.proof-avatars img:first-child {
	margin-left: 0;
}

/* Stats Section */
.stats-section {
	background: var(--gradient-dark);
	padding: 60px 0;
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: bold;
	color: var(--primary-color);
	font-family: "Playfair Display", serif;
	text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.stat-label {
	color: #fff;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 10px;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-badge {
	display: inline-block;
	background: var(--gradient-gold);
	color: var(--white);
	padding: 6px 20px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.section-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin-top: 10px;
}

/* Services Section */
.services-section {
	padding: 100px 0;
	background-color: var(--white);
	text-align: center;
}

.service-card {
	padding: 35px 25px;
	transition: all 0.4s ease;
	border-radius: 20px;
	height: 100%;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-gold);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.premium-card {
	border: 2px solid var(--primary-color);
	transform: scale(1.05);
}

.premium-card:hover {
	transform: scale(1.05) translateY(-10px);
}

.service-badge {
	position: absolute;
	top: 15px;
	right: -30px;
	background: linear-gradient(135deg, #ff4444, #cc0000);
	color: white;
	padding: 5px 40px;
	font-size: 0.75rem;
	font-weight: bold;
	transform: rotate(45deg);
}

.service-icon img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 20px;
	border: 4px solid var(--primary-color);
	box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
	transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
	transform: scale(1.1);
	box-shadow: 0 0 30px rgba(155, 89, 182, 0.5);
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--secondary-color);
}

.service-benefits {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	text-align: left;
}

.service-benefits li {
	padding: 8px 0;
	color: #555;
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-benefits i {
	color: var(--whatsapp-green);
}

/* About Section */
.about-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.about-img-wrapper {
	position: relative;
	display: inline-block;
}

.about-img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.experience-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--gradient-gold);
	color: var(--white);
	padding: 20px;
	border-radius: 50%;
	text-align: center;
	box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.exp-number {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	font-family: "Playfair Display", serif;
}

.exp-text {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.highlight-text {
	font-size: 1.2rem;
	color: #333;
	border-left: 4px solid var(--primary-color);
	padding-left: 20px;
	margin: 25px 0;
}

.about-features {
	margin: 30px 0;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	color: #444;
}

.about-feature i {
	color: var(--primary-color);
	font-size: 1.2rem;
}

.guarantee-box {
	display: flex;
	align-items: center;
	gap: 15px;
	background: linear-gradient(135deg, #1a5f1a 0%, #228b22 100%);
	color: white;
	padding: 20px 25px;
	border-radius: 15px;
	margin: 30px 0;
}

.guarantee-box i {
	font-size: 2.5rem;
	color: #90ee90;
}

.guarantee-box p {
	margin: 5px 0 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

/* Amarração Details Section */
.amarracao-details {
	background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%) !important;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin: 25px 0;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: white;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.benefit-item i {
	color: var(--primary-color);
	font-size: 1.2rem;
}

.urgency-box {
	display: flex;
	align-items: center;
	gap: 15px;
	background: linear-gradient(135deg, #8b0000 0%, #cc0000 100%);
	color: white;
	padding: 20px 25px;
	border-radius: 15px;
	margin-top: 25px;
	animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.5);
	}
	50% {
		box-shadow: 0 0 0 15px rgba(139, 0, 0, 0);
	}
}

.urgency-box i {
	font-size: 2rem;
}

.urgency-box p {
	margin: 5px 0 0;
	font-size: 0.9rem;
}

/* Image Gallery Section */
.image-gallery-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	aspect-ratio: 1;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.4s ease;
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

/* Depoimentos Screenshots Section */
.depoimentos-screenshots {
	padding: 80px 0;
	background: linear-gradient(180deg, #f8f5fa 0%, #fff 100%);
}

.depoimentos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	max-width: 1400px;
	margin: 0 auto;
}

.depoimento-screenshot {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
}

.depoimento-screenshot::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-gold);
}

.depoimento-screenshot:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(155, 89, 182, 0.25);
}

.depoimento-screenshot img {
	width: 100%;
	height: auto;
	display: block;
}

.depoimento-screenshot .verified-badge {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: linear-gradient(135deg, #00cc44 0%, #009933 100%);
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 5px;
}

@media (max-width: 992px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.depoimentos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item:nth-child(1) {
		grid-column: span 1;
	}

	.depoimentos-grid {
		grid-template-columns: 1fr;
	}
}

.floating-animation {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

/* Testimonials Section */
.testimonials-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	text-align: center;
}

.testimonials-section h2 {
	color: var(--primary-color);
}

.testimonials-section .section-subtitle {
	color: #aaa;
}

.testimonial-card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	text-align: left;
	position: relative;
	height: 100%;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-10px);
}

.testimonial-card.featured {
	border: 3px solid var(--primary-color);
	transform: scale(1.05);
}

.testimonial-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.testimonial-stars {
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.testimonial-text {
	font-style: italic;
	color: #444;
	line-height: 1.8;
	margin-bottom: 20px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 3px solid var(--primary-color);
}

.testimonial-author strong {
	display: block;
	color: #333;
}

.testimonial-author span {
	font-size: 0.85rem;
	color: #888;
}

.testimonial-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #00cc44 0%, #009933 100%);
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: bold;
}

.testimonials-cta {
	margin-top: 50px;
}

.testimonials-cta p {
	color: white;
	font-size: 1.3rem;
	margin-bottom: 25px;
}

/* Works Section */
.works-section {
	padding: 100px 0;
	background-color: var(--light-bg);
	text-align: center;
}

.work-item {
	background: white;
	padding: 30px 20px;
	border-radius: 20px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.work-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.work-item.highlight-work {
	border: 2px solid var(--primary-color);
}

.work-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--gradient-gold);
	color: var(--secondary-color);
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.7rem;
	font-weight: bold;
}

.work-item img {
	max-width: 80px;
	margin-bottom: 15px;
	filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
	transition: all 0.3s ease;
}

.work-item:hover img {
	transform: scale(1.1);
}

.work-item h5 {
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background: white;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: var(--light-bg);
	padding: 25px;
	border-radius: 15px;
	text-align: left;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.faq-item h4 {
	font-size: 1rem;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.faq-item h4 i {
	color: var(--primary-color);
}

.faq-item p {
	color: #555;
	font-size: 0.95rem;
	margin: 0;
}

/* Final CTA Section */
.final-cta {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
	color: white;
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239b59b6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff4444, #cc0000);
	color: white;
	padding: 10px 30px;
	border-radius: 30px;
	font-weight: bold;
	margin-bottom: 25px;
	animation: cta-badge-pulse 1.5s infinite;
}

@keyframes cta-badge-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.final-cta h2 {
	font-size: 2.8rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.cta-subtitle {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 30px;
}

.cta-timer {
	background: rgba(155, 89, 182, 0.1);
	border: 1px solid rgba(155, 89, 182, 0.3);
	border-radius: 20px;
	padding: 25px 40px;
	display: inline-block;
	margin-bottom: 30px;
}

.cta-timer p {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-weight: bold;
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.countdown-item {
	background: var(--gradient-gold);
	color: var(--white);
	padding: 15px 25px;
	border-radius: 10px;
	min-width: 80px;
}

.countdown-item span {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	font-family: "Playfair Display", serif;
}

.countdown-item small {
	font-size: 0.8rem;
	text-transform: uppercase;
}

.cta-guarantees {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.cta-guarantees span {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #aaa;
}

.cta-guarantees i {
	color: var(--whatsapp-green);
}

.cta-phone {
	color: #888;
	margin-top: 20px;
}

.cta-phone strong {
	color: var(--primary-color);
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.trust-badges span {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #666;
	font-size: 0.9rem;
}

.trust-badges i {
	color: var(--primary-color);
}

/* Footer */
footer {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	color: #888;
	padding: 60px 0 30px;
	text-align: center;
}

.footer-content {
	margin-bottom: 30px;
}

.footer-logo {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.footer-tagline {
	color: #aaa;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.footer-social a {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--primary-color);
	color: var(--secondary-color);
	transform: translateY(-3px);
}

.footer-disclaimer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-disclaimer p {
	font-size: 0.8rem;
	color: #666;
	margin-bottom: 8px;
}

.copyright {
	margin-top: 20px;
	font-size: 0.85rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: white;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
	box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
	z-index: 1000;
	transition: all 0.3s ease;
	animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	50% {
		box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
	}
}

.floating-whatsapp:hover {
	transform: scale(1.1);
}

.floating-text {
	position: absolute;
	right: 80px;
	background: #333;
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	white-space: nowrap;
	opacity: 0;
	transition: all 0.3s ease;
}

.floating-whatsapp:hover .floating-text {
	opacity: 1;
}

/* Exit Intent Popup */
.exit-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.exit-popup.active {
	opacity: 1;
	visibility: visible;
}

.popup-content {
	background: white;
	padding: 50px;
	border-radius: 20px;
	text-align: center;
	max-width: 500px;
	position: relative;
	animation: popup-bounce 0.5s ease;
}

@keyframes popup-bounce {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #888;
}

.popup-content h3 {
	color: #cc0000;
	font-size: 2rem;
	margin-bottom: 15px;
}

.popup-content p {
	margin-bottom: 15px;
	color: #333;
}

/* Utilities */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col-md-4 {
	flex: 0 0 33.333%;
	max-width: 33.333%;
	padding: 0 15px;
	box-sizing: border-box;
}

.col-md-6 {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 15px;
	box-sizing: border-box;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
}

.text-center {
	text-align: center;
}
.mb-5 {
	margin-bottom: 3rem;
}
.mt-5 {
	margin-top: 3rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.urgency-banner {
		font-size: 0.85rem;
		padding: 10px 15px;
	}

	.col-md-4,
	.col-md-6 {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}

	header.masthead {
		padding: 60px 0 80px;
	}

	header.masthead h1 {
		font-size: 2.5rem;
	}

	header.masthead .subtitle {
		font-size: 1.1rem;
	}

	.hero-features {
		flex-direction: column;
		gap: 15px;
	}

	.cta-box {
		padding: 20px;
		margin: 0 15px 30px;
	}

	.btn-whatsapp {
		padding: 15px 25px;
		font-size: 1rem;
	}

	.btn-mega {
		padding: 18px 30px;
		font-size: 1.1rem;
	}

	.nav-container {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links {
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.premium-card,
	.testimonial-card.featured {
		transform: scale(1);
	}

	.premium-card:hover,
	.testimonial-card.featured:hover {
		transform: translateY(-10px);
	}

	.experience-badge {
		bottom: -10px;
		right: 10px;
		padding: 15px;
	}

	.exp-number {
		font-size: 1.5rem;
	}

	.countdown {
		gap: 10px;
	}

	.countdown-item {
		padding: 10px 15px;
		min-width: 60px;
	}

	.countdown-item span {
		font-size: 1.5rem;
	}

	.final-cta h2 {
		font-size: 2rem;
	}

	.cta-guarantees {
		flex-direction: column;
		gap: 15px;
	}

	.popup-content {
		margin: 20px;
		padding: 30px;
	}

	.floating-whatsapp {
		width: 60px;
		height: 60px;
		font-size: 28px;
		bottom: 20px;
		right: 20px;
	}

	.floating-text {
		display: none;
	}
}

@media (max-width: 480px) {
	header.masthead h1 {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.final-cta h2 {
		font-size: 1.6rem;
	}
}
