h1 {
	font-size: 40px;
	color: #666;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 60px;
}

/* banner */

section.banner {
    margin-top: 79px;
    width: 100%;
    background-color: #f0f0f0;
    position: relative;
    padding: 0px;
    max-height: 800px;
}

.banner .img-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.banner .img-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 8%;
	height: 100%;
	background: linear-gradient(to right,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0) 100%
	);
	z-index: 2;
}

.banner .img-container::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 8%;
	height: 100%;
	background: linear-gradient(to left,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0) 100%
	);
	z-index: 2;
}

.banner img, .banner picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* banner end */

/* dealers */

.dealers-services-container {
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.dealers-services-container h1 {
	margin: 0;
	opacity: 0.5;
	transition: opacity 0.3s ease-in-out;
	cursor: pointer;
}

.dealers-services-container h1:hover {
	opacity: 1;
}

.dealers-services-container h1.active {
	opacity: 1;
}

.dealers-services-container .divider {
	width: 2px;
	height: 50px;
	background-color: #E40521;
	margin: 0 20px;
}

.content {
	width: 50%;
	height: 100%;
	min-height: 800px;
}

.content.left {
	padding: 30px;
}

.content:not(.left) {
    flex: 1;
    height: 100%;
}

/* Nuevos estilos para el select y lista de concesionarios */
.department-filter {
    margin-bottom: 20px;
}

.department-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #666;
    appearance: none;
    background-image: url('../../images/svg/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 16px;
	font-size: 1.25rem;
}


.dealers-list {
    background: #f8f8f8;
    border-radius: 5px;
    overflow: visible;
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
	position: relative;
}

.department-title {
    margin-bottom: 20px;
}

.department-title h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.department-separator {
    height: 2px;
    background-color: #E40521;
    width: 100%;
}

.dealer-item {
    margin-bottom: 30px;
    border: none;
    height: auto;
}

.dealer-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.dealer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-row i {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-row p, .contact-row a {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.location-icon {
    background-image: url('../../images/svg/map-point-gray.svg');
}

.email-icon {
    background-image: url('../../images/svg/email-gray.svg');
}

.phone-grey {
    background-image: url('../../images/svg/phone-gray.svg');
}

.calendar-grey {
    background-image: url('../../images/svg/calendar-gray.svg');
}

.map-grey {
    background-image: url('../../images/svg/location-gray.svg');
}

.map-link {
    color: #666;
    text-decoration: none;
    cursor: pointer;
}

.map-link:hover {
    color: #E40521;
}

/* Mantener estilos existentes del loader */
.dealers-list .loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.dealers-list .loader:before {
	content: '';
	width: 50px;
	height: 50px;
	border: 5px solid #fff;
	border-top-color: #E40521;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* google map */
#map {
    width: 100%;
    height: 100%;
    min-height: 800px;
}

.map-info {
    padding: 15px;
    max-width: 300px;
    font-family: 'HarmonyOS Sans';
}

.map-info__header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EBEBEB;
}

.map-info__title {
    font-size: 16px;
    font-weight: 600;
    color: #3C3C3B;
    margin: 0;
}

.map-info__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-info__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.map-info__item i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.map-info__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #666666;
}

/* google map end */

.button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 100px;
}

.button {
	background-color: #E40521;
	color: #fff;
	padding: 16px 120px;
	border-radius: 30px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.125rem;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	border: 2px solid #E40521;
	font-weight: 500;
}

.button:hover {
	background-color: #fff;
	color: #E40521;
	border: 2px solid #E40521;
}

/* Tablet responsive */
@media (max-width: 1024px) {

	.banner .img-container::before,
	.banner .img-container::after {
		width: 10%;
	}
}

/* Mobile responsive */
@media (max-width: 768px) {
	h1 {
		font-size: 1.75rem;
	}

	.banner .img-container::before,
	.banner .img-container::after {
		display: none;
	}

	.container {
        padding: 0 0px;
    }

	.button {
        padding: 16px 30px;
		font-size: 1rem;
    }

	.content {
		width: 100%;
		min-height: unset;
	}

	.content.left {
		padding: 20px;
	}

	#map {
		width: 100%;
		height: 100%;
		min-height: 500px;
	}
}

/* Small mobile responsive */
@media (max-width: 599px) {

	.dealers-services-container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.dealers-services-container .divider {
		display: none;
	}

	.banner img {
		object-position: center center;
	}
}

@media (max-width: 480px) {



}


