/**
 * Página Quiénes Somos - Safety Garage
 */

/* ========== HERO ========== */
.about-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 50%, #122d5c 100%);
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(192, 22, 23, 0.08) 0%, transparent 60%);
	z-index: 1;
}

.about-hero__container {
	position: relative;
	z-index: 2;
	max-width: var(--sg-inner-max, 1200px);
	margin: 0 auto;
	padding: 5rem 1.5rem 4rem;
	text-align: center;
}

.about-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
}

.about-hero__title {
	color: var(--sg-white, #fff);
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.05;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.about-hero__subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.about-hero__visual {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.about-hero__circle {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero__circle--1 {
	width: 400px;
	height: 400px;
	top: -100px;
	right: -100px;
}

.about-hero__circle--2 {
	width: 250px;
	height: 250px;
	bottom: -60px;
	left: -60px;
}

.about-hero__circle--3 {
	width: 150px;
	height: 150px;
	top: 50%;
	left: 60%;
	background: rgba(192, 22, 23, 0.04);
}

/* ========== INTRODUCCIÓN ========== */
.about-intro {
	background: #fff;
	padding: 5rem 1.5rem;
}

.about-intro__container {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 4rem;
	align-items: start;
}

.about-intro__line {
	width: 80px;
	height: 4px;
	background: var(--sg-red, #c01617);
	border-radius: 2px;
	margin-bottom: 1.5rem;
}

.about-intro__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-style: italic;
	color: var(--sg-dark, #122d5c);
	line-height: 1.15;
	margin: 0 0 1.5rem;
}

.about-intro__text p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #4a5568;
	margin: 0 0 1rem;
}

.about-intro__text strong {
	color: var(--sg-dark, #122d5c);
}

.about-intro__stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-top: 2rem;
}

.about-stat {
	background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
}

.about-stat__number {
	display: block;
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--sg-dark, #122d5c);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.about-stat__label {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #718096;
}

/* ========== ESPECIALIDADES ========== */
.about-specialties {
	background: #f9fafb;
	padding: 5rem 1.5rem;
}

.about-specialties__container {
	max-width: 1100px;
	margin: 0 auto;
}

.about-specialties__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3.5rem;
}

.about-specialties__line {
	width: 80px;
	height: 4px;
	background: var(--sg-red, #c01617);
	border-radius: 2px;
	margin: 0 auto 1.5rem;
}

.about-specialties__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-style: italic;
	color: var(--sg-dark, #122d5c);
	line-height: 1.15;
	margin: 0 0 1rem;
}

.about-specialties__subtitle {
	font-size: 1.1rem;
	color: #4a5568;
	margin: 0;
}

.about-specialties__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.about-specialty-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-top: 4px solid var(--sg-dark, #122d5c);
}

.about-specialty-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.about-specialty-card__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e8eef4 0%, #dde5ed 100%);
	border-radius: 14px;
	color: var(--sg-dark, #122d5c);
}

.about-specialty-card__icon svg {
	width: 28px;
	height: 28px;
}

.about-specialty-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--sg-dark, #122d5c);
	margin: 0 0 0.5rem;
}

.about-specialty-card__desc {
	font-size: 0.9rem;
	color: #718096;
	margin: 0;
}

.about-specialties__note {
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 700px;
	margin: 3rem auto 0;
	padding: 1.5rem 2rem;
	background: #fff;
	border-radius: 12px;
	border-left: 4px solid var(--sg-red, #c01617);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about-specialties__note svg {
	flex-shrink: 0;
}

.about-specialties__note p {
	font-size: 1rem;
	color: #4a5568;
	margin: 0;
	line-height: 1.6;
}

/* ========== RESPALDO INTERNACIONAL ========== */
.about-backing {
	background: #fff;
	padding: 5rem 1.5rem;
}

.about-backing__container {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 4rem;
	align-items: center;
}

.about-backing__line {
	width: 80px;
	height: 4px;
	background: var(--sg-red, #c01617);
	border-radius: 2px;
	margin-bottom: 1.5rem;
}

.about-backing__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-style: italic;
	color: var(--sg-dark, #122d5c);
	line-height: 1.15;
	margin: 0 0 1.5rem;
}

.about-backing__content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #4a5568;
	margin: 0 0 1rem;
}

.about-backing__visual {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about-backing__icon-box {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.75rem 2rem;
	background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
	border-radius: 16px;
}

.about-backing__icon-box svg {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	color: var(--sg-dark, #122d5c);
}

.about-backing__icon-box span {
	font-size: 1rem;
	font-weight: 700;
	color: var(--sg-dark, #122d5c);
}

/* ========== COMPROMISO ========== */
.about-commitment {
	background: linear-gradient(180deg, #f0f4f8 0%, #e4eaf0 100%);
	padding: 5rem 1.5rem;
}

.about-commitment__container {
	max-width: 1100px;
	margin: 0 auto;
}

.about-commitment__header {
	text-align: center;
	margin-bottom: 3rem;
}

.about-commitment__line {
	width: 80px;
	height: 4px;
	background: var(--sg-red, #c01617);
	border-radius: 2px;
	margin: 0 auto 1.5rem;
}

.about-commitment__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-style: italic;
	color: var(--sg-dark, #122d5c);
	line-height: 1.15;
	margin: 0;
}

.about-commitment__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.25rem;
	max-width: 900px;
	margin: 0 auto;
}

.about-commitment-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem 1.75rem;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-commitment-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-commitment-item__check {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(192, 22, 23, 0.1) 0%, rgba(192, 22, 23, 0.05) 100%);
	border-radius: 10px;
	color: var(--sg-red, #c01617);
}

.about-commitment-item__text {
	font-size: 1rem;
	color: #2d3748;
	line-height: 1.5;
	margin: 0;
	font-weight: 500;
	padding-top: 0.4rem;
}

.about-commitment__note {
	text-align: center;
	max-width: 700px;
	margin: 2.5rem auto 0;
	font-size: 1.05rem;
	color: #4a5568;
	line-height: 1.7;
}

/* ========== CLIENTES ========== */
.about-clients {
	background: #fff;
	padding: 5rem 1.5rem;
}

.about-clients__container {
	max-width: 1100px;
	margin: 0 auto;
}

.about-clients__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.about-clients__line {
	width: 80px;
	height: 4px;
	background: var(--sg-red, #c01617);
	border-radius: 2px;
	margin: 0 auto 1.5rem;
}

.about-clients__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-style: italic;
	color: var(--sg-dark, #122d5c);
	line-height: 1.15;
	margin: 0 0 1rem;
}

.about-clients__subtitle {
	font-size: 1.05rem;
	color: #4a5568;
	margin: 0;
	line-height: 1.7;
}

.about-clients__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.about-client-card {
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
	border-radius: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-client-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.about-client-card__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 16px;
	color: var(--sg-dark, #122d5c);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-client-card__icon svg {
	width: 30px;
	height: 30px;
}

.about-client-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--sg-dark, #122d5c);
	margin: 0 0 0.35rem;
}

.about-client-card__desc {
	font-size: 0.85rem;
	color: #718096;
	margin: 0;
}

/* ========== CTA FINAL ========== */
.about-cta {
	background: var(--sg-dark, #122d5c);
	padding: 5rem 1.5rem;
}

.about-cta__container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-cta__title {
	color: var(--sg-white, #fff);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-style: italic;
	margin: 0 0 1.25rem;
}

.about-cta__text {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	line-height: 1.7;
	margin: 0 0 0.75rem;
}

.about-cta__tagline {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.15rem;
	line-height: 1.6;
	margin: 0 0 2.5rem;
}

.about-cta__tagline strong {
	color: #fff;
}

.about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.about-cta__actions .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn--secondary-dark {
	background: transparent;
	color: var(--sg-white, #fff) !important;
	border-color: rgba(255, 255, 255, 0.3);
}

.btn--secondary-dark:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
	.about-intro__container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.about-intro__stats {
		flex-direction: row;
		padding-top: 0;
	}

	.about-stat {
		flex: 1;
	}

	.about-specialties__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-backing__container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.about-backing__visual {
		flex-direction: row;
	}

	.about-backing__icon-box {
		flex: 1;
	}

	.about-clients__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.about-hero {
		min-height: 300px;
	}

	.about-hero__container {
		padding: 4rem 1.25rem 3rem;
	}

	.about-intro,
	.about-specialties,
	.about-backing,
	.about-commitment,
	.about-clients,
	.about-cta {
		padding: 3.5rem 1.25rem;
	}

	.about-intro__stats {
		flex-direction: column;
	}

	.about-specialties__grid {
		grid-template-columns: 1fr;
	}

	.about-specialties__note {
		flex-direction: column;
		text-align: center;
	}

	.about-backing__visual {
		flex-direction: column;
	}

	.about-commitment__grid {
		grid-template-columns: 1fr;
	}

	.about-clients__grid {
		grid-template-columns: 1fr;
	}

	.about-cta__actions {
		flex-direction: column;
		align-items: center;
	}
}
