/**
 * CTA Contact Section - Safety Garage
 */

.cta-contact {
	position: relative;
	padding: 3.5rem 1.5rem;
	background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 50%, #122d5c 100%);
	overflow: hidden;
}

/* Imagen de fondo opcional */
.cta-contact[style*="--cta-bg-image"] {
	background-image: var(--cta-bg-image);
	background-size: cover;
	background-position: center right;
}

/* Overlay con gradiente */
.cta-contact__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(13, 31, 60, 0.97) 0%,
		rgba(18, 45, 92, 0.92) 40%,
		rgba(26, 58, 110, 0.85) 65%,
		rgba(18, 45, 92, 0.75) 100%
	);
	z-index: 1;
}

.cta-contact__container {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.cta-contact__content {
	text-align: center;
}

/* Badge */
.cta-contact__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	color: #4ade80;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(74, 222, 128, 0.2);
}

.cta-contact__badge svg {
	flex-shrink: 0;
}

/* Título */
.cta-contact__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.2;
}

/* Subtítulo */
.cta-contact__subtitle {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 550px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

/* Opciones de contacto */
.cta-contact__options {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.cta-contact__option {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.cta-contact__option:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.cta-contact__option-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cta-contact__option-icon svg {
	width: 24px;
	height: 24px;
}

.cta-contact__option-icon--phone {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.cta-contact__option-icon--whatsapp {
	background: #25D366;
	color: #fff;
}

.cta-contact__option-info {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.cta-contact__option-number {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
}

.cta-contact__option-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
}

.cta-contact__divider {
	width: 1px;
	height: 50px;
	background: rgba(255, 255, 255, 0.15);
}

/* Botón CTA */
.cta-contact__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--sg-red, #c01617);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	padding: 1rem 2.25rem;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(192, 22, 23, 0.4);
	transition: all 0.3s ease;
}

.cta-contact__btn:hover {
	background: var(--sg-red-hover, #a81213);
	transform: translateY(-2px);
	box-shadow: 0 6px 28px rgba(192, 22, 23, 0.5);
}

.cta-contact__btn svg {
	transition: transform 0.3s ease;
}

.cta-contact__btn:hover svg {
	transform: translateX(4px);
}

/* Garantía */
.cta-contact__guarantee {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	margin: 0;
}

.cta-contact__guarantee svg {
	color: rgba(255, 255, 255, 0.4);
}

/* Decoración visual (círculos) */
.cta-contact__visual {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	overflow: hidden;
}

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

.cta-contact__circle--1 {
	width: 400px;
	height: 400px;
	top: -100px;
	right: -100px;
	background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.cta-contact__circle--2 {
	width: 300px;
	height: 300px;
	bottom: -80px;
	left: -80px;
	background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
}

.cta-contact__circle--3 {
	width: 150px;
	height: 150px;
	top: 50%;
	right: 15%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(192, 22, 23, 0.1) 0%, transparent 70%);
}

/* Responsive */
@media (max-width: 768px) {
	.cta-contact {
		padding: 4rem 1rem;
	}

	.cta-contact__options {
		flex-direction: column;
		gap: 1rem;
	}

	.cta-contact__option {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.cta-contact__divider {
		display: none;
	}

	.cta-contact__btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}
