/* ==========================================================
   AIRES DEPOT - AIRES ACONDICIONADOS EN VERACRUZ
   Diseño final independiente. Prefijo: adac-
========================================================== */

.adac-landing,
.adac-landing * {
	box-sizing: border-box;
}

.adac-landing {
	--adac-navy: #062c66;
	--adac-blue: #0a5fc4;
	--adac-blue-dark: #073b82;
	--adac-yellow: #ffc400;
	--adac-green: #14a638;
	--adac-ink: #11264c;
	--adac-muted: #5f6f85;
	--adac-line: #dce5ef;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	color: var(--adac-ink);
	font-family: inherit;
	line-height: 1.5;
}

.adac-landing a {
	text-decoration: none !important;
}

.adac-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.adac-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px !important;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.adac-btn:hover {
	transform: translateY(-1px);
}

/* HERO */

.adac-hero {
	background: #fff;
}

.adac-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
	align-items: stretch;
	min-height: 505px;
}

.adac-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 62px 42px 54px 0;
}

.adac-hero-copy h1 {
	margin: 0 0 22px !important;
	color: var(--adac-navy) !important;
	font-size: clamp(44px, 5vw, 67px) !important;
	font-weight: 900 !important;
	line-height: .98 !important;
	letter-spacing: -1.8px;
}

.adac-hero-copy h1 span {
	display: block;
	margin-top: 11px;
	color: #0b5fc5;
	font-family: cursive;
	font-size: .73em;
	font-weight: 700;
	letter-spacing: -1px;
}

.adac-hero-description {
	max-width: 640px;
	margin: 0 0 27px !important;
	color: #273f62;
	font-size: 16px;
	line-height: 1.6;
}

.adac-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 33px;
}

.adac-btn-whatsapp {
	background: var(--adac-yellow);
	color: #12233f !important;
	box-shadow: 0 9px 20px rgba(255,196,0,.18);
}

.adac-btn-whatsapp:hover {
	background: #eab500;
}

.adac-btn-outline {
	border: 1.5px solid #0b62c7;
	background: #fff;
	color: #073b82 !important;
}

.adac-btn-outline:hover {
	background: #f2f7ff;
}

.adac-hero-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
	max-width: 720px;
}

.adac-hero-benefits > div {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.adac-mini-icon {
	display: flex;
	flex: 0 0 28px;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #0b5fc5;
	border-radius: 50%;
	color: #0b5fc5;
	font-size: 12px;
	font-weight: 900;
}

.adac-hero-benefits strong {
	color: #19355f;
	font-size: 10px;
	line-height: 1.25;
}

.adac-hero-image {
	position: relative;
	min-height: 505px;
	overflow: hidden;
	background: #f1f3f6;
}

.adac-hero-image::before {
	content: "";
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	bottom: 0;
	width: 110px;
	background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.82) 35%, rgba(255,255,255,0) 100%);
	pointer-events: none;
}

.adac-hero-image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 505px;
	object-fit: cover;
	object-position: center;
}

/* SECTION HEADINGS */

.adac-section-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.adac-section-heading > span {
	display: block;
	margin-bottom: 5px;
	color: #0a5fc4;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .35px;
}

.adac-section-heading h2 {
	margin: 0 0 5px !important;
	color: var(--adac-navy) !important;
	font-size: 31px !important;
	font-weight: 900 !important;
	line-height: 1.12 !important;
}

.adac-section-heading p {
	margin: 0 !important;
	color: #52647e;
	font-size: 13px;
}

/* TYPES */

.adac-types {
	padding: 55px 0 58px;
	background: #fff;
}

.adac-type-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.adac-type-card {
	display: flex;
	flex-direction: column;
	min-height: 405px;
	padding: 20px 18px 19px;
	border: 1px solid #e2e7ed;
	border-radius: 14px;
	background: #fff;
	color: var(--adac-ink) !important;
	box-shadow: 0 9px 26px rgba(39,58,81,.08);
	transition: transform .18s ease, box-shadow .18s ease;
}

.adac-type-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 33px rgba(39,58,81,.12);
}

.adac-type-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
}

.adac-type-badge {
	display: flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #0d5fc1;
	color: #fff;
	font-size: 23px;
	font-weight: 900;
}

.adac-type-inverter .adac-type-badge { background: #67b95a; }
.adac-type-portable .adac-type-badge { background: #7b4ed5; }
.adac-type-standard .adac-type-badge { background: #ff7417; }

.adac-type-heading small {
	display: block;
	color: #162b4c;
	font-size: 10px;
	font-weight: 800;
}

.adac-type-heading h3 {
	margin: 0 !important;
	color: #0863d0 !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	line-height: 1.05 !important;
}

.adac-type-inverter h3 { color: #21a83b !important; }
.adac-type-portable h3 { color: #7041d6 !important; }
.adac-type-standard h3 { color: #f66a10 !important; }

.adac-type-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
	margin: 14px 0 11px;
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
}

.adac-type-image img {
	display: block;
	max-width: 100%;
	max-height: 145px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.adac-type-image-portable img {
	max-height: 150px;
}

.adac-type-card ul {
	margin: 0 0 17px !important;
	padding-left: 16px !important;
	color: #283c5d;
	font-size: 10px;
	line-height: 1.7;
}

.adac-card-link {
	display: block;
	margin-top: auto;
	color: #0b61c7;
	font-size: 11px;
	font-weight: 900;
}

.adac-type-inverter .adac-card-link { color: #149a2f; }
.adac-type-portable .adac-card-link { color: #7440d7; }
.adac-type-standard .adac-card-link { color: #f06109; }

/* BENEFITS */

.adac-benefits {
	padding: 0 0 26px;
	background: #fff;
}

.adac-benefits-box {
	padding: 22px 24px 24px;
	border-radius: 14px;
	background: linear-gradient(105deg, #eef7ff 0%, #f8fbff 100%);
}

.adac-benefits-box > h2 {
	margin: 0 0 18px !important;
	color: #0a5fc4 !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	text-align: center;
	text-transform: uppercase;
}

.adac-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0,1fr));
}

.adac-benefit-item {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 11px;
	align-items: start;
	padding: 2px 18px;
	border-right: 1px solid #d8e5f3;
}

.adac-benefit-item:last-child { border-right: 0; }

.adac-round-icon,
.adac-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border: 2px solid #0c60c5;
	border-radius: 50%;
	color: #0c60c5;
	font-size: 17px;
	font-weight: 900;
}

.adac-benefit-item strong {
	display: block;
	margin-bottom: 4px;
	color: #132c54;
	font-size: 10px;
	font-weight: 900;
}

.adac-benefit-item p {
	margin: 0 !important;
	color: #3d506d;
	font-size: 9px;
	line-height: 1.55;
}

/* COMMERCE */

.adac-commerce-info {
	padding: 0 0 30px;
	background: #fff;
}

.adac-commerce-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 14px;
}

.adac-panel {
	border: 1px solid #dfe6ef;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(26,57,91,.06);
}

.adac-panel > h2 {
	margin: 0 !important;
	padding: 10px 18px !important;
	background: linear-gradient(90deg, #0b4ca1 0%, #062f70 100%);
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
	text-align: center;
	text-transform: uppercase;
}

.adac-panel-body {
	padding: 22px 20px 15px;
}

.adac-delivery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 14px;
}

.adac-delivery-item {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 10px;
	align-items: start;
}

.adac-info-icon {
	width: 50px;
	height: 50px;
	border: 0;
	background: #edf5ff;
	font-size: 13px;
}

.adac-delivery-item strong {
	display: block;
	color: #122f59;
	font-size: 10px;
	font-weight: 900;
}

.adac-delivery-item h3 {
	margin: 1px 0 6px !important;
	color: #0a346b !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.adac-delivery-item p {
	margin: 0 0 6px !important;
	color: #42536d;
	font-size: 9px;
	line-height: 1.55;
}

.adac-delivery-item small {
	display: block;
	color: #16a12f;
	font-size: 8px;
	font-weight: 800;
}

.adac-delivery-item a {
	color: #0a60c7 !important;
	font-size: 8px;
	font-weight: 900;
}

.adac-small-note {
	margin: 0 !important;
	padding: 0 20px 14px;
	color: #4f5f75;
	font-size: 7.5px;
	line-height: 1.45;
}

.adac-payment-options {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.adac-payment-options > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	padding: 13px 8px;
	border-radius: 9px;
	background: #fbfcfe;
	text-align: center;
}

.adac-payment-options span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 39px;
	height: 36px;
	margin-bottom: 9px;
	color: #0b5fc5;
	font-size: 18px;
	font-weight: 900;
}

.adac-payment-options .adac-pay-green { color: #35a62b; }

.adac-payment-options strong {
	color: #142e57;
	font-size: 9px;
	line-height: 1.35;
}

/* ATRATO - MISMA ESTRUCTURA VISUAL QUE LAVADORAS */

.adac-credit {
	padding: 0 0 12px;
	background: #fff;
}

.adac-credit-box {
	display: grid;
	grid-template-columns: 215px minmax(220px, .95fr) minmax(390px, 1.65fr) auto;
	gap: 24px;
	align-items: center;
	padding: 19px 24px;
	border: 1px solid #cfcdf5;
	border-radius: 12px;
	background: linear-gradient(100deg, #fbfbff 0%, #f3f1ff 55%, #fafaff 100%);
	box-shadow: inset 0 0 35px rgba(121,96,208,.05);
}

.adac-credit-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 72px;
	padding-right: 8px;
	border-right: 1px solid rgba(68,78,129,.12);
}

.adac-credit-brand img {
	display: block;
	max-width: 190px;
	width: 100%;
	height: auto;
	filter: none !important;
	transform: none !important;
}

.adac-credit-copy h2 {
	margin: 0 0 6px !important;
	color: #102c59 !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.adac-credit-copy p {
	margin: 0 !important;
	color: #16345e;
	font-size: 11px;
	line-height: 1.6;
}

.adac-credit-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.adac-credit-points > div {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	min-width: 0;
}

.adac-credit-points > div > span {
	display: flex;
	flex: 0 0 28px;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #0b56b3;
	border-radius: 50%;
	color: #0b56b3;
	font-size: 12px;
	font-weight: 900;
}

.adac-credit-points p,
.adac-credit-points strong,
.adac-credit-points small {
	display: block;
	margin: 0 !important;
}

.adac-credit-points strong {
	color: #112b55;
	font-size: 8px;
	line-height: 1.3;
}

.adac-credit-points small {
	margin-top: 2px !important;
	color: #536174;
	font-size: 7px;
	line-height: 1.4;
}

.adac-credit-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.adac-btn-credit {
	min-width: 142px;
	background: #13a538;
	color: #fff !important;
	white-space: nowrap;
}

.adac-btn-credit:hover {
	background: #0f8e30;
}

/* CIERRE */

.adac-help {
	padding: 0 0 22px;
}

.adac-help-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 13px 24px;
	border-radius: 10px;
	background: linear-gradient(90deg, #073a85 0%, #062d6b 100%);
	color: #fff;
}

.adac-help-copy {
	display: flex;
	align-items: center;
	gap: 12px;
}

.adac-whatsapp-mark {
	display: flex;
	flex: 0 0 35px;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #16b844;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
}

.adac-help-box strong,
.adac-help-box span {
	display: block;
}

.adac-help-box strong {
	font-size: 16px;
}

.adac-help-box .adac-help-copy div > span {
	margin-top: 2px;
	color: #e6eef9;
	font-size: 9px;
}

.adac-btn-whatsapp-dark {
	border: 1px solid rgba(255,255,255,.78);
	background: transparent;
	color: #fff !important;
}

.adac-btn-whatsapp-dark:hover {
	background: rgba(255,255,255,.1);
}

.adac-legal {
	margin: 8px auto 0 !important;
	color: #6c7684;
	font-size: 7.5px;
	text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
	.adac-hero-grid {
		grid-template-columns: 1fr;
	}

	.adac-hero-copy {
		padding: 45px 0 35px;
	}

	.adac-hero-image {
		min-height: 390px;
		border-radius: 18px 18px 0 0;
	}

	.adac-hero-image img {
		min-height: 390px;
	}

	.adac-type-grid {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}

	.adac-benefit-grid {
		grid-template-columns: repeat(2, minmax(0,1fr));
		row-gap: 18px;
	}

	.adac-benefit-item:nth-child(2) {
		border-right: 0;
	}

	.adac-commerce-grid {
		grid-template-columns: 1fr;
	}

	.adac-credit-box {
		grid-template-columns: 210px 1fr;
	}

	.adac-credit-points,
	.adac-credit-action {
		grid-column: 1 / -1;
	}

	.adac-credit-action {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.adac-container {
		width: min(calc(100% - 24px), 1180px);
	}

	.adac-hero-copy h1 {
		font-size: 39px !important;
	}

	.adac-hero-description {
		font-size: 14px;
	}

	.adac-hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.adac-hero-actions .adac-btn {
		width: 100%;
	}

	.adac-hero-benefits {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}

	.adac-hero-image,
	.adac-hero-image img {
		min-height: 280px;
	}

	.adac-hero-image::before {
		display: none;
	}

	.adac-section-heading h2 {
		font-size: 24px !important;
	}

	.adac-type-grid {
		grid-template-columns: 1fr;
	}

	.adac-type-card {
		min-height: 0;
	}

	.adac-benefit-grid {
		grid-template-columns: 1fr;
	}

	.adac-benefit-item,
	.adac-benefit-item:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid #d8e5f3;
		padding: 12px 2px;
	}

	.adac-benefit-item:last-child {
		border-bottom: 0;
	}

	.adac-delivery-grid {
		grid-template-columns: 1fr;
	}

	.adac-payment-options {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}

	.adac-credit-box {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px 18px;
	}

	.adac-credit-brand {
		padding-right: 0;
		border-right: 0;
		border-bottom: 1px solid rgba(68,78,129,.12);
		padding-bottom: 13px;
	}

	.adac-credit-brand img {
		max-width: 170px;
	}

	.adac-credit-points {
		grid-template-columns: 1fr;
	}

	.adac-credit-action {
		width: 100%;
	}

	.adac-credit-action .adac-btn {
		width: 100%;
	}

	.adac-help-box {
		flex-direction: column;
		align-items: stretch;
	}

	.adac-btn-whatsapp-dark {
		width: 100%;
	}
}
