/* Hero Section */
.hero-main {
	margin-top: 3.7rem;
}

.hero-content {
	position: relative;
	overflow: hidden;

	h1,
	p {
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	}
	.mobilehero {
		padding-top: 15em !important;
	}
}

.hero-content::before {
	content: "";
	position: absolute;
	top: 0;
	right: 50%;
	bottom: 0;
	left: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 136, 220, 0.5) 0%,
		rgba(220, 0, 50, 0) 100%
	);
	z-index: 1;
}

.hero-content .container {
	position: relative;
	z-index: 2;
}

/* Featured Services */
.featured-services .card {
	transition: transform 0.3s ease;
}

.featured-services .card:hover {
	transform: translateY(-5px);
}

.featured-services .card i {
	color: #169ca3;
}

/* Advantages Section */
.advantages i {
	color: #169ca3;
}

/* Contact Section */
.contact-section {
	background-color: #f8f9fa;
}

/* Utility Classes */
.min-vh-75 {
	min-height: 75vh;
}

.text-primary {
	color: #169ca3 !important;
}

.btn-outline-primary {
	color: #0079dc;
	border-color: #0088dc;
}

.btn-primary {
	background-color: #169ca3;
	border-color: #169ca3;
	color: white;
}

.btn-outline-primary:hover {
	background-color: #169ca3;
	border-color: #169ca3;
}

.btn-info {
	background-color: #017c83;
	border-color: #017c83;
	color: white;
}

.btn-info:hover {
	background-color: #169ca3;
	border-color: #169ca3;
	color: white !important;
}

/* Header Styles */
.top-bar {
	font-size: 0.9rem;
}

.top-bar a:hover {
	color: rgba(255, 255, 255, 0.8) !important;
}

.navbar {
	padding: 0.5rem 0;
	transition: all 0.3s ease;
}

.navbar-brand img {
	max-height: 50px;
	width: auto;
}

.navbar-nav .nav-link {
	padding: 1rem 1.2rem !important;
	font-weight: 500;
	color: #333;
}

.navbar-nav .nav-link:hover {
	color: var(--bs-primary);
}

/* Sticky Header */
.navbar.sticky {
	padding: 0.3rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
.offcanvas {
	max-width: 300px;
}

.offcanvas-header {
	background: #f8f9fa;
}

.offcanvas .navbar-nav .nav-link {
	padding: 0.8rem 0 !important;
	border-bottom: 1px solid #eee;
}

.offcanvas .navbar-nav .dropdown-menu {
	border: none;
	background: #f8f9fa;
}

/* Header Spacing */
.header-space {
	height: 2.2em;
}

/* Dropdown Styles */
.dropdown-menu {
	border: none;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
	padding: 0.7rem 1.5rem;
	font-weight: 500;
}

.dropdown-item:hover {
	background-color: #f8f9fa;
	color: var(--bs-primary);
}

/* Call Button Animation */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(35, 156, 221, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(40, 144, 167, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(40, 95, 167, 0);
	}
}

.btn-success {
	animation: pulse 2s infinite;
}

/* Servicios Section */
.services-section .card {
	transition: transform 0.3s ease;
}

.services-section .card:hover {
	transform: translateY(-5px);
}

.services-section .card-img-top {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.img-brand {
	height: auto;
	max-height: 2em;
	width: auto;
	object-fit: contain;
}

.services-section .card-img-top2 {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-section .card-img-top img {
	max-height: 150px;
	width: auto;
	object-fit: contain;
}

/* Coverage Section */
.coverage-section .btn-outline-dark {
	transition: all 0.3s ease;
	font-weight: 500;
}

.coverage-section .btn-outline-dark:hover {
	background-color: #f8f9fa;
	color: #0d6efd;
	border-color: #0d6efd;
}

/* Footer Styles */
.site-footer {
	background-color: #1a1a1a;
}

.footer-contact a:hover {
	color: #f8f9fa !important;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #f8f9fa;
	padding-left: 5px;
}

.site-footer hr {
	border-color: rgba(255, 255, 255, 0.1);
}

/* Disclaimer Section */
.disclaimer {
	background-color: #f8f9fa;
}

.disclaimer p {
	font-size: 0.85rem;
	line-height: 1.4;
}

/* Footer Bottom Links */
.site-footer a {
	transition: opacity 0.3s ease;
}

.site-footer a:hover {
	opacity: 0.8;
}

.h6 {
	font-size: 1rem !important;
}

/* Estilos del formulario de contacto */
.contact-form {
	max-width: 80%;
	margin: 0 auto;
}

.contact-form .form-control {
	padding: 0.8rem 1rem;
	border: 1px solid #ced4da;
	border-radius: 4px;
}

.contact-form .form-control:focus {
	border-color: #358edc;
	box-shadow: 0 0 0 0.25rem rgba(53, 123, 220, 0.25);
}

.contact-form .form-label {
	font-size: 0.9rem;
	color: #495057;
	margin-bottom: 0.5rem;
}

.contact-form .btn-danger {
	background-color: #169ca3;
	border: none;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-form .btn-danger:hover {
	background-color: #169ca3;
}

.navbar {
	margin-top: -2px !important;
}

.finance-info {
	background-color: #f8f9fa;
	border-left: 4px solid #0d6efd;
}

.form-check-label {
	color: #6c757d;
}

.form-check-input:checked {
	background-color: #356fdc;
	border-color: #356fdc;
}

/* Estilos de validación */
.was-validated .form-control:invalid {
	border-color: #356fdc;
}

.was-validated .form-control:valid {
	border-color: #198754;
}

/* Mensajes de respuesta */
#formMessages .alert {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 4px;
}

.entry-content {
	/* Estilos generales */
	word-wrap: break-word;
}

.entry-content > * {
	margin-bottom: 1.5rem;
}

/* Estilos para bloques de Gutenberg */
.entry-content .wp-block-image {
	margin-bottom: 2rem;
}

.entry-content .wp-block-image img {
	max-width: 100%;
	height: auto;
}

/* Estilos para contenido heredado */
.entry-content img {
	max-width: 100%;
	height: auto;
}

.entry-content iframe {
	max-width: 100%;
}

/* Estilos para listas */
.entry-content ul,
.entry-content ol {
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}

/* Estilos para tablas */
.entry-content table {
	width: 100%;
	margin-bottom: 1.5rem;
	border-collapse: collapse;
}

.entry-content table td,
.entry-content table th {
	padding: 0.75rem;
	border: 1px solid #dee2e6;
}

.banner-image-container {
	height: 70vh;
	overflow: hidden;
}

.image-hero-cpt {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	max-height: 100%;
	object-position: center top;
	margin-top: 1.1em;
}

.text-content-hero-repair {
	h1 {
		font-size: 2rem;
	}
}

.hero-mobile-item {
	margin-top: -7em !important;
	margin-bottom: -1.5em !important;

	img {
		position: relative;
		z-index: 9;
		max-height: 180px;
		width: auto;
		object-fit: contain;
		object-position: center;
	}
}

.padding-content-all {
	padding-top: 3em;
	padding-bottom: 3em;
}

/* Estilos responsivos */
@media (max-width: 768px) {
	.entry-content {
		padding: 0 15px;
	}
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.fs-5 {
		font-size: 1rem !important;
	}

	.hero-content {
		min-height: 400px !important;

		h1 {
			font-size: 1.5rem;
		}

		p {
			font-size: 1rem;
		}
		.mobilehero {
			padding-top: 10em !important;
		}

		.py-5 {
			padding-bottom: 0.5em !important;
		}
	}

	.hero-main {
		margin-top: 1.7rem !important;
	}

	.navbar-brand img {
		max-height: 40px;
	}

	.header-space {
		height: 2.2em;
	}

	.hero-cta .btn {
		width: 100%;
		margin-bottom: 1rem;
	}
	.services-section .card-img-top {
		height: 150px;
	}

	.services-section .card-img-top img {
		max-height: 100px;
	}
	.site-footer {
		padding-bottom: 4rem !important;
	}

	.contact-form {
		padding: 1rem;
	}
	.hero-content {
		min-height: 60vh !important;
	}
	.min-vh-75 {
		height: 60vh !important;
		min-height: 60vh !important;
	}
}

.fixed-top {
	a {
		color: #fff !important;
	}
	.dropdown-menu {
		a {
			color: #282828 !important;

			&:hover {
				color: #017c83 !important;
			}
		}
	}
}
.card-repair {
	h3 {
		font-size: 1rem;
	}
}

.card-brand {
	h2 {
		font-size: 1.2rem !important;
	}
	p {
		font-size: 0.9rem !important;
	}
	.img-brand {
		height: auto;
		max-height: 1em !important;
	}
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.card-repair {
		.card-body {
			padding: 0.2rem;
		}
		.text-h3 {
			font-size: 0.8rem !important;
		}
	}
	.header-slider {
		margin-top: 25px !important;
		background: #dc3545;
	}
	.offcanvas {
		color: #282828 !important;
		a {
			color: #282828 !important;
		}
		span {
			color: #282828 !important;
		}
		h5 {
			color: #282828 !important;
		}
	}
	.card-brand {
		h2 {
			font-size: 0.9rem !important;
		}
		p {
			font-size: 0.8rem !important;
		}
	}
	.header-space {
		height: 55px;
	}
	.hero-section {
		.img-fluid {
			max-width: 50%;
		}
	}
	.joinchat__button {
		bottom: 40px !important;
	}
	.banner-image-container {
		height: 40vh;
		overflow: hidden;
	}
	.text-content-hero-repair {
		h1 {
			font-size: 1.2rem !important;
			margin-bottom: 0.2rem !important;
		}
		a {
			font-size: 1rem !important;
		}
	}
	.image-hero-cpt {
		margin-top: -5px;
	}
	.padding-content-all {
		padding-top: 1em;
		padding-bottom: 3em;
	}
}

.single-header {
	padding-top: 8em !important;
}

.bg-dark {
	background-color: #212529 !important;
}

.bg-success {
	background: #017c83 !important;
}
