body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #333;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Estilos do cabeēalho de navegaēao */
.nav-header {
	background-color: #ffffff;
	padding: 15px 0;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	color: #000000;
}
.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}
.logo {
	color: rgb(253, 150, 24);
	font-size: 1.8em;
	font-weight: bold;
	text-decoration: none;
}
.logo:hover {
	color: #e29c18;
	transition: color 0.3s ease;
}
.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-menu li {
	margin-left: 30px;
}
.nav-menu a {
	color: rgb(10, 90, 249);
	text-decoration: none;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.nav-menu a:hover {
	background-color: #bcf8ff;
	color: rgb(9, 9, 9);
}

.header {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	color: #1f2937;
	text-align: center;
	padding: 80px 20px;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}

.header-text {
	flex: 1;
	text-align: left;
}

.header-image {
	flex: 0 0 auto;
}

.business-person {
	width: 300px;
	height: 300px;
	border-radius: 15px;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.business-person:hover {
	transform: scale(1.05);
}

.header h1 {
	margin: 0;
	font-size: 3em;
	margin-bottom: 20px;
}
.header p {
	font-size: 1.4em;
	margin-bottom: 30px;
	opacity: 0.9;
}
.section {
	padding: 60px 20px;
	text-align: center;
}
.section h2 {
	color: #1f2937;
	font-size: 2.5em;
	margin-bottom: 30px;
}
.section p {
	font-size: 1.2em;
	max-width: 800px;
	margin: 0 auto 40px auto;
	color: #666;
}
.section.pt-20 {
	padding-top: 20px !important;
}
.cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}
.card {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
	width: 380px;
	padding: 40px 30px;
	text-align: center;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
}
.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.2);
}
.card h3 {
	color: #1f2937;
	font-size: 1.8em;
	margin-bottom: 20px;
}
.card p {
	font-size: 1.1em;
	color: #666;
	margin-bottom: 25px;
}
.price {
	font-size: 2.5em;
	font-weight: bold;
	color: #059669;
	margin: 20px 0;
}
.validity {
	color: #666;
	font-size: 1em;
	margin-bottom: 25px;
}
.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
	color: white;
	padding: 18px 36px;
	text-decoration: none;
	border-radius: 12px;
	font-size: 1.2em;
	margin-top: 20px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.2);
}
.cta-button:hover {
	background: linear-gradient(135deg, #047857 0%, #065f46 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 15px -3px rgba(5, 150, 105, 0.3);
}

/* Estilos para a seĆ§Ć£o de ajuda */
.help {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	padding: 40px 20px;
}

.help-content {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.help-video {
	flex: 0 0 400px;
}

.help-video iframe {
	width: 100%;
	height: 225px;
	border-radius: 12px;
	box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-video iframe:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px -5px rgba(0, 0, 0, 0.2);
}

.help-text {
	flex: 1;
	text-align: left;
}

.help-text h3 {
	color: #1f2937;
	font-size: 1.5em;
	margin-bottom: 15px;
	font-weight: 600;
}

.help-text p {
	color: #4b5563;
	font-size: 1.1em;
	margin-bottom: 15px;
	line-height: 1.5;
}

.help-text ul {
	color: #4b5563;
	font-size: 1em;
	margin-bottom: 20px;
	padding-left: 18px;
}

.help-text li {
	margin-bottom: 6px;
	line-height: 1.4;
}

.cta-button.secondary {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
	font-size: 1em;
	padding: 12px 24px;
}

.cta-button.secondary:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	box-shadow: 0 8px 15px -3px rgba(59, 130, 246, 0.3);
}

.benefits {
	background: #f8fafc;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}
.benefit-item {
	background: white;
	padding: 30px;
	border-radius: 16px;
	text-align: left;
	box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
}
.benefit-item h4 {
	color: #1f2937;
	font-size: 1.4em;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
.benefit-item h4 .material-symbols-outlined {
	color: #059669;
	margin-right: 15px;
	font-size: 2em;
}
.benefit-item p {
	color: #666;
	margin: 0;
	text-align: left;
}

.features {
	background: white;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	max-width: 1000px;
	margin: 0 auto;
}
.feature-item {
	text-align: center;
	padding: 20px;
}
.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	color: white;
	font-size: 2em;
	font-weight: bold;
}
.feature-item h4 {
	color: #1f2937;
	font-size: 1.3em;
	margin-bottom: 15px;
}
.feature-item p {
	color: #666;
	font-size: 1em;
	margin: 0;
}

.testimonials {
	background: #f1f5f9;
}
.testimonial {
	background: white;
	padding: 40px;
	border-radius: 20px;
	max-width: 800px;
	margin: 0 auto;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
	position: relative;
}
.testimonial::before {
	content: '"';
	font-size: 4em;
	color: #059669;
	position: absolute;
	top: -20px;
	left: 30px;
	font-family: serif;
}
.testimonial p {
	font-size: 1.3em;
	font-style: italic;
	color: #333;
	margin-bottom: 20px;
}
.testimonial-author {
	font-weight: bold;
	color: #1f2937;
	font-size: 1.1em;
}

.faq {
	background: white;
}
.faq-item {
	background: #ffffff;
	border-radius: 12px;
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}
.faq-question {
	background: #f8fafc;
	padding: 25px;
	cursor: pointer;
	font-weight: 600;
	color: #1f2937;
	font-size: 1.6em;
	border-bottom: 1px solid #e2e8f0;
	transition: background-color 0.3s ease;
}
.faq-question:hover {
	background: #f1f5f9;
}
.faq-answer {
	padding: 25px;
	color: #666;
	line-height: 1.7;
	font-size: 1.3em;
}

.cta-section {
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	color: white;
	text-align: center;
	padding: 80px 20px;
}
.cta-section h2 {
	color: white;
	font-size: 2.5em;
	margin-bottom: 20px;
}
.cta-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.3em;
	margin-bottom: 40px;
}

.footer {
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	color: white;
	text-align: center;
	padding: 40px;
	margin-top: 0;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
}
.footer-section h4 {
	color: #10b981;
	margin-bottom: 20px;
	font-size: 1.2em;
}
.footer-section p, .footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin-bottom: 10px;
	display: block;
}
.footer-section a:hover {
	color: #10b981;
}
.footer-bottom {
	border-top: 1px solid #374151;
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
}

/* Responsividade para o menu */
@media (max-width: 768px) {
	.nav-container {
			flex-direction: column;
			gap: 15px;
	}
	.nav-menu {
			gap: 15px;
	}
	.nav-menu li {
			margin-left: 0;
	}
	.header h1 {
			font-size: 2.2em;
	}
	.header p {
			font-size: 1.2em;
	}
	.card {
			width: 100%;
			margin: 0 20px;
	}
	.section h2 {
			font-size: 2em;
	}
	.benefits-grid, .features-grid {
			grid-template-columns: 1fr;
	}
	
	/* Responsividade para a seĆ§Ć£o de ajuda */
	.help {
		padding: 30px 20px;
	}
	
	.help-content {
		flex-direction: column;
		gap: 25px;
		text-align: center;
	}
	
	.help-video {
		flex: none;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.help-video iframe {
		height: 200px;
	}
	
	.help-text {
		text-align: center;
	}
	
	.help-text h3 {
		font-size: 1.4em;
	}
	
	.help-text p {
		font-size: 1em;
	}
	
	.help-text ul {
		font-size: 0.95em;
	}
}

.img-orientacoes {
	max-width: 60%;
	display: block;
	margin: 0 auto;
	border: 1px solid #cccccc;
	border-radius: 10px;
}

/* Estilos para a pļæ½gina de contato */
.contact-section {
	text-align: center;
	padding: 20px 0;
}

.contact-title {
	color: #1f2937;
	font-size: 2.5em;
	margin-bottom: 20px;
	font-weight: bold;
}

.contact-card {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 0 auto;
	border: 1px solid #e2e8f0;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.contact-content {
	padding: 20px;
}

.contact-subtitle {
	color: #1f2937;
	font-size: 1.8em;
	margin-bottom: 10px;
	font-weight: 600;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.contact-info {
	text-align: left;
}

.contact-label {
	color: #1f2937;
	font-size: 1.3em;
	margin-bottom: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-icon {
	font-size: 1.2em;
}

.contact-text {
	color: #666;
	font-size: 1.2em;
	margin-bottom: 25px;
	line-height: 1.6;
}

/* Responsividade para contato */
@media (max-width: 768px) {
	.contact-title {
		font-size: 2em;
	}
	
	.contact-content {
		padding: 30px 20px;
	}
	
	.contact-subtitle {
		font-size: 1.5em;
	}
	
	.contact-label {
		font-size: 1.1em;
	}
	
	.contact-text {
		font-size: 1.1em;
	}
}

/* Estilos responsivos */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}
	
	.header-text {
		text-align: center;
	}
	
	.business-person {
		width: 250px;
		height: 250px;
	}
	
	.header h1 {
		font-size: 2.5em;
	}
	
	.header p {
		font-size: 1.2em;
	}
}

@media (max-width: 480px) {
	.header {
		padding: 60px 20px;
	}
	
	.business-person {
		width: 200px;
		height: 200px;
	}
	
	.header h1 {
		font-size: 2em;
	}
	
	.header p {
		font-size: 1.1em;
	}
}

/* Estilos para a pĆ”gina de orientaĆ§Ćµes */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    margin-bottom: 30px;
}

.content-wrapper h1 {
    color: #1f2937;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e5e7eb;
    position: relative;
}

.content-wrapper h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 2px;
}

.step {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.step h2 {
    color: #059669;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step h2::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.step p {
    color: #4b5563;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.step p:last-of-type {
    margin-bottom: 25px;
}

.important {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.important::before {
    content: 'ā ļø';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #f59e0b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

.important strong {
    color: #92400e;
    font-weight: 600;
}

.important p {
    color: #92400e;
    margin: 10px 0 0 0;
    font-weight: 500;
}

.img-orientacoes {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    display: block;
    border: none;
    transition: transform 0.3s ease;
}

.img-orientacoes:hover {
    transform: scale(1.02);
}

.contact {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid #bae6fd;
}

.contact h3 {
    color: #0369a1;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact p {
    color: #0c4a6e;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2em;
    display: inline-block;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsividade para orientaĆ§Ćµes */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px 15px;
        margin: 20px 15px;
        border-radius: 16px;
    }
    
    .content-wrapper h1 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .step {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .step h2 {
        font-size: 1.4em;
    }
    
    .step p {
        font-size: 1em;
    }
    
    .contact {
        padding: 25px 20px;
    }
    
    .contact h3 {
        font-size: 1.6em;
    }
    
    .whatsapp {
        font-size: 1.1em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 25px 15px;
        margin: 15px 10px;
    }
    
    .content-wrapper h1 {
        font-size: 1.6em;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .step h2 {
        font-size: 1.3em;
    }
    
    .important {
        padding: 15px;
    }
}