/* ==========================================================================
   CONTACT US - Bloque de contacto con CTA
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Base Styles (Desktop First)
   ---------------------------------------------------------------------------- */

#contactUsSec {
	background-color: var(--color-base-blue);
	padding: var(--space-between-sections-small) 0;
	width: 100%;
}

#contactUsSec .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.contact-us-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0 auto;
	gap: 32px;
}

.contact-us-content .bubbleButtonLink,
.contact-us-content .bubbleButtonLink:focus,
.contact-us-content .bubbleButtonLink:hover {
	color: var(--text-white);
}

/* Título */
.contact-us__title {
	font-family: "ArgestaHeadline", serif;
	font-size: var(--title-size);
	line-height: var(--title-line-height);
	font-weight: 400;
	color: var(--color-base-beige);
}

.contact-us__title em {
	font-family: "ArgestaHeadline", serif;
	font-style: italic;
	font-weight: 400;
	display: block;
}

/* Descripción */
.contact-us__description {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--color-base-beige);
	max-width: 700px;
}

/* ----------------------------------------------------------------------------
   Responsive: Small Desktop (992px - 1920px)
   ---------------------------------------------------------------------------- */

@media screen and (max-width: 1920px) {
	/* .contact-us__title font-size controlado por variable --title-size */
}

/* ----------------------------------------------------------------------------
   Responsive: Tablet / Mobile (< 992px)
   ---------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
	#contactUsSec .container {
		padding: 0 24px;
	}

	.contact-us-content {
		gap: 20px;
	}

	.contact-us__title {
		margin-bottom: 24px;
	}

	.contact-us__description {
		font-size: 0.9375rem;
		margin-bottom: 40px;
	}
}

/* ----------------------------------------------------------------------------
   Responsive: Tablet Small / Mobile Large (< 768px)
   ---------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
	.contact-us-content {
		gap: 12px;
	}
}

/* ----------------------------------------------------------------------------
   Responsive: Mobile Small (< 576px)
   ---------------------------------------------------------------------------- */

@media screen and (max-width: 576px) {
	#contactUsSec .container {
		padding: 0 16px;
	}

	.contact-us-content {
		gap: 8px;
	}

	/* .contact-us__title font-size controlado por variable --title-size */
}
