:root {
	--primary-01: #2D3485;
	--primary-02: #439754;
	--primary-03: #F9DA2D;
	--secondary-01: #D03832;
	--secondary-02: #216699;
	--secondary-03: #518FCC;
	--secondary-04: #7BF507;
	--secondary-05: #E1E8EC;
	--secondary-06: #FFFFFF;
	--gray-01: #0C111D;
	--gray-02: #101828;
	--gray-03: #182230;
	--gray-04: #344054;
	--gray-05: #475467;
	--gray-06: #667085;
	--gray-07: #98A2B3;
	--gray-08: #D0D5DD;
	--gray-09: #EAECF0;
	--gray-10: #F2F4F7;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: var(--gray-06);
	line-height: 1.6;
	background: var(--gray-10);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	padding: 20px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.logo img {
	height: 40px;
}

.nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav__link {
	color: var(--gray-05);
	font-size: 16px;
	font-weight: 500;
	transition: color 0.3s;
}

.nav__link:hover {
	color: var(--primary-01);
}

.btn-primary {
	color: var(--primary-01);
	border: 1px solid var(--primary-01);
	padding: 10px 24px;
	border-radius: 64px;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-primary:hover {
	background: var(--primary-01);
	color: var(--gray-10);
}

.btn-secondary {
	background: var(--primary-03);
	color: var(--gray-02);
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-secondary:hover {
	background: #f0cc1a;
}

.btn-red {
	background: var(--secondary-01);
	color: var(--secondary-06);
	border: none;
	padding: 10px 24px;
	border-radius: 64px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	width: fit-content;
	margin: 0 auto;
}

.btn-red:hover {
	background: #b82f2a;
}

.lp-hero {
	background: var(--gray-10);
	padding: 60px 0;
}

.lp-hero__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.lp-hero__content {
	display: flex;
	flex-direction: row;
	gap: 32px;
}

.lp-hero__left-col {
	width: 100%;
	max-width: 739px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.lp-hero__right-col {
	width: 100%;
	max-width: 453px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lp-hero__card {
	border-radius: 24px;
	padding: 48px;
	position: relative;
}

.lp-hero__card--blue {
	background: var(--primary-01);
	color: var(--secondary-06);
}

.lp-hero__title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px 0;
	color: var(--primary-03);
	letter-spacing: -0.5px;
}

.lp-hero__highlight {
	color: var(--primary-03);
}

.lp-hero__text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
}

.lp-hero__cta {
	display: inline-block;
	background: var(--primary-03);
	color: var(--primary-01);
	padding: 10px 24px;
	border-radius: 64px;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	transition: all 0.3s ease;
	cursor: pointer;
}

.lp-hero__cta:hover {
	background: #f0cc1a;
	transform: translateY(-1px);
}

.lp-hero__card--green {
	background: var(--primary-02);
	color: var(--secondary-06);
}

.lp-hero__subtitle {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 8px;
}

.lp-hero__price {
	color: var(--primary-03);
}

.lp-hero__small-text {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.95;
}

.lp-hero__dog-mobile {
	display: none;
}

.lp-hero__card--yellow {
	background: var(--primary-03);
	height: 548px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	overflow: hidden;
}

.lp-hero__dog-desktop {
	width: 100%;
	max-width: 420px;
	height: auto;
	object-fit: contain;
}

.lp-hero__icons-panel {
	border-radius: 24px;
	padding: 32px 24px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 16px;
}

.lp-hero__icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.lp-hero__icon-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--secondary-03);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.lp-hero__icon-circle:hover {
	transform: scale(1.05);
}

.lp-hero__icon-svg {
	width: 48px;
	height: 48px;
	filter: brightness(0) invert(1);
}

.lp-hero__icon-label {
	font-size: 12px;
	font-weight: 400;
	color: var(--gray-05);
	text-align: center;
	line-height: 1.3;
}

.benefits {
	padding: 80px 0;
}

.benefits-content {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 60px;
	align-items: center;
}

.benefits-left h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--primary-01);
	line-height: 112%;
}

.benefits-left h2 strong {
	color: var(--primary-02);
}

.benefits-left p {
	font-size: 16px;
	margin-bottom: 20px;
	color: var(--gray-05);
	line-height: 1.6;
}

.benefits-left button {
	margin-top: 12px;
}

.benefits-right {
	display: flex;
	justify-content: flex-end;
}

.badge-circular img {
	max-width: 100%;
	height: auto;
}

.lp-section-promo {
	background: var(--primary-01);
	position: relative;
	overflow: hidden;
}

.lp-section-promo__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

.lp-section-promo__content {
	display: grid;
	grid-template-columns: 0.5fr 0.5fr 0.5fr;
	align-items: center;
	min-height: 490px;
	position: relative;
}

.lp-section-promo__headline {
	padding: 80px 60px 80px 80px;
	display: flex;
	align-items: center;
	z-index: 2;
	position: relative;
}

.lp-section-promo__title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--primary-03);
	margin: 0;
	letter-spacing: -0.5px;
}

.lp-section-promo__highlight {
	color: var(--primary-03);
}

.lp-section-promo__visual {
	position: relative;
	height: 100%;
	min-height: 490px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.lp-section-promo__dog {
	position: relative;
	z-index: 2;
	max-width: 100%;
	width: 380px;
	height: auto;
	object-fit: contain;
}

.lp-section-promo__text {
	padding: 80px 80px 80px 60px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	z-index: 2;
	position: relative;
}

.lp-section-promo__paragraph {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	letter-spacing: 0.2px;
}

.lp-section-promo__variable {
	color: rgba(255, 255, 255, 0.95);
}

.lp-partners-strip {
	background: #F9DA2D;
	padding: 32px 0;
}

.lp-partners-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px 60px;
}

.lp-partners-text {
	flex-shrink: 0;
}

.lp-partners-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-01);
	margin: 0 0 4px 0;
	line-height: 1.2;
}

.lp-partners-subtitle {
	font-size: 16px;
	font-weight: 400;
	color: var(--primary-01);
	margin: 0;
	line-height: 1.4;
}

.lp-partners-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	flex: 1;
}

.lp-partners-logos img {
	max-width: 162px;
	height: 100px;
	object-fit: contain;
}

.cards-section {
	padding-bottom: 50px;
	background: var(--gray-10);
}

.cards-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr 1fr;
	gap: 32px;
	align-items: stretch;
}

.card {
	border-radius: 24px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	min-height: 400px;
}

.card-blue {
	background: var(--primary-01);
	color: var(--secondary-06);
	justify-content: center;
	padding: 64px 48px;
}

.card-blue .card-icon {
	margin-bottom: 16px;
}

.card-blue h3 {
	font-size: 36px;
	font-weight: 700;
	line-height: 112%;
	color: var(--primary-03);
}

.card-white {
	background: var(--gray-10);
	border: none;
	justify-content: space-between;
	padding: 48px 40px;
}

.card-content {
	flex: 1;
	padding: 0 50px;
}

.card-white p {
	font-size: 15px;
	margin-bottom: 20px;
	color: var(--gray-05);
	line-height: 1.7;
	text-align: center;
}

.card-white p:last-child {
	margin-bottom: 0;
}

.card-white button {
	margin-top: 32px;
	align-self: center;
}

.card-green {
	background: var(--primary-02);
	align-items: center;
	justify-content: center;
	gap: 48px;
	padding: 64px 48px;
}

.card-logos {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 56px;
	width: 100%;
}

.logo-apae {
	max-width: 208.005px;
	height: 193.815px;
}

.logo-pernambuco {
	max-width: 164px;
	height: 201px;
}

.faq-section {
	padding: 80px 0;
	background: var(--gray-10);
}

.faq-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 48px;
	color: var(--primary-01);
	line-height: 1.3;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-item {
	background: var(--secondary-06);
	border-radius: 16px;
	overflow: hidden;
	border: none;
}

.faq-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	font-size: 17px;
	font-weight: 600;
	color: var(--primary-01);
	text-align: left;
	transition: background 0.2s;
}

.faq-question span:first-child {
	flex: 1;
}

.faq-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: 2px solid var(--primary-01);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 400;
	color: var(--primary-01);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

.faq-answer p {
	padding: 0 28px 24px 28px;
	font-size: 15px;
	color: var(--gray-05);
	line-height: 1.6;
}

.localidade {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin: 0 auto;
	padding: 50px 20px;
}

.localidade__container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.localidade__container h1 {
	font-size: 15px;
	text-align: right;
}

.localidade__content {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	font-size: 12px;
}

.localidade__link {
	color: #74C107;
}

.localidade__link:hover {
	text-decoration: underline;
}

.footer {
	background: var(--secondary-06);
	padding: 60px 0 0 0;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.3fr 1.3fr 1fr 0.9fr;
	gap: 48px;
	padding-bottom: 48px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.footer-logo {
	height: 48px;
	width: auto;
}

.footer-tagline-box {
	border-left: 3px solid var(--primary-01);
	padding-left: 12px;
}

.tagline-text {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--primary-01);
}

.footer-description {
	font-size: 13px;
	line-height: 1.6;
	color: var(--gray-05);
	margin: 0;
}

.footer-contact-section h4,
.footer-aplicap-section h4,
.footer-results-section h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-01);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.contact-icon {
	min-width: 24px;
	min-height: 24px;
}

.contact-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.contact-text span {
	font-size: 13px;
	color: var(--gray-05);
	line-height: 1.4;
}

.contact-subtext {
	font-size: 12px;
}

.footer-aplicap-section p,
.footer-results-section p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--gray-05);
	margin-bottom: 12px;
}

.footer-hours {
	font-size: 13px;
	line-height: 1.6;
	color: var(--gray-05);
}

.result-phone {
	font-size: 14px;
	font-weight: 600;
	color: var(--gray-02);
}

.footer-middle {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 48px;
	padding: 32px 0;
}

.footer-social h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-01);
	margin-bottom: 16px;
}

.social-icons {
	display: flex;
	gap: 12px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--secondary-03);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

.social-icon:hover {
	background: var(--primary-01);
}

.social-icon img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.social-icon svg {
	fill: white;
	width: 18px;
	height: 18px;
}

.footer-partners {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.footer-partners img {
	height: 48px;
	width: auto;
}

.footer-apps {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}

.footer-apps img {
	height: 40px;
	width: auto;
}

.footer-bottom {
	padding: 32px 0;
	border-top: 1px solid var(--gray-09);
}

.footer-disclaimer {
	margin-bottom: 24px;
}

.footer-disclaimer p {
	font-size: 10px;
	line-height: 1.7;
	text-align: center;
	max-width: 1100px;
	margin: 0 auto;
}

.footer-copyright {
	text-align: center;
}

.footer-copyright p {
	font-size: 12px;
	margin: 0;
}

@media (max-width: 1024px) {
	.lp-hero__content {
		flex-direction: column;
		gap: 20px;
	}

	.lp-hero__left-col,
	.lp-hero__right-col {
		margin: 0 auto;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.footer-middle {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}

	.contact-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 8px;
	}

	.social-icons {
		justify-content: center;
	}

	.footer-logo-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.footer-social {
		order: 1;
	}

	.footer-social h4 {
		text-align: center;
	}

	.footer-apps {
		order: 2;
		justify-content: center;
		flex-direction: row;
	}

	.footer-partners {
		order: 3;
		justify-content: center;
		flex-wrap: wrap;
		gap: 32px;
	}

	.lp-section-promo__content {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.lp-section-promo__headline {
		padding: 48px 24px 32px 24px;
		text-align: center;
		justify-content: center;
	}

	.lp-section-promo__title br {
		display: none;
	}

	.lp-section-promo__text {
		padding: 0 24px 40px 24px;
		text-align: center;
		gap: 20px;
	}

	.lp-section-promo__paragraph {
		font-size: 15px;
		line-height: 1.65;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}

	.lp-section-promo__title {
		font-size: 32px;
		line-height: 1.25;
		text-align: center;
	}

	.benefits-right {
		justify-content: center;
	}

	.nav {
		display: none;
	}

	.nav__link {
		font-size: 14px;
	}

	.btn-primary {
		width: 100%;
	}

	.lp-hero {
		padding: 40px 0;
	}

	.lp-hero__container {
		padding: 0 20px;
	}

	.lp-hero__left-col {
		gap: 20px;
	}

	.lp-hero__right-col {
		gap: 20px;
		margin: 0 auto;
	}

	.lp-hero__card {
		padding: 32px 24px;
		border-radius: 24px;
	}

	.lp-hero__card--blue {
		text-align: center;
	}

	.lp-hero__title {
		font-size: 32px;
		line-height: 1.25;
		margin-bottom: 16px;
	}

	.lp-hero__text {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 24px;
	}

	.lp-hero__cta {
		display: block;
		width: fit-content;
		margin: 0 auto;
		text-align: center;
	}

	.lp-hero__card--green {
		text-align: center;
		min-height: auto;
		padding-bottom: 0;
		overflow: visible;
	}

	.lp-hero__subtitle {
		font-size: 28px;
		line-height: 1.3;
		margin-bottom: 16px;
	}

	.lp-hero__small-text {
		font-size: 13px;
		line-height: 1.6;
		margin-top: 12px;
	}

	.lp-hero__dog-mobile {
		display: flex;
		justify-content: center;
	}

	.lp-hero__dog-img {
		width: 100%;
		max-width: 280px;
		height: auto;
	}

	.lp-hero__card--yellow {
		display: none;
	}

	.lp-hero__icons-panel {
		flex-direction: column;
		padding: 32px 24px;
		gap: 28px;
		border-radius: 20px;
	}

	.lp-hero__icon-item {
		justify-content: center;
		gap: 16px;
		width: 100%;
	}

	.lp-hero__icon-svg {
		width: 32px;
		height: 32px;
	}

	.lp-hero__icon-label {
		font-size: 14px;
		text-align: left;
		flex: 1;
		display: flex;
		align-items: center;
	}

	.benefits {
		padding: 60px 0;
	}

	.benefits-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.benefits-left h2 {
		font-size: 24px;
	}

	.lp-partners-strip {
		padding: 40px 0;
	}

	.lp-partners-container {
		flex-direction: column;
		gap: 32px;
		padding: 0 20px;
		text-align: center;
	}

	.lp-partners-text {
		width: 100%;
	}

	.lp-partners-title {
		font-size: 20px;
		margin-bottom: 6px;
	}

	.lp-partners-subtitle {
		font-size: 14px;
	}

	.lp-partners-logos {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 32px;
		justify-content: center;
		align-items: center;
	}

	.lp-partners-logos img {
		max-width: 100%;
		margin: 0 auto;
	}

	.cards-section {
		padding: 60px 0;
	}

	.card {
		border-radius: 24px;
		min-height: auto;
	}

	.card-blue {
		padding: 40px 32px;
		min-height: 200px;
	}

	.card-blue .card-icon img {
		width: 56px;
	}

	.card-blue h3 {
		font-size: 24px;
		line-height: 1.3;
	}

	.card-white {
		padding: 40px 32px;
		min-height: auto;
	}

	.card-white p {
		font-size: 14px;
		line-height: 1.7;
		text-align: center;
	}

	.card-white button {
		margin-top: 28px;
	}

	.card-green {
		padding: 56px 32px;
		min-height: 400px;
		gap: 48px;
	}

	.card-logos {
		gap: 48px;
	}

	.logo-apae {
		width: 160px;
	}

	.logo-pernambuco {
		width: 140px;
	}

	.faq-section {
		padding: 60px 0;
	}

	.faq-title {
		font-size: 24px;
		line-height: 1.4;
		margin-bottom: 40px;
	}

	.faq-list {
		gap: 16px;
	}

	.faq-item {
		border-radius: 20px;
	}

	.faq-question {
		padding: 20px 20px;
		font-size: 16px;
		gap: 16px;
		align-items: flex-start;
	}

	.faq-icon {
		margin-top: 2px;
	}

	.faq-answer p {
		padding: 0 20px 20px 20px;
		font-size: 14px;
	}

	.localidade {
		flex-direction: column;
	}

	.localidade__container {
		align-items: center;
	}
	
	.localidade__container h1 {
		text-align: center;
	}

	.footer {
		padding: 48px 0 0 0;
	}

	.footer-brand {
		align-items: center;
	}

	.footer-logo {
		height: 56px;
	}

	.footer-tagline-box {
		border-left: none;
		border-top: 3px solid var(--primary-01);
		padding-left: 0;
		padding-top: 8px;
	}

	.footer-description {
		text-align: center;
	}

	.footer-contact-section,
	.footer-aplicap-section,
	.footer-results-section {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.contact-text {
		align-items: center;
		text-align: center;
	}

	.footer-aplicap-section p,
	.footer-results-section p {
		text-align: center;
	}

	.footer-partners img {
		height: 40px;
	}

	.footer-disclaimer p {
		font-size: 10px;
		line-height: 1.7;
	}
}