:root {
    --primary: #d4af37;
    --secondary: #0a0a2a;
    --accent: #8b0000;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI','Custom Font', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f1 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;

}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-right: 10px;
}

.logo-icon img {
    background: white;
    padding: 5px;
    width: 250px; 
    height: 150px;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    color: white;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    font-weight: bold;
}

.logo p {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: -5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 10, 42, 0.85), rgba(26, 26, 46, 0.9)), url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s;
    border: 2px solid var(--primary);
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    margin-left: 20px;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary);
}

.hero-buttons {
    margin-top: 30px;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.2rem;
}

/* Packages Section */
.packages {
	background: white;
	position: relative;
	overflow: hidden;
}

.packages::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
}

.package-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.4s, box-shadow 0.4s;
	position: relative;
	border: 1px solid #eee;
}

.package-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-header {
	background: var(--secondary);
	color: white;
	padding: 25px;
	text-align: center;
	position: relative;
}

.popular-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background: var(--accent);
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: bold;
	font-size: 0.9rem;
	box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3);
}

.package-header h3 {
	font-size: 1.8rem;
	margin-bottom: 10px;
}

.package-price {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary);
	margin: 15px 0;
}

.package-price span {
	font-size: 1.2rem;
	font-weight: normal;
	color: #ccc;
}

.package-body {
	padding: 30px;
}

.package-features {
	list-style: none;
	margin-bottom: 30px;
}

.package-features li {
	padding: 12px 0;
	border-bottom: 1px dashed #eee;
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}

.package-features li:last-child {
	border-bottom: none;
}

.package-features li i {
	color: var(--primary);
	margin-right: 15px;
	font-size: 1.2rem;
	min-width: 25px;
	text-align: center;
}

.package-button {
	text-align: center;
}

.package-button .btn {
	width: 100%;
	padding: 14px;
	font-size: 1.1rem;
	letter-spacing: 1px;
}

/* How It Works */
.steps {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	text-align: center;
}

.step-card {
	background: white;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	position: relative;
	transition: transform 0.3s;
}

.step-card:hover {
	transform: translateY(-10px);
}

.step-number {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: var(--secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.5rem;
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.step-icon {
	font-size: 3.5rem;
	color: var(--secondary);
	margin-bottom: 20px;
}

.step-card h3 {
	margin: 15px 0;
	color: var(--secondary);
	font-size: 1.6rem;
}

.step-card p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Testimonials */
.testimonials {
	background: white;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.testimonial-card {
	background: white;
	padding: 40px 35px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	position: relative;
	border: 1px solid #eee;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 25px;
	font-size: 6rem;
	color: rgba(212, 175, 55, 0.1);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-text {
	margin-bottom: 30px;
	font-style: italic;
	color: #555;
	position: relative;
	z-index: 1;
	font-size: 1.1rem;
	line-height: 1.8;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary);
	background: linear-gradient(135deg, #f8f0e3 0%, #f5e7d3 100%);
}

.author-info {
	margin-left: 20px;
}

.author-info h4 {
	color: var(--secondary);
	font-size: 1.3rem;
	margin-bottom: 5px;
}

.author-info p {
	color: #777;
	font-size: 1rem;
}

.rating {
	color: var(--primary);
	margin-top: 8px;
	font-size: 1.1rem;
}

/* Contact Section */
.contact {
	background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 15px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 60px;
}

.contact-info h3 {
	font-size: 2rem;
	margin-bottom: 30px;
	color: var(--primary);
	position: relative;
	display: inline-block;
}

.contact-info h3::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--primary);
}

.contact-details {
	margin-bottom: 40px;
}

.contact-item {
	display: flex;
	margin-bottom: 25px;
	align-items: flex-start;
}

.contact-item i {
	color: var(--primary);
	font-size: 1.4rem;
	min-width: 40px;
	margin-top: 5px;
}

.contact-item-content {
	line-height: 1.7;
}

.contact-item-content h4 {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.social-links {
	display: flex;
	margin-top: 30px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.3s;
	color: white;
	text-decoration: none;
	font-size: 1.3rem;
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-5px);
}

.contact-form .form-group {
	margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 16px 20px;
	border: none;
	border-radius: 8px;
	background: rgba(255,255,255,0.12);
	color: white;
	transition: all 0.3s;
	font-size: 1.1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: none;
	background: rgba(255,255,255,0.2);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.contact-form textarea {
	min-height: 180px;
	resize: vertical;
}

::placeholder {
	color: rgba(255,255,255,0.7);
}

.form-submit {
	text-align: center;
}

/* Footer */
footer {
	background: #0a0a1a;
	color: #aaa;
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-col h4 {
	color: white;
	margin-bottom: 25px;
	font-size: 1.4rem;
	position: relative;
	padding-bottom: 15px;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--primary);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.footer-links li i {
	color: var(--primary);
	margin-right: 10px;
	margin-top: 5px;
}

.footer-links a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 1.1rem;
}

.footer-links a:hover {
	color: var(--primary);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #222;
	font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

.animate {
	animation: fadeIn 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
	.hero h2 {
		font-size: 3rem;
	}
	
	.hero p {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.mobile-menu {
		display: block;
	}
	
	nav {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 80%;
		height: calc(100vh - 70px);
		background: var(--secondary);
		transition: all 0.4s;
		padding: 30px;
	}
	
	nav.active {
		left: 0;
	}
	
	nav ul {
		flex-direction: column;
	}
	
	nav ul li {
		margin: 20px 0;
	}
	
	.hero {
		height: auto;
		padding: 120px 0;
	}
	
	.hero-buttons {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	
	.btn {
		margin: 0 !important;
		width: 100%;
	}
	
	section {
		padding: 4rem 0;
	}
	
	.section-title h2 {
		font-size: 2.3rem;
	}
}

@media (max-width: 480px) {
	.hero h2 {
		font-size: 2.3rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
	
	.package-header h3 {
		font-size: 1.6rem;
	}
	
	.package-price {
		font-size: 2rem;
	}
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeIn 1s ease forwards;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.qrcode-container {
    width: 100%;
    max-width: 220px; /* Ajuste conforme necessário */
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 20px auto;
}

.qrcode-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .qrcode-container {
        max-width: 180px;
        padding: 10px;
    }
}

/* Estilo para o formulário */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group.col-md-6,
.form-group.col-md-8,
.form-group.col-md-4 {
    padding: 0 15px;
    flex: 0 0 50%;
    max-width: 50%;
}

.form-group.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.form-group.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* Estilo para o resumo de pagamento */
#paymentSummary {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.summary-details {
    background: rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary-details p {
    margin: 8px 0;
    font-size: 1.1rem;
}

.payment-instructions {
    margin-top: 20px;
    font-size: 0.95rem;
}

.payment-instructions ol {
    padding-left: 20px;
    margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .form-group.col-md-6,
    .form-group.col-md-8,
    .form-group.col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #paymentSummary {
        padding: 15px;
    }
}