/* =====================================================
   IMPORTS
   ===================================================== */

@import url('./base.css');

@keyframes lineFlow {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 8px 0;
	}
}

@keyframes arrowBounce {

	0%,
	100% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(2px);
	}
}

/* =====================================================
   ROOT VARIABLES
   ===================================================== */

/* =====================================================
   BREAKPOINTS - Arquitectura de Responsive Design
   ===================================================== */



/* ---------- banner ---------- */
.avance-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 0 var(--gutter);
	height: 45px;
	background-color: #466060;
	box-sizing: border-box;
}

.avance-banner__label {
	color: #99A1AF;
	font-weight: 400;
	font-size: 11px;
	line-height: 17px;
	letter-spacing: 0px;
}

.avance-banner__link {
	color: #FFFFFF;
	font-weight: 400;
	font-size: 12px;
	line-height: 24px;
	letter-spacing: 0px;
	text-align: center;
	text-decoration: underline;
}

.avance-banner__link:hover {
	opacity: 0.8;
}

/* ---------- header ---------- */
.avance-header {
	position: sticky;
	top: 0;
	z-index: 300;
	height: 66px;
	width: 100%;
	background-color: #F0F4EF;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.avance-header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 17px;
	padding: 8px var(--lateral-spacing);
	width: 100%;
	box-sizing: border-box;
}

.avance-logo {
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-right: auto;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: #2C2629;
	text-decoration: none;
}

.avance-logo__accent {
	color: #98BFBF;
	font-size: 1.4em;
	line-height: 0;
}

.avance-logo__image {
	max-height: 28px;
	width: auto;
	display: block;
}

.avance-header__nav-wrapper {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-left: auto;
}

.avance-nav-primary {
	display: flex;
	align-items: center;
	gap: 15px;
}

.avance-nav-primary__link {
	display: block;
	padding: 8px 11px;
	font-size: 14px;
	font-weight: 700;
	color: #466060;
	line-height: 18px;
	letter-spacing: 0px;
	text-align: center;

	transition: color 0.2s, background 0.2s;
	text-decoration: none;
}

.avance-nav-primary__link:hover {
	color: #2C2629;
	background: #FFFFFF;
}

.avance-nav-primary__link[aria-current="page"] {
	color: #2C2629;
	background: #FFFFFF;
	border-radius: 6px;
}

.avance-header__actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.avance-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font: 500 14px / 1.2 "Inter", system-ui, sans-serif;
	padding: 6px 10px;
	border: 1px solid transparent;
	background: transparent;
	color: #2C2629;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
	text-decoration: none;
}

.avance-btn__icon {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.avance-btn--outline {
	height: 46px;
	padding: 14px 24px;
	background-color: #466060;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.3px;
	text-align: center;
}

.avance-btn--outline:hover {
	animation: var(--button-animation);
	background-color: #3A5050;
}

.avance-btn--outline:active {
	background-color: #2F4444;
}

.avance-btn--ghost {
	height: 48px;
	color: #364153;
	background-color: #FFFFFF;
	border: 1px solid #F9FAFB;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.3px;
	text-align: center;
	padding: 14px 24px;
	gap: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.avance-btn--ghost:hover {
	animation: var(--button-animation);
}

/* ---------- menu toggle (hamburguesa) ---------- */
.avance-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-left: auto;
	background: none;
	border: none;
	color: #466060;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.avance-menu-toggle__icon {
	width: 28px;
	height: 28px;
	pointer-events: none;
}

.avance-menu-toggle__line {
	transition: transform 0.25s, y 0.25s, opacity 0.18s;
	transform-origin: center;
}

.avance-header.is-open .avance-menu-toggle {
	color: #466060;
}

.avance-header.is-open .avance-menu-toggle__line--1,
.avance-header.is-open .avance-menu-toggle__line--2,
.avance-header.is-open .avance-menu-toggle__line--3 {
	opacity: 0;
}

.avance-header.is-open .avance-menu-toggle__x {
	opacity: 1;
}

/* ---------- mobile menu panel ---------- */
.avance-menu-panel {
	visibility: hidden;
	opacity: 0;
	transform: scale(0.95);
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: calc(100dvh - var(--header-h));
	overflow-y: auto;
	z-index: 250;
	padding: 22px var(--lateral-spacing) 45px var(--lateral-spacing);
	background: #F0F4EF;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
	transition: visibility 0.2s, opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: visibility, opacity, transform;
}

.avance-header.is-open .avance-menu-panel {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.avance-menu-panel__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
	font-size: 25px;
	font-weight: 500;
	color: #2C2629;
	border-bottom: 1px solid #E5E7EB;
	transition: color 0.2s;
	text-decoration: none;
}

.avance-menu-panel__link:last-of-type {
	border-bottom: none;
}

.avance-menu-panel__link:hover {
	color: #466060;
}

.avance-menu-panel__link[aria-current="page"]::after {
	content: "";
	width: 7px;
	height: 7px;
	background: #466060;
}

.avance-menu-panel__actions {
	display: flex;
	flex-direction: row;
	gap: 12px;
	margin-top: 17px;
	width: 100%;
}

.avance-menu-panel__actions .avance-btn {
	padding: 12px 16px;
	flex: 1;
}

.avance-btn--primary {
	background: #466060;
	border-color: #466060;
	color: #fff;
}

.avance-btn--primary:hover {
	background: #3A5050;
}

.avance-btn--secondary {
	background: #fff;
	border-color: #E5E7EB;
	color: #2C2629;
}

.avance-btn--secondary:hover {
	background: #FAFBFA;
}




/* Reutilizable transitions para reducir duplicación */
.transition-standard,
.home-services__btn,
.home-cta__btn-diag,
.home-form__button,
.home-process__cta-grat,
.home-dark-band__btn-primary,
.home-dark-band__btn-secondary,
.home-final-cta__btn-primary,
.home-final-cta__btn-whatsapp,
.home-hero__btn-diag,
.home-hero__btn-consul,
.home-hero__btn-link {
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
}

/* =====================================================
   1. FOOTER
   ===================================================== */

.site-footer {
	background-color: #F0F4EF;
	padding: 62px var(--lateral-spacing) 45px var(--lateral-spacing);
	display: flex;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}

.site-footer__container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	box-sizing: border-box;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.site-footer__brand {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.site-footer__brand .site-footer__logo-link {
	display: inline-block;
}

.site-footer__logo {
	display: block;
	max-width: 166px;
	height: 47px;
	width: auto;
}

.site-footer__logo-text {
	display: none;
}

.site-footer__brand-text {
	font-weight: 300;
	font-size: 18px;
	line-height: 29px;
	letter-spacing: 0px;
	color: #99A1AF;

}

.site-footer__col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	box-sizing: border-box;
}



.site-footer__col-title {
	font-weight: 900;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: #364153;
}

.site-footer__col a,
.site-footer__contact-item {
	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	letter-spacing: 0px;
	color: #99A1AF;
	transition: color 0.3s ease;
}

.site-footer__col a:hover {
	color: #466060;
}

.site-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #99A1AF;
	transition: color 0.3s ease;
	flex-wrap: wrap;
}

.site-footer__contact-item:hover {
	color: #466060;
}

.site-footer__contact-item img {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.site-footer__bottom {
	border-top: 2px solid #466060;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 32px 0;
	gap: 16px;
	box-sizing: border-box;
}


.site-footer__copyright-text {
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0px;
	color: #99A1AF;
	flex: 0 0 auto;
}

.site-footer__legal-links {
	display: flex;
	flex-direction: row;
	gap: 24px;
	list-style: none;
	box-sizing: border-box;
}

.site-footer__legal-links a {

	font-weight: 300;
	font-size: 16px;
	line-height: 21px;
	letter-spacing: 0px;
	color: #99A1AF;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.site-footer__legal-links a:hover {
	color: #466060;
}

/* =====================================================
   2. HERO SECTION
   ===================================================== */

.home-hero__bg {
	background-image: url('../images/Rectangle 3.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 525px;
	display: flex;
	align-items: center;
	padding-left: var(--lateral-spacing);
	padding-right: var(--lateral-spacing);
	box-sizing: border-box;
}

.home-hero__container {
	width: 100%;
	max-width: 520px;
	display: grid;
	gap: 20px;
	box-sizing: border-box;
}

.home-hero__content {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.home-hero__btn-diag,
.home-hero__btn-consul,
.home-hero__btn-link {
	flex: 1;
	height: 48px;
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.3px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.home-hero__btn-diag {
	background-color: #466060;
	color: #ffffff;
	font-weight: 600;
}

.home-hero__btn-diag:hover,
.home-hero__btn-consul:hover,
.home-hero__btn-link:hover {
	animation: var(--button-animation);
}

.home-hero__btn-consul {
	background-color: rgba(0, 0, 0, 0.1);
	border: 1px solid #99A1AF;
	color: #ffffff;
	font-weight: 600;
}

.home-hero__btn-link {
	background-color: #ffffff;
	color: #034732;
	font-weight: 400;
	border: 1px solid #F3F4F6;
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-hero__btn-link-icon {
	width: 16px;
	height: 16px;
	display: block;
}

.home-hero__label {
	font-weight: 400;
	font-size: 11px;
	line-height: 17px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: #ffffff;
}

.home-hero__title {
	font-weight: 700;
	font-size: 48px;
	line-height: 50.4px;
	letter-spacing: -1.2px;
	color: #ffffff;
}

.home-hero__description {
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0px;
	color: #ffffff;
}

.home-hero__top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.home-hero__bottom {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* =====================================================
   2. FEATURES SECTION
   ===================================================== */

.home-features__container {
	background-color: #F3F4F6;
	border: 1px solid #F3F4F6;
	margin: 0 auto;
	padding: 0 var(--lateral-spacing);
	min-height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.home-features__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
}

.home-services__header {
	display: grid;
	gap: 16px;
}

.home-features__stat {
	font-weight: 700;
	font-size: 59px;
	line-height: 100%;
	color: #98BFBF;
	display: inline-block;
	min-width: 120px;
}

.home-features__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: #99A1AF;
}

/* =====================================================
   3. SERVICES SECTION
   ===================================================== */

.home-services__container {
	background-color: #ffffff;
	padding: 45px var(--lateral-spacing) 52px var(--lateral-spacing);
	display: grid;
	gap: 34px;
}

.home-services__title {
	font-weight: 300;
	font-size: 16px;
	line-height: 17px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: #99A1AF;
}

.home-services__subtitle {
	font-weight: 300;
	font-size: 36px;
	line-height: 36px;
	color: #2C2629;
}

.home-services__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.home-services__item {
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
	display: flex;
	flex-direction: column;
}


.home-services__item:hover,
.home-services__item:focus-within {
	transform: translateY(-12px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
		0 0 20px rgba(70, 96, 96, 0.08);
}

.home-services__badge {
	font-weight: 500;
	font-size: 24px;
	line-height: 16px;
	color: #98BFBF;
	padding-bottom: 16px;
}

.home-services__item-title {
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	color: #466060;
	padding-bottom: 12px;
}

.home-services__item-text {
	font-weight: 300;
	font-size: var(--font-size-base);
	line-height: 23px;
	min-height: 100px;
	color: #666C77;
	padding-bottom: 10px;
	box-sizing: border-box;
}

.home-services__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-services__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 46px;
	background-color: #466060;
	color: #ffffff;
	font-weight: 600;
	font-size: var(--font-size-base);
	line-height: 18px;
	letter-spacing: 0.3px;
	text-align: center;
}

.home-services__btn:hover {
	animation: var(--button-animation);
}


/* =====================================================
   4. PROCESS SECTION
   ===================================================== */

.home-process__container {
	display: grid;
	gap: 48px;
	background-color: #F9FAFB;
	padding: 46px var(--lateral-spacing) 57px var(--lateral-spacing);
}

.home-process__header {
	display: grid;
	gap: 12px;

}

.home-process__title {
	font-weight: 300;
	font-size: 16px;
	line-height: 17px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: #1E2939;
}

.home-process__subtitle {

	font-weight: 300;
	font-size: 36px;
	line-height: 36px;
	color: #2C2629;
}

.home-process__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	position: relative;
}

.home-process__item {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: 48px auto;
	gap: 25px 5px;
	align-items: center;
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
}


.home-process__badge {
	width: 52px;
	height: 48px;
	background-color: #ffffff;
	border: 1px solid #F3F4F6;
	font-weight: 500;
	font-size: 24px;
	line-height: 16px;
	padding: 14px 12px;
	color: #98BFBF;
	box-sizing: border-box;
}

.home-process__line {
	flex: 1;
	display: flex;
	align-items: center;
}

.home-process__dots {
	flex: 1;
	height: 2px;
	background-image: radial-gradient(circle, #a9cabf 1.2px, transparent 1.2px);
	background-size: 8px 2px;
	background-repeat: repeat-x;
	animation: lineFlow 1.5s linear infinite;
}

.home-process__arrow {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	margin-left: 2px;
	animation: arrowBounce 1s ease-in-out infinite;
}

.home-process__arrow svg {
	width: 100%;
	height: 100%;
}

.home-process__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	grid-column: 1 / -1;
	align-self: start;
}

.home-process__item-title {
	font-weight: 300;
	font-size: 24px;
	line-height: 24px;
	color: #2C2629;
}

.home-process__item-text {
	font-weight: 500;
	font-size: var(--font-size-base);
	line-height: 23px;
	color: #99A1AF;
}

.home-process__cta {
	height: 105px;
	background-color: #F0F4EF;
	padding: 29px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	box-sizing: border-box;
}

.home-process__cta-left {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.home-process__cta-right {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.home-process__cta-title {
	font-weight: 500;
	font-size: var(--font-size-md);
	line-height: 24px;
	color: #2C2629;
}

.home-process__cta-texto {
	font-weight: 300;
	font-size: var(--font-size-base);
	line-height: 22px;
	color: #99A1AF;
}

.home-process__cta-grat {
	width: 340px;
	height: 48px;
	padding: 15px 13px;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.3px;
	text-align: center;
	cursor: pointer;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	box-sizing: border-box;
}

.home-process__cta-grat {
	background-color: #466060;
	color: #ffffff;
}

.home-process__cta-grat:hover {
	animation: var(--button-animation);
}


/* =====================================================
   5. TESTIMONIALS SECTION
   ===================================================== */

.home-testimonials__header {
	display: grid;
	gap: 20px;
}

.home-testimonials__container {
	display: grid;
	gap: 36px;
	background-color: #ffffff;
	padding: 65px var(--lateral-spacing) 35px var(--lateral-spacing);
}

.home-testimonials__title {
	font-weight: 400;
	font-size: 16px;
	line-height: 17px;
	letter-spacing: 1.1px;
	color: #99A1AF;
}

.home-testimonials__subtitle {
	font-weight: 300;
	font-size: 36px;
	line-height: 36px;
	color: #2C2629;
}

.home-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.home-testimonials__item {
	padding: 30px;
	border: 1px solid #F0F4EF;
	background-color: #F0F4EF;
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}

.home-testimonials__item:hover,
.home-testimonials__item:focus-within {
	transform: translateY(-12px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
		0 0 20px rgba(70, 96, 96, 0.08);
}

.home-testimonials__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #466060;
}

.home-testimonials__author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.home-testimonials__author-icon {
	flex-shrink: 0;
}

.home-testimonials__author-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.home-testimonials__icon {
	width: 63px;
	height: 63px;
	background-color: #ffffff;
	object-fit: contain;
	display: block;
	border: none;
	outline: none;
}

.home-testimonials__name {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #466060;
}

.home-testimonials__role {
	font-weight: 300;
	font-size: var(--font-size-sm);
	line-height: 17px;
	color: #666C77;
}

/* =====================================================
   6. CTA SECTION
   ===================================================== */
.home-cta {
	padding: 0px var(--lateral-spacing) 30px var(--lateral-spacing);
}

.home-cta__container {
	height: 90px;
	padding: 20px;
	background-color: #F0F4EF;
	border: 1px solid #F0F4EF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--gap-md);
	box-sizing: border-box;
}

.home-cta__text {
	font-weight: 400;
	font-size: var(--font-size-base);
	line-height: 20px;
	color: #364153;
}

.home-cta__buttons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-cta__btn-diag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	gap: 8px;
	padding: 14px 24px;
	border: 1px solid transparent;
	white-space: nowrap;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.3px;
	text-align: center;
	color: #ffffff;
	background-color: #466060;
}

.home-cta__btn-diag:hover {
	animation: var(--button-animation);
}


/* =====================================================
   8. DARK BAND SECTION
   ===================================================== */

.home-dark-band__bg {
	height: 200px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 var(--lateral-spacing);
	box-sizing: border-box;
}

.home-dark-band__container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 68px;
}

.home-dark-band__title {
	font-weight: 500;
	font-size: 36px;
	line-height: 40px;
	color: #ffffff;
	text-transform: none;
}

.home-dark-band__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.home-dark-band__btn-primary {
	width: 100%;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #FFFFFF;
	background-color: #466060;
	font-weight: 900;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
	box-sizing: border-box;
}

.home-dark-band__btn-primary:hover {
	animation: var(--button-animation);
}

.home-dark-band__btn-secondary {
	width: 100%;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid #F3F4F6;
	background-color: #ffffff;
	font-weight: 900;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #666C77;
	box-sizing: border-box;
}

.home-dark-band__btn-secondary:hover {
	animation: var(--button-animation);
}

.home-dark-band__icon {
	width: 16px;
	height: 16px;
}

/* =====================================================
   9. FORM SECTION
   ===================================================== */
/* =====================================================
   10. FINAL CTA SECTION
   ===================================================== */

.home-final-cta {
	opacity: 1;
	transform: none;
}


.home-final-cta__bg {
	height: 117px;
	background-color: #466060;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
	padding: 0 var(--lateral-spacing);
	width: 100%;
	box-sizing: border-box;
}

.home-final-cta__subtitle {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 0 0 auto;
}

.home-final-cta__title {
	font-weight: 700;
	font-size: 26px;
	line-height: 37px;
	letter-spacing: 0px;
	color: #FFFFFF;
}

.home-final-cta__subtitle-text {
	font-weight: 300;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0px;
	color: #99A1AF;
}

.home-final-cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 0 0 auto;
	white-space: nowrap;
}

.home-final-cta__btn-primary {
	height: 48px;
	padding: 14px 28px;
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.39px;
	text-align: center;
	color: #FFFFFF;
	background-color: #466060;
	border: none;
	box-sizing: border-box;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.home-final-cta__btn-primary:hover {
	animation: var(--button-animation);
}

.home-final-cta__btn-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 48px;
	padding: 14px 28px;
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.39px;
	text-align: center;
	color: #364153;
	background-color: #ffffff;
	box-sizing: border-box;
	white-space: nowrap;
}

.home-final-cta__btn-whatsapp:hover {
	animation: var(--button-animation);
}

.home-final-cta__icon {
	width: 16px;
	height: 16px;
}



#contactoAgendaTimeSlots {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}


.calendar-agenda__select-wrapper {
	position: relative;
	width: 100%;
}

.calendar-agenda__select-trigger {
	width: 100%;
	height: 46px;
	padding: 12px 40px 12px 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #99A1AF;
	background: #FFFFFF;
	border: 1px solid #F9FAFB;
	box-sizing: border-box;
	cursor: pointer;
	text-align: left;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0L5 6L10 0Z' fill='%2399A1AF'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 10px 6px;
	transition: border-color 0.2s, color 0.2s;
}

.calendar-agenda__select-trigger:focus {
	outline: 2px solid #466060;
	outline-offset: 2px;
	border-color: #F9FAFB;
}

.calendar-agenda__select-trigger.selected {
	color: #000;
}

.calendar-agenda__select-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-top: none;
	max-height: 250px;
	overflow-y: auto;
	z-index: 1000;
	box-sizing: border-box;
}

.calendar-agenda__select-menu.open {
	display: block;
}

.calendar-agenda__select-option {
	padding: 12px 16px;
	font-size: 14px;
	color: #99A1AF;
	cursor: pointer;
	background: #FFFFFF;
	transition: background-color 0.2s;
}

.calendar-agenda__select-option:hover {
	background-color: #F9FAFB;
	color: #2C2629;
}







/* =====================================================
   RESPONSIVE DESIGN - DESKTOP XL (1440px+)
   ===================================================== */

@media (min-width: 1025px) and (max-width: 1440px) {

	/* HEADER - DESKTOP XL 1025-1440px */
	.avance-header {
		height: 60px;
	}

	.avance-header__container {
		padding: 6px var(--lateral-spacing);
	}

	.avance-nav-primary {
		gap: 14px;
	}

	.avance-nav-primary__link {
		font-size: 11px;
		line-height: 16px;
		padding: 6px 9px;
	}

	.avance-logo {
		font-size: 16px;
	}

	.avance-header__actions {
		gap: 12px;
	}

	.avance-btn--ghost {
		height: 44px;
		font-size: 11px;
		padding: 0 12px;
	}

	.avance-btn--outline {
		height: 44px;
		font-size: 11px;
		padding: 10px 20px;
	}

	/* HERO SECTION - DESKTOP XL */
	.home-hero__bg {
		height: 475px;
		padding-left: var(--lateral-spacing);
		padding-right: var(--lateral-spacing);
	}

	.home-hero__label {
		font-size: 10px;
		line-height: 16px;
	}

	.home-hero__title {
		font-size: 42px;
		line-height: 49px;
	}

	.home-hero__description {
		font-size: 15px;
		line-height: 24px;
	}

	.home-hero__top {
		gap: 16px;
	}

	.home-hero__bottom {
		gap: 28px;
	}

	.home-hero__content {
		display: flex;
		gap: 8px;
		flex-wrap: wrap;
	}

	.home-hero__btn-diag,
	.home-hero__btn-consul,
	.home-hero__btn-link {
		height: 42px;
		font-size: 11px;
		line-height: 16px;
	}

	/* FEATURES SECTION - DESKTOP XL */
	.home-features__container {
		min-height: 150px;
		padding: 32px var(--lateral-spacing);
	}

	.home-features__stat {
		font-size: 48px;
		min-width: 100px;
	}

	.home-features__text {
		font-size: 15px;
	}

	.home-features__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		flex: 1;
	}

	/* SERVICES SECTION - DESKTOP XL */
	.home-services__title {
		font-size: 14px;
		line-height: 16px;
	}

	.home-services__header {
		gap: 16px;
	}

	.home-services__container {
		padding: 36px var(--lateral-spacing) 40px var(--lateral-spacing);
		gap: 24px;
	}

	.home-services__subtitle {
		font-size: 28px;
		line-height: 32px;
	}

	.home-services__item {
		padding: 16px;
	}

	.home-services__badge {
		font-size: 20px;
		padding-bottom: 12px;
	}

	.home-services__item-title {
		font-size: 20px;
		line-height: 24px;
		padding-bottom: 8px;
	}

	.home-services__item-text {
		font-size: 13px;
		line-height: 22px;
		min-height: 80px;
	}

	.home-services__actions {
		gap: 10px;
	}

	.home-services__btn {
		height: 40px;
		font-size: 13px;
		line-height: 17px;
	}


	/* PROCESS SECTION - DESKTOP XL */
	.home-process__header {
		gap: 16px;
	}

	.home-process__title {
		font-size: 14px;
		line-height: 16px;
	}

	.home-process__container {
		padding: 36px var(--lateral-spacing) 40px var(--lateral-spacing);
		gap: 28px;
	}

	.home-process__subtitle {
		font-size: 28px;
		line-height: 32px;
	}

	.home-process__list {
		gap: 20px;
	}

	.home-process__badge {
		width: 40px;
		height: 36px;
		font-size: 18px;
		padding: 8px 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
	}

	.home-process__item {
		gap: 20px 5px;
	}

	.home-process__item-title {
		font-size: 18px;
		line-height: 20px;
	}

	.home-process__item-text {
		font-size: 13px;
		line-height: 22px;
		color: #666C77;
	}

	.home-process__cta {
		height: 90px;
		padding: 20px;
		gap: 24px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.home-process__cta-title {

		font-size: 15px;
		line-height: 22px;
		color: #2C2629;
	}

	.home-process__cta-texto {
		font-size: 11px;
		line-height: 18px;
		color: #666C77;
	}

	.home-process__cta-right {
		display: flex;
		flex-direction: row;
		gap: 8px;
		flex-shrink: 0;
	}

	.home-process__cta-grat {
		width: 300px;
		height: 40px;
		padding: 11px 16px;
		font-size: 11px;
		white-space: nowrap;
	}

	/* TESTIMONIALS SECTION - DESKTOP XL */
	.home-testimonials__title {
		font-size: 15px;
		line-height: 17px;
		letter-spacing: 1.1px;
		color: #99A1AF;
	}

	.home-testimonials__container {
		padding: 50px var(--lateral-spacing) 30px var(--lateral-spacing);
		gap: 28px;
	}

	.home-testimonials__subtitle {
		font-size: 30px;
		line-height: 32px;
	}

	.home-testimonials__item {
		padding: 24px;
	}

	.home-testimonials__text {
		font-size: 13px;
		line-height: 22px;
		color: #466060;
	}

	.home-testimonials__name {
		font-size: 15px;
		line-height: 20px;
	}

	.home-testimonials__role {
		font-size: var(--font-size-sm);
		line-height: 17px;
	}

	.home-testimonials__icon {
		width: 56px;
		height: 56px;
	}

	/* CTA SECTION - DESKTOP XL */
	.home-cta__container {
		height: 75px;
		padding: 16px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: var(--gap-md);
	}


	.home-cta__text {
		font-size: var(--font-size-base);
		line-height: 20px;
		color: var(--text-primary);
	}

	.home-cta__buttons {
		display: flex;
		align-items: center;
		gap: var(--gap-md);
	}

	.home-cta__btn-diag {
		height: 40px;
		padding: 10px 18px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-size: 12px;
		line-height: 16px;
		border: 1px solid transparent;
		white-space: nowrap;
	}

	/* Clients Section */
	.home-clients__container {
		height: 70px;
		padding: 12px;
		gap: 24px;
	}

	/* DARK BAND SECTION - DESKTOP XL */
	.home-dark-band__bg {
		height: 160px;
		padding: 0 var(--lateral-spacing);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.home-dark-band__container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 50px;
		width: 100%;
	}

	.home-dark-band__title {
		font-size: 30px;
		line-height: 36px;
		color: #ffffff;
		text-transform: none;
	}

	.home-dark-band__actions {
		display: flex;
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}

	.home-dark-band__btn-primary,
	.home-dark-band__btn-secondary {
		height: 48px;
		font-size: 12px;
		padding: 0 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* FINAL CTA SECTION - DESKTOP XL */
	.home-final-cta__bg {
		height: 115px;
		flex-direction: row;
		padding: 40px var(--lateral-spacing);
		gap: 60px;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		display: flex;
	}

	.home-final-cta__subtitle {
		display: flex;
		flex-direction: column;
		gap: 8px;
		flex: 0 0 auto;
	}

	.home-final-cta__title {
		font-size: 24px;
		line-height: 34px;
	}

	.home-final-cta__subtitle-text {
		font-size: 16px;
		line-height: 24px;
	}

	.home-final-cta__actions {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		flex: 0 0 auto;
		white-space: nowrap;
		flex-direction: row;
	}

	.home-final-cta__btn-whatsapp,
	.home-final-cta__btn-primary {
		flex: 0 0 auto;
		height: 44px;
		padding: 14px 28px;
		font-size: 14px;
		line-height: 21px;
	}

	/* FOOTER - DESKTOP XL */
	.site-footer {
		padding: 62px var(--lateral-spacing) 45px var(--lateral-spacing);
	}

	.site-footer__grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 40px;
		align-items: flex-start;
	}

	.site-footer__brand {
		grid-column: 1;
	}

	.site-footer__col {
		flex-direction: column;
	}

	.site-footer__col-title {
		font-size: 13px;
	}

	.site-footer__col a,
	.site-footer__contact-item {
		font-size: 14px;
	}

	.site-footer__contact-item img {
		width: 15px;
		height: 15px;
	}

	.site-footer__bottom {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
	}

	.site-footer__copyright-text {
		flex: 1;
	}

	.site-footer__legal-links {
		display: flex;
		flex-direction: row;
		gap: 24px;
		justify-content: flex-end;
	}
}

/* =====================================================
   RESPONSIVE DESIGN - TABLET (769px - 1024px)
   ===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
	:root {
		--lateral-spacing: 8.75rem;
	}

	.avance-banner {
		display: none;
	}

	.avance-header__nav-wrapper {
		display: none;
	}

	.avance-menu-toggle {
		display: flex;
	}

	/* HEADER - MENU PANEL */
	.avance-menu-panel__link {
		font-size: 18px;
		padding: 9px 0;
	}

	.avance-menu-panel__actions {
		gap: 10px;
		margin-top: 15px;
	}

	.avance-menu-panel__actions .avance-btn {
		padding: 10px 14px;
	}

	.avance-btn {
		font-size: 12px;
		padding: 10px 16px;
	}

	/* HERO SECTION */
	.home-hero__bg {
		height: 400px;
	}

	.home-hero__container {
		max-width: 420px;
	}

	.home-hero__label {
		font-size: 9px;
		line-height: 15px;
	}

	.home-hero__top {
		gap: 14px;
	}

	.home-hero__bottom {
		gap: 24px;
	}

	.home-hero__title {
		font-size: 32px;
		line-height: 36px;
	}

	.home-hero__description {
		font-size: 13px;
		line-height: 22px;
	}

	.home-hero__content {
		gap: 8px;
	}

	.home-hero__btn-diag,
	.home-hero__btn-consul,
	.home-hero__btn-link {
		height: 40px;
		font-size: 10px;
		line-height: 16px;
	}

	.home-hero__btn-consul {
		display: none;
	}

	/* FEATURES SECTION */
	.home-features__container {
		padding: 32px var(--lateral-spacing);
		min-height: 120px;
	}

	.home-features__stat {
		font-size: 42px;
		min-width: 80px;
	}

	.home-features__text {
		font-size: 14px;
	}

	/* SERVICES SECTION - TABLET */
	.home-services__header {
		gap: 12px;
	}

	.home-services__container {
		padding: 32px var(--lateral-spacing) 36px var(--lateral-spacing);
		gap: 20px;
	}

	.home-services__title {
		font-size: 12px;
		line-height: 14px;
	}

	.home-services__subtitle {
		font-size: 24px;
		line-height: 28px;
	}

	.home-services__list {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.home-services__item {
		padding: 16px;
	}

	.home-services__badge {
		font-size: 18px;
		padding-bottom: 12px;
	}

	.home-services__item-title {
		font-size: 18px;
		line-height: 22px;
		padding-bottom: 8px;
	}

	.home-services__item-text {
		font-size: 12px;
		line-height: 20px;
		min-height: 60px;
		flex-grow: 1;
	}

	.home-services__actions {
		margin-top: auto;
		gap: 10px;
	}

	.home-services__btn {
		height: 36px;
		font-size: 12px;
		line-height: 16px;
	}


	/* PROCESS SECTION - TABLET */
	.home-process__header {
		gap: 12px;
	}

	.home-process__container {
		padding: 32px var(--lateral-spacing) 36px var(--lateral-spacing);
		gap: 24px;
	}

	.home-process__title {
		font-size: 12px;
		line-height: 14px;
	}

	.home-process__subtitle {
		font-size: 24px;
		line-height: 28px;
	}

	.home-process__list {
		gap: 18px;
	}

	.home-process__badge {
		width: 36px;
		height: 32px;
		font-size: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 6px 4px;
		line-height: 1;
	}

	.home-process__item {
		gap: 18px 4px;
	}

	.home-process__item-title {
		font-size: 16px;
		line-height: 20px;
	}

	.home-process__item-text {
		font-size: 12px;
		line-height: 18px;
	}

	.home-process__cta {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		height: 75px;
		gap: 12px;
		padding: 16px;
	}

	.home-process__cta-title {
		font-size: 14px;
		line-height: 20px;
	}

	.home-process__cta-texto {
		font-size: 11px;
		line-height: 16px;
	}

	.home-process__cta-left {
		flex: 1;
	}

	.home-process__cta-right {
		display: flex;
		flex-direction: row;
		flex-shrink: 0;
		gap: 12px;
	}

	.home-process__cta-grat {
		width: 260px;
		height: 32px;
		padding: 9px 14px;
		font-size: 10px;
		line-height: 15px;
	}

	/* TESTIMONIALS SECTION */
	.home-testimonials__container {
		padding: 40px var(--lateral-spacing) 24px var(--lateral-spacing);
		gap: 20px;
	}

	.home-testimonials__title {
		font-size: 13px;
		line-height: 15px;
	}

	.home-testimonials__subtitle {
		font-size: 28px;
		line-height: 32px;
	}

	.home-testimonials__item {
		padding: 16px;
	}

	.home-testimonials__text {
		font-size: 12px;
		line-height: 20px;
	}

	.home-testimonials__name {
		font-size: 14px;
		line-height: 18px;
	}

	.home-testimonials__role {
		font-size: 11px;
		line-height: 15px;
	}

	.home-testimonials__icon {
		width: 56px;
		height: 56px;
	}

	/* CTA SECTION */
	.home-cta__container {
		height: 60px;
		padding: 12px;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}


	.home-cta__text {
		font-size: 13px;
		line-height: 18px;
		flex: 1;
	}

	.home-cta__buttons {
		display: flex;
		gap: 12px;
		flex-shrink: 0;
	}

	.home-cta__btn-diag {
		height: 36px;
		padding: 10px 16px;
		font-size: 11px;
		line-height: 16px;
	}

	/* FINAL CTA SECTION */
	.home-final-cta__bg {
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 28px var(--lateral-spacing);
	}

	.home-final-cta__title {
		font-size: 21px;
		line-height: 30px;
	}

	.home-final-cta__subtitle-text {
		font-size: 11px;
		line-height: 16px;
	}

	.home-final-cta__actions {
		width: 100%;
		flex-direction: row;
		gap: 12px;
	}

	.home-final-cta__btn-whatsapp,
	.home-final-cta__btn-primary {
		flex: 1;
		height: 38px;
		font-size: 11px;
		padding: 10px 16px;
	}

	/* DARK BAND SECTION */
	.home-dark-band__bg {
		height: 140px;
		padding: 32px var(--lateral-spacing);
	}

	.home-dark-band__container {
		gap: 45px;
	}

	.home-dark-band__actions {
		gap: 8px;
	}

	.home-dark-band__title {
		font-size: 24px;
		line-height: 28px;
	}

	.home-dark-band__subtitle {
		font-size: 14px;
		line-height: 20px;
	}

	.home-dark-band__btn-primary,
	.home-dark-band__btn-secondary {
		height: 40px;
		font-size: 12px;
		padding: 10px 16px;
	}

	/* FOOTER - TABLET */
	.site-footer {
		padding: 48px var(--lateral-spacing) 32px var(--lateral-spacing);
	}

	.site-footer__grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 12px;
		align-items: flex-start;
	}

	.site-footer__brand {
		grid-column: 1;
	}

	.site-footer__brand-text {
		font-size: 12px;
		line-height: 1.5;
		padding-top: 12px;
	}

	.site-footer__col-title {
		font-size: 11px;
		letter-spacing: 0.06em;
	}

	.site-footer__col a,
	.site-footer__contact-item {
		font-size: 13px;
		line-height: 1.4;
	}

	.site-footer__contact-item img {
		width: 14px;
		height: 14px;
	}

	.site-footer__bottom {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		margin-top: 0;
	}

	.site-footer__copyright-text {
		flex: 1;
		font-size: 11px;
	}

	.site-footer__legal-links {
		display: flex;
		flex-direction: row;
		gap: 16px;
		justify-content: flex-end;
	}

	.site-footer__legal-links a {
		font-size: 11px;
	}
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE MEDIUM (480px - 768px)
   ===================================================== */
@media (min-width: 480px) and (max-width: 768px) {

	.avance-banner {
		display: none;
	}

	.avance-header__nav-wrapper {
		display: none;
	}

	.avance-menu-toggle {
		display: flex;
	}

	.avance-menu-panel__link {
		font-size: 16px;
		padding: 8px 0;
	}

	.avance-menu-panel__actions {
		gap: 9px;
		margin-top: 14px;
	}

	.avance-menu-panel__actions .avance-btn {
		padding: 9px 13px;
	}

	/* FOOTER - MOBILE MEDIUM 480px-768px */
	.site-footer {
		padding: 40px var(--lateral-spacing) 24px var(--lateral-spacing);
	}

	.site-footer__grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 32px;
		align-items: flex-start;
	}

	.site-footer__brand {
		width: 100%;
	}

	.site-footer__brand-text {
		font-size: 14px;
		line-height: 1.5;
		padding-top: 12px;
		max-width: 60%;
	}

	.site-footer__col {
		width: 100%;
	}

	.site-footer__col-title {
		font-size: 11px;
		letter-spacing: 0.06em;
	}

	.site-footer__col a,
	.site-footer__contact-item {
		font-size: 13px;
	}

	.site-footer__contact-item img {
		width: 13px;
		height: 13px;
	}

	.site-footer__bottom {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding-top: 24px;
		gap: 16px;
	}

	.site-footer__copyright-text {
		font-size: 12px;
		flex: 0 0 auto;
	}

	.site-footer__legal-links {
		display: flex;
		flex-direction: row;
		gap: 16px;
		justify-content: flex-end;
	}

	.site-footer__legal-links a {
		font-size: 12px;
	}

	/* HERO SECTION - 480px-768px */
	.home-hero__bg {
		height: 350px;
	}

	.home-hero__container {
		max-width: 390px;
	}

	.home-hero__label {
		font-size: 9px;
		line-height: 15px;
	}

	.home-hero__top {
		gap: 14px;
	}

	.home-hero__bottom {
		gap: 20px;
	}

	.home-hero__title {
		font-size: 30px;
		line-height: 34px;
	}

	.home-hero__description {
		font-size: 13px;
		line-height: 22px;
	}

	.home-hero__content {
		gap: 8px;
	}

	.home-hero__btn-diag,
	.home-hero__btn-consul,
	.home-hero__btn-link {
		height: 32px;
		font-size: 8px;
		line-height: 14px;
	}

	.home-hero__btn-consul {
		display: none;
	}

	.home-hero__btn-consul {
		outline: 1px solid #99A1AF;
		outline-offset: -1px;
	}

	.home-hero__btn-link {
		gap: 8px;
	}

	/* FEATURES SECTION - 480px-768px */
	.home-features__container {
		padding: 32px var(--lateral-spacing) 32px var(--lateral-spacing);
		min-height: 100px;
	}

	.home-features__stat {
		font-size: 32px;
		line-height: 1;
	}

	.home-features__text {
		font-size: 11px;
		line-height: 1.3;
	}

	.home-features__item {
		border-right: 1px solid #E5E8EB;
	}

	.home-features__item:last-child {
		border-right: none;
		padding-right: 0;
	}

	/* SERVICES SECTION - 480px-768px */
	.home-services__container {
		padding: 32px var(--lateral-spacing) 32px var(--lateral-spacing);
		gap: 20px;
	}

	.home-services__header {
		gap: 12px;
	}

	.home-services__title {
		font-size: 12px;
		line-height: 14px;
	}

	.home-services__subtitle {
		font-size: 24px;
		line-height: 28px;
	}

	.home-services__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.home-services__item {
		padding: 16px;
	}

	.home-services__badge {
		font-size: 18px;
		line-height: 16px;
		padding-bottom: 12px;
	}

	.home-services__item-title {
		font-size: 16px;
		line-height: 20px;
		padding-bottom: 8px;
	}

	.home-services__item-text {
		font-size: 12px;
		line-height: 20px;
		min-height: 50px;
		flex-grow: 1;
	}

	.home-services__actions {
		display: flex;
		flex-direction: column;
		margin-top: auto;
		gap: 10px;
	}

	.home-services__btn {
		height: 32px;
		font-size: 11px;
		line-height: 15px;
		padding: 0 16px;
	}

	/* PROCESS SECTION - 480px-768px */
	.home-process__container {
		padding: 32px var(--lateral-spacing) 32px var(--lateral-spacing);
		gap: 20px;
	}

	.home-process__header {
		gap: 12px;
	}

	.home-process__title {
		font-size: 12px;
		line-height: 14px;
	}

	.home-process__subtitle {
		font-size: 24px;
		line-height: 28px;
	}

	.home-process__badge {
		font-size: 16px;
		line-height: 1;
		width: 36px;
		height: 32px;
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 6px 4px;
	}

	.home-process__item-title {
		font-size: 16px;
		line-height: 20px;
	}

	.home-process__item-text {
		font-size: 12px;
		line-height: 18px;
	}

	.home-process__list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.home-process__item {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 16px 3px;
		align-items: flex-start;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		box-sizing: border-box;
		height: auto;
		background-color: transparent;
	}

	.home-process__content {
		grid-column: 2;
		width: 100%;
		min-width: 0;
		gap: 5px;
	}

	.home-process__item-title,
	.home-process__item-text {
		word-break: break-word;
		overflow-wrap: break-word;
		white-space: normal;
		max-width: 100%;
		display: block;
	}

	.home-process__line {
		display: none;
	}

	/* PROCESS CTA - 480px-768px */
	.home-process__cta {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		height: auto;
		gap: 16px;
		padding: 16px;
	}

	.home-process__cta-left {
		width: 100%;
	}

	.home-process__cta-title {
		font-size: 12px;
		line-height: 18px;
	}

	.home-process__cta-texto {
		font-size: 10px;
		line-height: 16px;
	}

	.home-process__cta-right {
		display: flex;
		flex-direction: row;
		width: 100%;
		gap: 12px;
		flex-shrink: 0;
	}

	.home-process__cta-grat {
		flex: 1;
		width: 100%;
		height: 28px;
		padding: 12px 16px;
		font-size: 9px;
		line-height: 14px;
	}

	/* TESTIMONIALS SECTION - 480px-768px */
	.home-testimonials__container {
		padding: 40px var(--lateral-spacing) 40px var(--lateral-spacing);
		gap: 24px;
	}

	.home-testimonials__header {
		gap: 20px;
	}

	.home-testimonials__title {
		font-size: 13px;
		line-height: 1;
		letter-spacing: 1px;
	}

	.home-testimonials__subtitle {
		font-size: 27px;
		line-height: 1.2;
		letter-spacing: 0;
	}

	.home-testimonials__item {
		display: flex;
		flex-direction: column;
		padding: 16px;
		gap: 20px;
		justify-content: space-between;
		height: auto;
	}

	.home-testimonials__text {
		font-size: 12px;
		line-height: 1.6;
		letter-spacing: 0;
	}

	.home-testimonials__icon {
		width: 48px;
		height: 48px;
	}

	.home-testimonials__name {
		font-size: 12px;
		line-height: 16px;
		letter-spacing: 0;
	}

	.home-testimonials__role {
		font-size: 11px;
		line-height: 15px;
		letter-spacing: 0;
	}

	.home-testimonials__grid {
		gap: 24px;
		grid-template-columns: 1fr;
	}

	/* CTA SECTION - 480px-768px */
	.home-cta {
		display: flex;
	}

	.home-cta__container {
		flex-direction: column;
		align-items: stretch;
		height: auto;
		gap: 16px;
		padding: 16px;
		width: 100%;
		box-sizing: border-box;
	}

	.home-cta__left {
		width: 100%;
	}

	.home-cta__text {
		font-size: 12px;
		line-height: 18px;
	}

	.home-cta__right {
		display: flex;
		flex-direction: row;
		width: 100%;
		gap: 16px;
		flex-shrink: 0;
	}

	.home-cta__btn-diag {
		flex: 1;
		width: 100%;
		height: 32px;
		padding: 10px 16px;
		font-size: 10px;
		line-height: 14px;
	}

	/* FINAL CTA SECTION - 480px-768px */
	.home-final-cta__bg {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 24px var(--lateral-spacing);
		height: auto;
	}

	.home-final-cta__title {
		font-size: 18px;
		line-height: 26px;
	}

	.home-final-cta__subtitle-text {
		font-size: 12px;
		line-height: 18px;
		text-align: center;
	}

	.home-final-cta__actions {
		display: flex;
		width: 100%;
		flex-direction: row;
		gap: 12px;
	}

	.home-final-cta__btn-whatsapp,
	.home-final-cta__btn-primary {
		flex: 1;
		width: 100%;
		height: 38px;
		font-size: 11px;
		padding: 10px 16px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* DARK BAND SECTION - 480px-768px */
	.home-dark-band__bg {
		height: auto;
		padding: 32px var(--lateral-spacing);
	}

	.home-dark-band__container {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 20px;
		align-items: stretch;
	}

	.home-dark-band__title {
		font-size: 22px;
		line-height: 1.2;
		letter-spacing: 0;
		text-align: left;
	}

	.home-dark-band__actions {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}

	.home-dark-band__btn-primary,
	.home-dark-band__btn-secondary {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 40px;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		padding: 0 16px;
	}

	/* CLIENTS SECTION - 480px-768px */
	.home-clients {
		display: flex;
	}

	.home-clients__container {
		padding: 56px var(--lateral-spacing) 56px var(--lateral-spacing);
	}

	.home-clients__title {
		font-size: 32px;
		line-height: 1.2;
		letter-spacing: 0;
		padding-bottom: 32px;
	}

	.home-clients__grid {
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}

	.home-clients__item {
		padding: 24px;
	}

}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE (max-width: 479px)
   ===================================================== */
@media (max-width: 479px) {
	:root {
		--lateral-spacing: 24px;
	}

	.avance-banner {
		display: none;
	}

	.avance-header__nav-wrapper {
		display: none;
	}

	.avance-menu-toggle {
		display: flex;
	}

	.avance-menu-panel__actions {
		flex-direction: column;
		gap: 8px;
		margin-top: 12px;
	}

	.avance-menu-panel__actions .avance-btn {
		height: 49px;
		padding: 16px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
		flex: none;
		gap: 10px;
		font-size: 14px;
	}

	.home-hero__bg {
		height: auto;
		background-image: none;
		padding: 0;
	}

	.home-hero__container {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.home-hero__top {
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		gap: 12px;
		padding: 24px 24px;
		box-sizing: border-box;
		background-image: url('../images/HeroMobil.png');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: inherit;
	}

	.home-hero__bottom {
		height: auto;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 20px;
		background-color: #A6BEB8;
		background-image: none;
		padding: 24px 16px;
		box-sizing: border-box;
	}

	.home-hero__label {
		font-weight: 500;
		font-size: 11px;
		line-height: 1;
		letter-spacing: 1px;
	}

	.home-hero__title {
		font-weight: 700;
		font-size: 24px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.home-hero__description {
		font-weight: 600;
		font-size: 15px;
		line-height: 1.5;
		letter-spacing: 0;
	}

	.home-hero__content {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		width: 100%;
		height: auto;
		gap: 15px;
		padding-top: 0;
	}

	.home-hero__btn-diag,
	.home-hero__btn-consul,
	.home-hero__btn-link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 49px;
		padding: 0 16px;
		box-sizing: border-box;
		font-weight: 600;
		font-size: 14px;
		line-height: 49px;
		letter-spacing: 0;
		border: none;
	}

	.home-hero__btn-consul {
		display: none;
	}

	.home-hero__btn-link {
		gap: 8px;
	}

	/* FEATURES - 480px */
	.home-features__container {
		min-height: 100px;
		padding: 24px var(--lateral-spacing);
	}

	.home-features__stat {
		font-weight: 700;
		font-size: 30px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-features__text {
		font-weight: 500;
		font-size: 10px;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
	}

	.home-features__item {
		border-right: 1px solid #E5E8EB;
	}

	.home-features__item:last-child {
		border-right: none;
		padding-right: 0;
	}

	/* SERVICES - 480px */
	.home-services__container {
		padding: 48px var(--lateral-spacing) 48px var(--lateral-spacing);
		gap: 24px;
	}


	.home-services__title {
		font-weight: 500;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 1px;
	}

	.home-services__subtitle {
		font-weight: 300;
		font-size: 26px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-services__badge {
		font-weight: 300;
		font-size: 22px;
		padding-bottom: 8px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-services__item-title {
		font-weight: 400;
		font-size: 21px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-services__item-text {
		font-weight: 300;
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: 0;
		min-height: auto;
	}

	.home-services__btn {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 44px;
		font-weight: 600;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-services__list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.home-services__item {
		gap: 15px;
	}

	/* PROCESS - 480px */
	.home-process__container {
		padding: 48px var(--lateral-spacing) 48px var(--lateral-spacing);
		gap: 32px;
	}

	.home-process__header {
		gap: 32px;
	}

	.home-process__title {
		font-weight: 500;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 1px;
	}

	.home-process__subtitle {
		font-weight: 300;
		font-size: 26px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-process__badge {
		font-weight: 300;
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0;
		width: 44px;
		height: 44px;
		border: 1px solid #E5E8EB;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.home-process__item-title {
		font-weight: 300;
		font-size: 19px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-process__item-text {
		font-weight: 400;
		font-size: 13px;
		line-height: 1.5;
		letter-spacing: 0;
	}

	.home-process__list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home-process__item {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 12px;
		align-items: flex-start;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		box-sizing: border-box;
		height: 70px;
	}

	.home-process__badge {
		grid-column: 1;
		flex-shrink: 0;
	}

	.home-process__content {
		grid-column: 2;
		width: 100%;
		min-width: 0;
		gap: 5px;
	}

	.home-process__item-title,
	.home-process__item-text {
		word-break: break-word;
		overflow-wrap: break-word;
		white-space: normal;
		max-width: 100%;
		display: block;
	}

	.home-process__line {
		display: none;
	}

	/* PROCESS CTA - 480px */
	.home-process__cta {
		flex-direction: column;
		align-items: stretch;
		height: auto;
		gap: 14px;
		padding: 20px;
	}

	.home-process__cta-left {
		width: 100%;
	}

	.home-process__cta-right {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.home-process__cta-grat {
		width: 100%;
		height: 44px;
		padding: 12px;
	}

	/* TESTIMONIALS - 480px */
	.home-testimonials__container {
		padding: 45px var(--lateral-spacing) 45px var(--lateral-spacing);
		gap: 24px;
	}

	.home-testimonials__header {
		gap: 24px;
	}

	.home-testimonials__title {
		font-weight: 500;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 1px;
	}

	.home-testimonials__subtitle {
		font-weight: 300;
		font-size: 24px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-testimonials__item {
		padding: 24px;
	}

	.home-testimonials__text {
		font-weight: 400;
		font-size: 14px;
		line-height: 1.6;
		letter-spacing: 0;
	}

	.home-testimonials__icon {
		width: 45px;
		height: 45px;
	}

	.home-testimonials__name {
		font-weight: 400;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-testimonials__role {
		font-weight: 300;
		font-size: 11px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-testimonials__grid {
		gap: 24px;
	}

	/* HIDE SECTIONS - 480px */
	.home-cta,
	.home-clients {
		display: none;
	}

	/* DARK BAND - 480px */
	.home-dark-band__bg {
		height: 338px;
		padding: 20px var(--lateral-spacing);
	}

	.home-dark-band__container {
		flex-direction: column;
		justify-content: flex-start;
		gap: 16px;
		align-items: stretch;
	}

	.home-dark-band__title {
		font-weight: 400;
		font-size: 24px;
		line-height: 1.25;
		letter-spacing: 0;
		text-align: left;
	}

	.home-dark-band__actions {
		width: 100%;
	}

	.home-dark-band__btn-primary,
	.home-dark-band__btn-secondary {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 48px;
		font-weight: 700;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
	}

	/* FORM - 480px */
	.home-form {
		padding: 56px var(--lateral-spacing);
	}

	.home-form__label {
		font-weight: 500;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 0.5px;
		padding-bottom: 24px;
	}

	.home-form__title {
		font-weight: 300;
		font-size: 24px;
		line-height: 1;
		letter-spacing: 0;
		padding-bottom: 24px;
	}

	.home-form__description {
		font-weight: 300;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-form__form {
		gap: 24px;
	}

	.home-form__label-field {
		font-weight: 700;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0;
	}

	.home-form__input {
		height: 45px;
		padding: 14px 16px;
		font-weight: 400;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0;
	}


	.home-form__row {
		flex-direction: column;
		gap: 24px;
	}

	.home-form__field {
		flex: 1;
		width: 100%;
	}

	.home-form__buttons {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.home-form__button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 49px;
		padding: 0 16px;
		box-sizing: border-box;
		font-weight: 700;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0;
		flex: none;
		border: none;
	}

	.home-final-cta__bg {
		display: none;
	}

	/* FOOTER - MOBILE 479px */
	.site-footer {
		padding: 40px var(--lateral-spacing);
		background-color: #F0F4EF;
	}

	.site-footer__grid {
		display: flex;
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}

	.site-footer__brand {
		width: 100%;
	}

	.site-footer__brand .site-footer__logo-link {
		display: inline-block;
	}

	.site-footer__logo {
		display: none;
	}

	.site-footer__logo-text {
		display: block;
		font-weight: 700;
		font-style: normal;
		font-size: 20px;
		line-height: 100%;
		letter-spacing: 0%;
		color: #FFFFFF;
	}

	.site-footer__brand-text {
		font-weight: 300;
		font-size: 14px;
		line-height: 150%;
		letter-spacing: 0%;
		color: #99A1AF;
		margin-top: 12px;
	}

	.site-footer__col {
		width: 100%;
	}

	.site-footer__col-title {
		font-weight: 700;
		font-size: 12px;
		line-height: 100%;
		letter-spacing: 8%;
		color: #FFFFFF;
	}

	.site-footer__col a,
	.site-footer__contact-item {
		font-weight: 300;
		font-size: 13px;
		line-height: 1.4;
		letter-spacing: 0%;
		color: #99A1AF;
	}

	.site-footer__contact-item img {
		width: 12px;
		height: 12px;
	}

	.site-footer__col a:hover {
		color: #466060;
	}

	.site-footer__bottom {
		width: 100%;
		padding-top: 16px;
		border-top: 1px solid #E5E7EB;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	:root {
		--gutter: 24px;
	}

	.avance-menu-panel__link {
		font-size: 14px;
		padding: 7px 0;
	}

	.site-footer__copyright-text {
		font-weight: 300;
		font-size: 10px;
		line-height: 100%;
		letter-spacing: 0%;
		color: #99A1AF;
	}

	.site-footer__legal-links {
		display: flex;
		flex-direction: column;
		gap: 8px;
		list-style: none;
		width: 100%;
	}

	.site-footer__legal-links a {
		font-weight: 300;
		font-size: 10px;
		line-height: 100%;
		letter-spacing: 0%;
		color: #99A1AF;
	}

	.site-footer__legal-links a:hover {
		color: #466060;
	}

	.site-footer {
		background-color: #466060;
	}

}