/*

 *


 * - template-parts/form-section.php (Avance_Form_Component)
 *
 * @package Avance_Template
 */

.home-form {

	background-color: #F9FAFB;
	border: 1px solid #F9FAFB;
	padding: 80px var(--lateral-spacing);
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.home-form__container {
	width: 100%;
	max-width: 780px;
	display: grid;
	gap: 36px;
}

.home-form__header {
	display: grid;
	gap: 12px;
}

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

.home-form__title {
	font-weight: 300;
	font-size: 36px;
	line-height: 44px;
	color: #2C2629;
	padding-bottom: 9px;
}

.home-form__description {
	font-weight: 300;
	font-size: 14px;
	line-height: 23px;
	color: #99A1AF;
}

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

.home-form__row {
	display: flex;
	gap: 12px;
}

.home-form__field {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	overflow: visible;
	position: relative;
}

.home-form__field--full {
	grid-column: 1 / -1;
	flex: 0;
}

.home-form__label-field {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: #6A7282;
}

.home-form__input {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #000;
	line-height: 1.5;
	height: 46px;
	padding: 12px 16px;
	border: 1px solid #D0D5E0;
	background-color: var(--bg-white);
	box-sizing: border-box;
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-form__input::placeholder {
	color: #99A1AF;
}

.home-form__input:focus,
.home-form__input:hover {
	outline: none;
	border-color: #D0D5E0;
	box-shadow: none;
}

/* =====================================================
   AVANCE SELECT COMPONENT - INDEPENDIENTE
   ===================================================== */

.avance-select-wrapper {
	position: relative;
	width: 100%;
}

.avance-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 46px;
	padding: 12px 14px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0px;
	color: #99A1AF;
	border: 1px solid #D0D5E0;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	user-select: none;
}

.avance-select-trigger:hover {
	border-color: #D1D5DB;
}

.avance-select-trigger.is-open {
	border-color: #D1D5DB;
}

.avance-select-trigger.has-value .avance-select-value {
	color: #2C2629;
}

.avance-select-value {
	flex: 1;
	text-align: left;
	transition: color 0.2s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.avance-select-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-left: 10px;
	color: #466060;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.avance-select-trigger.is-open .avance-select-icon {
	transform: scaleY(-1);
}

.avance-select-dropdown {
	position: fixed;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	background: #FFFFFF;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	z-index: 99999;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	width: auto;
	min-width: 220px;
}

.avance-select-dropdown.is-open {
	max-height: 200px;
	opacity: 1;
	pointer-events: auto;
	overflow-y: auto;
}

.avance-select-option {
	padding: 12px 14px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0px;
	color: #2C2629;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #F2F4F6;
}

.avance-select-option:last-child {
	border-bottom: none;
}

.avance-select-option:first-child {
	color: #99A1AF;
}

.avance-select-option:hover {
	background: #F9FAFB;
	color: #466060;
}

.avance-select-option.is-selected {
	background: #F0F4EF;
	color: #466060;
	font-weight: 500;
}


.avance-select-hidden {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.home-form__select-wrapper {
	position: relative;
	width: 100%;
	margin: 0;
}

.home-form__select-trigger {
	width: 100%;
	height: 46px;
	padding: 12px 40px 12px 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	color: #99A1AF;
	background: #FFFFFF;
	border: 1px solid #F9FAFB;
	border-radius: 0;
	box-sizing: border-box;
	cursor: pointer;
	text-align: left;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M0 0L5 6L10 0Z' fill='%2399A1AF'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 10px 6px;
	margin: 0;
}

.home-form__select-trigger:focus {
	outline: none;
	border-color: #F9FAFB;
}

.home-form__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: 9999;
	box-sizing: border-box;
	margin: 0;
}

.home-form__select-menu.open {
	display: block;
}

.home-form__select-option {
	padding: 12px 16px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #99A1AF;
	cursor: pointer;
	background: #FFFFFF;
	margin: 0;
}

.home-form__select-option:hover {
	background-color: #F9FAFB;
	color: #2C2629;
}

.home-form__select-option.selected {
	background-color: #034732;
	color: #FFFFFF;
}

.home-form__textarea {
	width: 100%;
	height: 80px;
	resize: vertical;
	padding: 12px 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0px;
	color: var(--text-secondary);
	background-color: var(--bg-white);
	border: 1px solid #E5E7EB;
	box-sizing: border-box;
}

.home-form__textarea::placeholder {
	color: #99A1AF;
}

.home-form__textarea:hover,
.home-form__textarea:focus {
	outline: none;
	border-color: #D0D5E0;
	box-shadow: none;
}

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

.home-form__button {
	flex: 1;
	height: 48px;
	background-color: #466060;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	box-sizing: border-box;
	border: none;
	padding: 12px 16px;
	margin: 0;
	cursor: pointer;
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

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

.home-form__button--secondary {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #364153;
	background-color: #FFFFFF;
	border: 1px solid #E5E7EB;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	box-sizing: border-box;
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 12px 16px;
	margin: 0;
	cursor: pointer;
	text-decoration: none;
	height: 48px;
}

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

.home-form__button-icon {
	width: 16px;
	height: 16px;
	display: block;
	flex-shrink: 0;
}

.contacto-agenda {
	padding: 60px var(--lateral-spacing);
	border:1px solid #D9D9D9;
}

.contacto-agenda__container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.contacto-agenda__grid {
	display: grid;
	grid-template-columns: minmax(250px, 25%) 1fr;
	gap: 60px;
	align-items: start;
	width: 100%;
	box-sizing: border-box;
}

.contacto-agenda__right {
	display: flex;
	flex-direction: column;
	gap: 40px;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Las clases is-hidden e is-visible solo aplican en mobile */

.contacto-agenda__form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contacto-agenda__left {
	transition: opacity 0.3s ease, visibility 0.3s ease;
	opacity: 1;
	visibility: visible;
	flex: 1;
}

.contacto-agenda__left.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.contacto-agenda__left.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.contacto-agenda__header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contacto-agenda__header-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contacto-agenda__kicker {
	font-weight: 400;
	font-size: 16px;
	line-height: 16.5px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: #99A1AF;
}

.contacto-agenda__title {
	font-weight: 300;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: 0px;
	color: #2C2629;
}

.contacto-agenda__subtitle {
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0px;
	color: #99A1AF;
}

.contacto-agenda__section-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contacto-agenda__section-kicker {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #466060;
}

.contacto-agenda__section-sub {
	font-weight: 400;
	font-size: 14px;
	line-height: 22.75px;
	letter-spacing: 0px;
	color: #99A1AF;
}

.contacto-agenda__form-fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contacto-agenda__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contacto-agenda__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contacto-agenda__field label {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0px;
	color: #6A7282;
}

.contacto-agenda__input,
.contacto-agenda__select-trigger {
	height: 46px;
	padding: 12px 16px;
	border: 1px solid #D0D5E0;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0px;
	background: #FFFFFF;
	transition: border-color 0.2s, color 0.2s;
	color: #D1D5DB;
}

.contacto-agenda__input::placeholder {
	color: #99A1AF;
}

.contacto-agenda__input:valid,
select.contacto-agenda__input:valid {
	color: #000000;
}

.contacto-agenda__input:focus,
.contacto-agenda__input:hover,
.contacto-agenda__select-trigger:focus {
	outline: none;
	border-color: #D0D5E0;
	box-shadow: none;
}

.contacto-agenda__select-wrapper {
	position: relative;
}

.contacto-agenda__select-trigger {
	width: 100%;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contacto-agenda__select-trigger.has-value {
	color: #000000;
}

.contacto-agenda__select-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-top: none;
	border-radius: 0 0 6px 6px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 10;
	display: none;
}

.contacto-agenda__select-trigger.active~.contacto-agenda__select-menu {
	display: block;
}

.contacto-agenda__select-option {
	padding: 12px 14px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #2C2629;
	cursor: pointer;
	transition: background-color 0.2s;
}

.contacto-agenda__select-option:hover {
	background-color: #F9FAFB;
}

.contacto-agenda__btn {
	width: 100%;
	max-width: 100%;
	height: 48px;
	padding: 14px 24px;
	border: none;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.3px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.contacto-agenda__btn--primary {
	background-color: #2C4A3E;
	color: #FFFFFF;
}

.contacto-agenda__btn--primary:hover:not(:disabled) {
	animation: var(--button-animation);
	background-color: #034732;
}

.contacto-agenda__btn--primary:active:not(:disabled) {
	animation: var(--button-animation);
}

.contacto-agenda__btn--primary:disabled {
	background-color: #E5E7EB;
	color: #99A1AF;
	cursor: not-allowed;
}

.contacto-agenda__btn--block {
	width: 100%;
}

.contacto-agenda__btn--back {
	display: none;
}

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

.contacto-agenda__feature-card {
	padding: 12px;
	height: 60px;
	background: #FFFFFF;
	border: 1px solid #F0F4EF;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contacto-agenda__feature-title {
	font-weight: 600;
	font-size: 10px;
	line-height: 15px;
	letter-spacing: 0px;
	text-align: center;
	text-align: center;
	color: #364153;
}

.contacto-agenda__feature-body {
	font-weight: 300;
	font-size: 9px;
	line-height: 13.5px;
	letter-spacing: 0px;
	text-align: center;
	text-align: center;
	color: #99A1AF;
}

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

	.home-form {
		padding: 60px var(--lateral-spacing);
	}

	.home-form__container {
		gap: 30px;
	}

	.home-form__header {
		gap: 10px;
	}

	.home-form__title {
		font-size: 32px;
		line-height: 39px;
	}

	.home-form__description {
		font-size: 13px;
		line-height: 21px;
	}

	.home-form__form {
		gap: 12px;
	}

	.home-form__row {
		gap: 12px;
	}

	.home-form__field {
		gap: 6px;
	}

	.home-form__label {
		font-size: 15px;
		line-height: 16px;
		letter-spacing: 1px;
	}

	.home-form__label-field {
		font-size: 14px;
		line-height: 1.3;
	}

	.home-form__input {
		height: 44px;
		padding: 11px 15px;
		font-size: 13px;
	}

	.home-form__field--full {
		grid-column: 1 / -1;
		flex: 0;
	}

	.home-form__textarea {
		height: 76px;
		font-size: 13px;
		line-height: 19px;
		padding: 11px 15px;
	}

	.home-form__buttons {
		gap: 12px;
	}

	.home-form__button {
		height: 44px;
		font-size: 13px;
		line-height: 19px;
	}

	.home-form__button--secondary {
		height: 44px;
		font-size: 12px;
		line-height: 18px;
	}

	.home-form__select-trigger {
		height: 46px;
		font-size: 14px;
		padding: 12px 40px 12px 16px;
	}

	.home-form__select-option {
		padding: 12px 16px;
		font-size: 14px;
	}

	.avance-select-trigger {
		height: 44px;
		padding: 11px 13px;
		font-size: 13px;
	}

	.avance-select-icon {
		width: 15px;
		height: 15px;
	}

	.avance-select-dropdown.is-open {
		max-height: 160px;
	}

	.avance-select-option {
		padding: 11px 13px;
		font-size: 12px;
	}

	.contacto-agenda {
		padding: 50px var(--lateral-spacing);
	}

	.contacto-agenda__container {
		gap: 33px;
	}

	.contacto-agenda__grid {
		grid-template-columns: minmax(260px, 26%) 1fr;
		gap: 48px;
		align-items: start;
	}

	.contacto-agenda__right {
		gap: 33px;
	}

	.contacto-agenda__header {
		gap: 12px;
	}

	.contacto-agenda__header-content {
		gap: 13px;
	}

	.contacto-agenda__kicker {
		font-weight: 400;
		font-size: 15px;
		line-height: 16px;
		letter-spacing: 1px;
	}

	.contacto-agenda__title {
		font-weight: 300;
		font-size: 34px;
		line-height: 41px;
		letter-spacing: 0;
	}

	.contacto-agenda__subtitle {
		font-weight: 300;
		font-size: 13px;
		line-height: 20px;
		letter-spacing: 0;
	}

	.contacto-agenda__section-header {
		gap: 8px;
	}

	.contacto-agenda__section-kicker {
		font-weight: 400;
		font-size: 11px;
		line-height: 15px;
		letter-spacing: 1.1px;
	}

	.contacto-agenda__section-sub {
		font-weight: 400;
		font-size: 13px;
		line-height: 21px;
		letter-spacing: 0;
	}

	.contacto-agenda__form-fields {
		gap: 18px;
	}

	.contacto-agenda__form-row {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.contacto-agenda__field {
		gap: 6px;
	}

	.contacto-agenda__form {
		gap: 13px;
	}

	.contacto-agenda__field label {
		font-size: 11px;
		line-height: 15px;
		letter-spacing: 0;
	}

	.contacto-agenda__input,
	.contacto-agenda__select-trigger {
		height: 44px;
		padding: 11px 14px;
		font-size: 13px;
		line-height: 1.5;
	}

	.contacto-agenda__select-menu {
		max-height: 180px;
	}

	.contacto-agenda__select-option {
		padding: 10px 12px;
		font-size: 12px;
	}

	.contacto-agenda__btn {
		height: 44px;
		padding: 12px 20px;
		font-weight: 500;
		font-size: 12px;
		line-height: 18px;
	}

	.contacto-agenda__feature-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		width: 100%;
	}

	.contacto-agenda__feature-card {
		height: 56px;
		padding: 10px;
		gap: 6px;
	}

	.contacto-agenda__feature-title {
		font-size: 9px;
		line-height: 13px;
		letter-spacing: 0;
	}

	.contacto-agenda__feature-body {
		font-size: 8px;
		line-height: 12px;
		letter-spacing: 0;
	}

	.contacto-agenda__btn--back {
		display: none;
	}

	.avance-select-dropdown.is-open {
		max-height: 200px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {

	.home-form {
		padding: 48px var(--lateral-spacing);
	}

	.contacto-agenda {
		padding: 40px var(--lateral-spacing);
	}

	.contacto-agenda__container {
		gap: 32px;
	}

	.contacto-agenda__grid {
		grid-template-columns: minmax(260px, 26%) 1fr;
		gap: 40px;
		align-items: start;
	}

	.contacto-agenda__right {
		gap: 32px;
	}

	.contacto-agenda__header {
		gap: 10px;
	}

	.contacto-agenda__header-content {
		gap: 8px;
	}

	.contacto-agenda__kicker {
		font-weight: 400;
		font-size: 13px;
		line-height: 15px;
		letter-spacing: 0.9px;
	}

	.contacto-agenda__title {
		font-weight: 300;
		font-size: 28px;
		line-height: 34px;
		letter-spacing: 0;
	}

	.contacto-agenda__subtitle {
		font-weight: 300;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 0;
	}

	.contacto-agenda__section-header {
		gap: 6px;
	}

	.contacto-agenda__section-kicker {
		font-weight: 400;
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 1px;
	}

	.contacto-agenda__section-sub {
		font-weight: 400;
		font-size: 12px;
		line-height: 19px;
		letter-spacing: 0;
	}

	.contacto-agenda__form-fields {
		gap: 16px;
	}

	.contacto-agenda__form-row {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.contacto-agenda__field {
		gap: 5px;
	}

	.contacto-agenda__form {
		gap: 11px;
	}

	.contacto-agenda__field label {
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 0;
	}

	.contacto-agenda__input,
	.contacto-agenda__select-trigger {
		height: 40px;
		padding: 10px 12px;
		font-size: 12px;
		line-height: 1.5;
	}

	.contacto-agenda__select-menu {
		max-height: 160px;
	}

	.contacto-agenda__select-option {
		padding: 9px 11px;
		font-size: 11px;
	}

	.contacto-agenda__btn {
		height: 40px;
		padding: 10px 18px;
		font-weight: 500;
		font-size: 11px;
		line-height: 16px;
	}

	.contacto-agenda__feature-grid {
		display: none;
	}

	.home-form__container {
		gap: 28px;
	}

	.home-form__header {
		gap: 8px;
	}

	.home-form__label {
		font-size: 11px;
		line-height: 16px;
		letter-spacing: 1.2px;
	}

	.home-form__title {
		font-size: 28px;
		line-height: 34px;
	}

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

	.home-form__form {
		gap: 10px;
	}

	.home-form__row {
		gap: 12px;
	}

	.home-form__field {
		gap: 6px;
	}

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

	.home-form__input {
		height: 40px;
		font-size: 13px;
		padding: 10px 12px;
	}

	.home-form__field--full {
		grid-column: 1 / -1;
		flex: 0;
	}

	.home-form__textarea {
		height: 70px;
		font-size: 13px;
		line-height: 18px;
		padding: 10px 12px;
	}

	.home-form__buttons {
		gap: 10px;
	}

	.home-form__button {
		height: 40px;
		font-size: 13px;
		line-height: 20px;
	}

	.home-form__button--secondary {
		height: 40px;
		font-size: 12px;
		line-height: 18px;
		gap: 6px;
	}

	.home-form__select-trigger {
		height: 40px;
		font-size: 13px;
		padding: 10px 36px 10px 12px;
	}

	.home-form__select-option {
		padding: 10px 12px;
		font-size: 12px;
	}

	.avance-select-trigger {
		height: 40px;
		padding: 10px 11px;
		font-size: 12px;
	}

	.avance-select-icon {
		width: 14px;
		height: 14px;
	}

	.avance-select-dropdown.is-open {
		max-height: 240px;
	}

	.avance-select-option {
		padding: 10px 11px;
		font-size: 11px;
	}

	.contacto-agenda__btn--back {
		display: none;
	}

	.avance-select-dropdown.is-open {
		max-height: 180px;
	}
}

@media (min-width: 480px) and (max-width: 768px) {

	.contacto-agenda {
		padding: 32px var(--lateral-spacing);
	}

	.contacto-agenda__container {
		gap: 28px;
	}

	.contacto-agenda__grid {
		gap: 32px;
		grid-template-columns: minmax(240px, 26%) 1fr;
		align-items: start;
	}

	.contacto-agenda__right {
		gap: 24px;
	}

	.contacto-agenda__kicker {
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
		letter-spacing: 0.8px;
	}

	.contacto-agenda__title {
		font-weight: 300;
		font-size: 24px;
		line-height: 29px;
		letter-spacing: 0;
	}

	.contacto-agenda__subtitle {
		font-weight: 300;
		font-size: 11px;
		line-height: 16px;
		letter-spacing: 0;
	}

	.contacto-agenda__header {
		gap: 8px;
	}

	.contacto-agenda__header-content {
		gap: 10px;
	}

	.contacto-agenda__section-header {
		gap: 6px;
	}

	.contacto-agenda__form-fields {
		gap: 14px;
	}

	.contacto-agenda__form-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.home-form {
		padding: 40px var(--lateral-spacing);
	}

	.home-form__container {
		gap: 24px;
	}

	.home-form__header {
		gap: 8px;
	}

	.home-form__label {
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 1px;
	}

	.home-form__title {
		font-size: 24px;
		line-height: 29px;
	}

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

	.home-form__form {
		gap: 10px;
	}

	.home-form__row {
		gap: 12px;
	}

	.home-form__field {
		gap: 6px;
	}

	.home-form__label-field {
		font-size: 10px;
		line-height: 1.3;
	}

	.home-form__input {
		height: 38px;
		font-size: 12px;
		padding: 8px 10px;
	}

	.home-form__field--full {
		grid-column: 1 / -1;
		flex: 0;
	}

	.home-form__textarea {
		height: 60px;
		font-size: 12px;
		line-height: 16px;
		padding: 8px 10px;
	}

	.home-form__buttons {
		gap: 10px;
	}

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

	.home-form__button--secondary {
		height: 36px;
		font-size: 11px;
		line-height: 16px;
		gap: 6px;
	}

	.home-form__select-trigger {
		height: 38px;
		font-size: 12px;
		padding: 8px 32px 8px 10px;
	}

	.home-form__select-option {
		padding: 8px 10px;
		font-size: 11px;
	}

	.avance-select-trigger {
		height: 36px;
		padding: 8px 10px;
		font-size: 11px;
	}

	.avance-select-icon {
		width: 13px;
		height: 13px;
		margin-left: 8px;
	}

	.avance-select-dropdown.is-open {
		max-height: 220px;
	}

	.avance-select-option {
		padding: 8px 10px;
		font-size: 10px;
	}


	.contacto-agenda__select-option {
		padding: 7px 10px;
		font-size: 10px;
	}

	.contacto-agenda__field {
		gap: 5px;
	}

	.contacto-agenda__form {
		gap: 8px;
	}

	.contacto-agenda__field label {
		font-weight: 400;
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 0;
		display: flex;
		align-items: center;
	}

	.contacto-agenda__input,
	.contacto-agenda__select-trigger {
		height: 36px;
		padding: 8px 10px;
		font-weight: 400;
		font-size: 11px;
		line-height: 1.5;
	}

	.contacto-agenda__section-kicker {
		min-height: 36px;
		display: flex;
		align-items: center;
		font-weight: 400;
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 0.8px;
	}

	.contacto-agenda__btn {
		height: 36px;
		padding: 8px 16px;
		font-weight: 500;
		font-size: 11px;
		line-height: 14px;
	}

	.contacto-agenda__section-sub {
		font-weight: 400;
		font-size: 11px;
		line-height: 17px;
		letter-spacing: 0;
	}

	.contacto-agenda__right {
		gap: 28px;
	}

	.contacto-agenda__feature-grid {
		display: none;
	}

	.contacto-agenda__btn--back {
		display: none;
	}

	.avance-select-dropdown.is-open {
		max-height: 160px;
	}
}

@media (max-width: 479px) {

	.contacto-agenda {
		padding: 40px var(--lateral-spacing);
	}

	.contacto-agenda__grid {
		grid-template-columns: 1fr;
		position: relative;
		gap: 20px;
	}

	.contacto-agenda__left {
		grid-column: 1;
		height: auto;
	}

	.contacto-agenda__right {
		display: none;
		grid-column: 1;
		min-height: auto;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		gap: 24px;
		flex-direction: column;
	}

	.contacto-agenda__right.is-hidden {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.contacto-agenda__right.is-visible {
		display: flex;
		min-height: 100%;
		overflow: visible;
	}

	.contacto-agenda__header-content {
		gap: 20px;
	}

	.contacto-agenda__container {
		gap: 20px;
	}

	.home-form {
		padding: 24px var(--lateral-spacing);
		width: 100%;
		height: auto;
	}

	.home-form__container {
		gap: 20px;
		height: auto;
	}

	.contacto-agenda__form-fields {
		gap: 16px;
	}

	.contacto-agenda__form-row {
		gap: 12px;
	}

	.contacto-agenda__input,
	.contacto-agenda__select-trigger {
		height: 46px;
		padding: 14px 16px;
		font-size: 12px;
	}

	.avance-select-trigger {
		height: 46px;
		padding: 14px 16px;
		font-size: 14px;
	}

	.avance-select-icon {
		width: 13px;
		height: 13px;
		margin-left: 8px;
	}

	.avance-select-dropdown.is-open {
		max-height: 200px;
	}

	.avance-select-option {
		padding: 14px 16px;
		font-size: 14px;
	}


	.contacto-agenda__select-menu {
		max-height: 280px;
		z-index: 9999;
	}

	.contacto-agenda__feature-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.contacto-agenda__feature-card {
		padding: 12px;
	}

	.contacto-agenda__feature-title {
		font-size: 11px;
	}

	.contacto-agenda__feature-body {
		font-size: 10px;
	}

	.contacto-agenda__kicker {
		font-weight: 500;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 0.06em;
	}

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

	.contacto-agenda__subtitle {
		font-weight: 300;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 0;
	}

	.contacto-agenda__header {
		gap: 8px;
	}

	.contacto-agenda__header-content {
		gap: 10px;
	}

	.contacto-agenda__section-header {
		gap: 6px;
	}

	.contacto-agenda__feature-grid {
		display: none !important;
	}

	.contacto-agenda__section-kicker {
		font-weight: 400;
		font-size: 11px;
		line-height: 14px;
		letter-spacing: 0.8px;
	}

	.contacto-agenda__section-sub {
		font-weight: 400;
		font-size: 13px;
		line-height: 20px;
		letter-spacing: 0;
	}

	.contacto-agenda__form-fields {
		flex-direction: column;
		gap: 14px;
	}

	.contacto-agenda__form-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		width: 100%;
	}

	.contacto-agenda__field {
		width: 100%;
	}

	.contacto-agenda__field label {
		font-weight: 400;
		font-size: 11px;
		line-height: 15px;
		letter-spacing: 0;
	}

	.contacto-agenda__btn {
		height: 49px;
		flex: 0 0 auto;
		font-weight: 700;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0px;
		padding: 0;
	}

	.contacto-agenda__change-btn,
	.contacto-agenda__form-btn {
		height: 49px;
		flex: 0 0 auto;
		font-weight: 700;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0px;
		padding: 0;
	}

	.contacto-agenda__btn-next {
		margin-top: 16px;
	}

	.contacto-agenda__btn--back {
		display: block;
		background-color: #FFFFFF;
		color: #364153;
		border: 1px solid #E5E7EB;
	}

	.contacto-agenda__btn--back:hover:not(:disabled) {
		animation: var(--button-animation);
		background-color: #F9FAFB;
		border-color: #D1D5DB;
	}

	@media (min-width: 480px) {
		.contacto-agenda__btn--back {
			display: none !important;
		}

		.contacto-agenda__btn-next {
			display: none !important;
		}
	}

	.home-form__header {
		gap: 10px;
	}

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

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

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

	.home-form__form {
		gap: 24px;
	}

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

	.home-form__field {
		gap: 10px;
	}

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

	.home-form__field--full {
		grid-column: 1 / -1;
		flex: 0;
	}

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

	.home-form__textarea {
		height: 48px;
		font-weight: 400;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0px;
		padding: 6px 8px;
	}

	.home-form__buttons {
		gap: 6px;
		flex-direction: column;
	}

	.home-form__button {
		height: 49px;
		flex: 0 0 auto;
		font-weight: 700;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0px;
	}

	.home-form__button--secondary {
		height: 49px;
		flex: 0 0 auto;
		font-weight: 700;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0px;
		gap: 4px;
	}

	.home-form__select-trigger {
		height: 32px;
		font-size: 10px;
		padding: 6px 24px 6px 8px;
		background-size: 7px 4px;
		background-position: right 8px center;
	}

	.home-form__select-option {
		padding: 6px 8px;
		font-size: 9px;
	}

	.avance-select-dropdown.is-open {
		max-height: 140px;
	}
}

