/* Reset e estilos globais */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #0c6641;
	--secondary-color: #f7921e;
	--text-color: #333;
	--light-gray: #f8f9fa;
	--white: #ffffff;
	--dark: #0d1c2f;
}

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.8;
	color: var(--text-color);
	font-size: 1.3rem;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Header e Navegação - Novo Design */
.header {
	background: var(--white);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 2rem;
	min-height: 80px;
}

.logo-area {
	display: flex;
	align-items: center;
}

.logo-img {
	width: 180px;
	height: auto;
	object-fit: contain;
	display: block;
}

.main-nav {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.nav-link {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s;
	padding: 0.5rem 0;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: var(--primary-color);
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link.nav-cta {
	background: var(--primary-color);
	color: var(--white);
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	margin-left: 1rem;
	box-shadow: 0 4px 15px rgba(12, 102, 65, 0.3);
}

.nav-link.nav-cta:hover {
	background: var(--secondary-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(12, 102, 65, 0.4);
}

.nav-link.nav-cta::after {
	display: none;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
	padding: 8px;
	border-radius: 8px;
	transition: all 0.3s;
}

.menu-toggle:hover {
	background: rgba(12, 102, 65, 0.1);
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	transition: all 0.3s;
	border-radius: 3px;
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Hero Section - Novo Design */
.hero {
	background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(248, 249, 250, 0.8) 0%,
		rgba(12, 102, 65, 0.1) 30%,
		rgba(247, 146, 30, 0.15) 70%,
		rgba(12, 102, 65, 0.2) 100%
	);
	z-index: 1;
}

.hero-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(12, 102, 65, 0.1);
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 500;
	width: fit-content;
	border: 1px solid rgba(12, 102, 65, 0.2);
}

.badge-icon {
	font-size: 1.2rem;
}

.hero-title {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	line-height: 1.1;
}

.title-highlight {
	color: var(--secondary-color);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.title-main {
	color: var(--primary-color);
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0.5rem 0;
}

.title-subtitle {
	color: var(--text-color);
	font-size: 1.8rem;
	font-weight: 400;
}

.hero-description {
	font-size: 1.2rem;
	line-height: 1.7;
	color: var(--text-color);
	max-width: 90%;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin: 1rem 0;
}

.stat-item {
	text-align: center;
	padding: 1rem;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--primary-color);
	min-width: 100px;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
}

.stat-label {
	font-size: 1rem;
	color: var(--text-color);
	margin-top: 0.5rem;
	display: block;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.hero-btn.primary {
	background: var(--primary-color);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(12, 102, 65, 0.3);
}

.hero-btn.primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(12, 102, 65, 0.4);
}

.hero-btn.secondary {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.hero-btn.secondary:hover {
	background: var(--primary-color);
	color: var(--white);
}

.hero-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.hero-image-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.hero-decoration {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 80px;
	height: 80px;
	background: linear-gradient(
		45deg,
		var(--primary-color),
		var(--secondary-color)
	);
	border-radius: 50%;
	opacity: 0.9;
	z-index: 1;
}

.hero-decoration::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: var(--white);
	border-radius: 50%;
}

.hero-features {
	display: flex;
	justify-content: space-around;
	background: var(--white);
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
}

.feature-icon {
	font-size: 2rem;
	background: linear-gradient(
		45deg,
		var(--primary-color),
		var(--secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-text {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-color);
}

/* Botões */
.btn {
	padding: 1rem 2.2rem;
	border-radius: 5px;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.btn.primary {
	background: var(--primary-color);
	color: var(--white);
}

.btn.primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

.btn-content {
	transition: all 0.3s;
}

.btn-arrow {
	transition: all 0.3s;
	font-size: 1.2rem;
}

.btn:hover .btn-arrow {
	transform: translateX(5px);
}

/* Seção Sobre */
.sobre-section {
	padding: 100px 0;
	background: var(--white);
}

.sobre-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.sobre-subtitle {
	color: var(--secondary-color);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
}

.sobre-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.sobre-desc {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.sobre-beneficios {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.beneficio-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--light-gray);
	border-radius: 10px;
	border-left: 4px solid var(--primary-color);
}

.beneficio-icon {
	font-size: 1.5rem;
	min-width: 30px;
}

.beneficio-item p {
	font-weight: 500;
	color: var(--text-color);
}

.sobre-image img {
	width: 80%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Seção Tipos */
.tipos-section {
	padding: 100px 0;
	background: var(--light-gray);
}

.tipos-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
}

.tipos-subtitle {
	color: var(--secondary-color);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
}

.tipos-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 3rem;
	line-height: 1.2;
}

.tipos-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	text-align: left;
}

.tipos-category {
	background: var(--white);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-top: 4px solid var(--primary-color);
}

.tipos-category h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.tipos-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.tipos-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	font-size: 1.3rem;
	line-height: 1.6;
}

.tipos-check {
	color: var(--primary-color);
	font-weight: 700;
	min-width: 15px;
	margin-top: 2px;
}

/* Seção Porque */
.porque-section {
	padding: 100px 0;
	background: var(--white);
}

.porque-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
}

.porque-subtitle {
	color: var(--secondary-color);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
}

.porque-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 3rem;
	line-height: 1.2;
}

.porque-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.porque-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.porque-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(12, 102, 65, 0.2);
}

.porque-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.porque-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.porque-card p {
	color: var(--text-color);
	line-height: 1.6;
}

/* Seção FAQ */
.faq-section {
	padding: 100px 0;
	background: var(--light-gray);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.faq-subtitle {
	color: var(--secondary-color);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
	text-align: center;
}

.faq-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 3rem;
	line-height: 1.2;
	text-align: center;
}

.faq-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s;
}

.faq-question:hover {
	background: var(--light-gray);
}

.faq-arrow {
	font-size: 1.5rem;
	font-weight: 300;
	transition: all 0.3s;
}

.faq-item.active .faq-arrow {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
	color: var(--text-color);
	line-height: 1.6;
}

/* Seção Contato */
.contato-section {
	padding: 100px 0;
	background: var(--white);
}

.contato-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contato-info h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.contato-info p {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.contato-detalhes {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contato-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--light-gray);
	border-radius: 10px;
	border-left: 4px solid var(--primary-color);
}

.contato-icon {
	font-size: 1.5rem;
	min-width: 30px;
}

.contato-item h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.2rem;
}

.contato-item p {
	font-size: 1.3rem;
	color: var(--text-color);
	margin: 0;
}

.contato-form {
	background: var(--light-gray);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pipedriveWebForms {
	width: 100%;
}

/* Footer */
.footer {
	background: var(--primary-color);
	color: var(--white);
	padding: 2rem 0;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-content p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.footer-favicon {
	width: 20px;
	height: 20px;
}

.footer-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

/* Responsividade */
@media (max-width: 1068px) {
	.hero::before {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: var(--white);
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 2rem;
		border-radius: 0;
		transition: right 0.3s ease;
		z-index: 1000;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	}

	.main-nav.active {
		right: 0;
	}

	.nav-menu {
		flex-direction: column;
		gap: 1rem;
		margin: 2rem 0;
		width: 100%;
	}

	.nav-menu li {
		width: 100%;
	}

	.nav-link {
		display: block;
		padding: 1rem;
		border-bottom: 1px solid rgba(12, 102, 65, 0.1);
		font-size: 1.1rem;
	}

	.nav-link.nav-cta {
		margin-left: 0;
		text-align: center;
	}

	.menu-toggle.active .hamburger-line:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle.active .hamburger-line:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active .hamburger-line:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-stats {
		gap: 1rem;
	}

	.stat-item {
		min-width: 80px;
		padding: 0.8rem;
	}

	.hero-actions {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-btn {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.title-main {
		font-size: 2.5rem;
	}

	.title-highlight {
		font-size: 1.2rem;
	}

	.title-subtitle {
		font-size: 1.4rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-features {
		flex-direction: column;
		gap: 1rem;
	}

	.sobre-container,
	.contato-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tipos-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.sobre-title,
	.tipos-title,
	.porque-title,
	.faq-title,
	.contato-info h2 {
		font-size: 2rem;
	}

	.hero {
		padding: 100px 0 60px;
	}

	body {
		font-size: 1rem;
	}

	.btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}

	.sobre-section,
	.tipos-section,
	.porque-section,
	.faq-section,
	.contato-section {
		padding: 60px 0;
	}

	.header-container {
		padding: 1rem;
	}

	.logo-img {
		width: 160px;
	}
}

@media (max-width: 480px) {
	.title-main {
		font-size: 2rem;
	}

	.title-highlight {
		font-size: 1rem;
	}

	.title-subtitle {
		font-size: 1.2rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.sobre-title,
	.tipos-title,
	.porque-title,
	.faq-title,
	.contato-info h2 {
		font-size: 1.8rem;
	}

	.hero-container,
	.sobre-container,
	.tipos-container,
	.porque-container,
	.faq-container,
	.contato-container {
		padding: 0 1rem;
	}

	.hero-btn {
		padding: 0.7rem 1.2rem;
		font-size: 0.9rem;
	}

	.tipos-category,
	.porque-card,
	.contato-form {
		padding: 1.5rem;
	}

	.logo-img {
		width: 140px;
	}

	.stat-number {
		font-size: 1.5rem;
	}

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

	.hero-image {
		height: 300px;
	}

	.hero-decoration {
		width: 60px;
		height: 60px;
	}

	.hero-decoration::before {
		width: 30px;
		height: 30px;
	}
}

/* Animações */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sobre-section,
.tipos-section,
.porque-section,
.faq-section,
.contato-section {
	animation: fadeInUp 0.6s ease;
}

/* Scroll suave */
html {
	scroll-behavior: smooth;
}

/* Foco para acessibilidade */
a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* Hover states adicionais */
.tipos-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.beneficio-item:hover,
.contato-item:hover {
	transform: translateX(5px);
}

/* Transições suaves */
* {
	transition: all 0.3s ease;
}

/* Otimizações para performance */
.hero-image {
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

/* Prevenção de flash de conteúdo */
.hero-content {
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Remover barra verde decorativa */
body::before,
body::after,
html::before,
html::after {
	display: none !important;
}

/* Remover qualquer elemento verde decorativo */
*[style*="background: var(--primary-color)"],
*[style*="background-color: var(--primary-color)"],
*[style*="background: #0c6641"],
*[style*="background-color: #0c6641"] {
	display: none !important;
}

/* Melhorias de Acessibilidade */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Melhor contraste para links */
.nav-link:focus,
.hero-btn:focus,
.faq-question:focus {
	outline: 3px solid var(--primary-color);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Skip link removido */

/* Melhor contraste para texto */
body {
	color: #2c2c2c;
}

/* Tamanho mínimo para elementos clicáveis */
.nav-link,
.hero-btn,
.faq-question {
	min-height: 44px;
	min-width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Melhor espaçamento para leitura */
p, li {
	line-height: 1.8;
}

/* Indicadores visuais para interações */
.nav-link:hover,
.hero-btn:hover,
.faq-question:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Melhor contraste para elementos importantes */
.stat-number,
.title-main,
.sobre-title,
.tipos-title,
.porque-title,
.faq-title {
	color: #0a4d2f;
}

/* Melhor visibilidade para checkmarks */
.tipos-check {
	font-size: 1.2rem;
	color: #0a4d2f;
}
