/**
 * Cotizador page styles.
 */

.heldel-cotizador-page,
.page-template-template-cotizador #primary {
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.page-template-template-cotizador .site-content > .ast-container,
.heldel-cotizador-page .site-content > .ast-container {
	max-width: 100%;
	padding: 0;
}

.page-template-template-cotizador .site-main,
.heldel-cotizador-page .site-main {
	margin: 0;
	padding: 0;
}

.heldel-cot-hero {
	position: relative;
	min-height: 45vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, var(--heldel-primary-blue), var(--heldel-dark-teal));
	background-size: cover;
	background-position: center;
}

.heldel-cot-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 63, 122, 0.82);
	pointer-events: none;
}

.heldel-cot-hero__content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 1.5rem;
	padding: 2rem 2.25rem;
	color: #fff;
	background: var(--heldel-primary-blue);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.heldel-cot-hero__content h1,
.heldel-cot-hero__content p {
	color: #fff;
}

.heldel-cot-hero__content h1 {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.heldel-cot-hero__content p {
	font-size: clamp(1rem, 2vw, 1.15rem);
	margin: 0;
	line-height: 1.6;
}

.heldel-cot-intro {
	padding: 2.5rem 1.5rem;
	background: #f5f8fa;
	text-align: center;
}

.heldel-cot-intro p {
	max-width: 800px;
	margin: 0 auto;
	color: #444;
	line-height: 1.7;
}

.heldel-cot-main {
	padding: 4rem 0;
	background: var(--heldel-white);
}

.heldel-cot-main__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
	align-items: start;
}

.heldel-cot-form {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 30px rgba(0, 63, 122, 0.08);
}

.heldel-cot-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.heldel-cot-field--full {
	grid-column: 1 / -1;
}

.heldel-cot-field label {
	display: block;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--heldel-primary-blue);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.heldel-cot-field input:not([type="checkbox"]),
.heldel-cot-field select,
.heldel-cot-field textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	min-height: 3rem;
	box-sizing: border-box;
	padding: 0.7rem 1rem;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.4;
	color: #333;
	background-color: #fff;
	transition: border-color 0.2s;
}

.heldel-cot-field select {
	min-height: 48px;
	height: auto;
	padding: 12px 2.75rem 12px 1rem;
	line-height: 1.25;
	appearance: auto;
	-webkit-appearance: menulist;
	cursor: pointer;
}

.heldel-cot-field input:not([type="checkbox"]) {
	min-height: 3rem;
	height: 3rem;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 3rem;
}

.heldel-cot-field textarea {
	min-height: 6.5rem;
	height: auto;
	line-height: 1.5;
	padding: 0.85rem 1rem;
	resize: vertical;
}

.heldel-cot-field input:not([type="checkbox"]):focus,
.heldel-cot-field select:focus,
.heldel-cot-field textarea:focus {
	outline: none;
	border-color: var(--heldel-teal);
	box-shadow: 0 0 0 3px rgba(0, 146, 143, 0.15);
}

.heldel-cot-privacy {
	margin: 1.25rem 0;
	padding: 1rem 1.1rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}

.heldel-cot-check {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #555;
	cursor: pointer;
}

.heldel-cot-check input[type="checkbox"] {
	width: auto;
	min-width: 18px;
	height: 18px;
	margin-top: 0.15rem;
	flex-shrink: 0;
	accent-color: var(--heldel-teal);
}

.heldel-cot-check a {
	color: var(--heldel-primary-blue);
	text-decoration: underline;
}

.heldel-cot-btn {
	display: block;
	width: 100%;
	margin-top: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: 6px;
	font-family: inherit;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.heldel-cot-btn--gold {
	background: var(--heldel-primary-blue);
	color: var(--heldel-white);
}

.heldel-cot-btn--gold:hover {
	background: var(--heldel-teal);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 146, 143, 0.35);
}

.heldel-cot-steps {
	background: var(--heldel-primary-blue);
	color: var(--heldel-white);
	border-radius: 12px;
	padding: 2rem;
}

.heldel-cot-steps h2 {
	margin: 0 0 1.5rem;
	font-size: 1.4rem;
	color: var(--heldel-teal);
}

.heldel-cot-steps ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.heldel-cot-steps li {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.heldel-cot-step__num {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--heldel-teal);
	color: var(--heldel-white);
	border-radius: 50%;
	font-weight: 700;
	font-size: 0.85rem;
}

.heldel-cot-steps h3 {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	color: var(--heldel-teal);
}

.heldel-cot-steps p {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.85;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.heldel-cot-main__inner {
		grid-template-columns: 1fr;
	}

	.heldel-cot-form__grid {
		grid-template-columns: 1fr;
	}
}
