/* Google Fonts - Oswald */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&display=swap');

/* Colores del diseño del cliente 1795
   Color primario (verde): #10AC84 - usado en .text-blue-500, .bg-blue-500
   Color secundario: (definir si existe)
   Color terciario (azul claro): #73a6bc - usado en botones principales
*/

/* .bg-blue-500{
	background-color: #10AC84 !important;
}
.text-blue-500{
	color: #10AC84
} */

/* Color terciario - Azul claro #73a6bc */
.bg-tertiary {
	background-color: #73a6bc !important;
}
.text-tertiary {
	color: #73a6bc !important;
}
@font-face {
	font-family: 'Montserrat';
	src: url('/styles/customers/1795/Montserrat/static/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500; /* Medium weight is typically 500 */
	font-style: normal;
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
}
.text-shadow {
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.74);
}

/* footer{
	background-color: #25517A;
} */
.tab-trigger {
	transition: all 0.3s ease;
	border: none;
	background: transparent;
	border-bottom: 3px solid transparent;
	cursor: pointer;
}

.tab-trigger:hover {
	color: #73a6bc;
	border-bottom-color: #73a6bc;
}

.tab-trigger.active {
	color: #73a6bc;
	font-weight: bold;
	border-bottom-color: #73a6bc;
}
.calendar {
	margin: 20px auto;
	max-width: 600px;
}
.calendar table {
	width: 100%;
}
.calendar th {
	text-align: center;
	font-weight: bold;
}
.calendar td {
	text-align: center;
}
.prev-month,
.next-month {
	cursor: pointer;
}
.current-month {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.gallery {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
}

.gallery-image {
	margin: 5px;
	overflow: hidden;
	transition: transform 0.5s;
}

.gallery-image:hover {
	cursor: pointer;
	transform: scale(1.1);
}

.image {
	width: 100%;
	height: 100%;
	transition: 1s;
}

/* popup */

.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 80%;
	max-width: 1600px;
	height: 90vh;
	max-height: 800px;
	background: rgba(0, 0, 0, 0.75);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 5;
	overflow: hidden;
	transition: 1s;
	opacity: 0;
}

.popup.active {
	display: flex;
	transition: display 3s;
	transform: translate(-50%, -50%) scale(0);
}

.popup.active {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.popup.active .close-btn,
.popup.active .image-name,
.popup.active .index,
.popup.active .large-image,
.popup.active .arrow-btn {
	opacity: 1;
	transition: opacity 0.5s;
	transition-delay: 1s;
}

.top-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: #000;
	color: #fff;
	text-align: center;
	line-height: 50px;
	font-weight: 300;
}

.image-name {
	opacity: 0;
}

.close-btn {
	opacity: 0;
	position: absolute;
	top: 12px;
	right: 20px;
	cursor: pointer;
}

.arrow-btn {
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0px;
	border-radius: 50%;
	border: none;
	background: none;
	cursor: pointer;
}

.left-arrow {
	left: 10px;
}

.right-arrow {
	right: 10px;
	transform: translateY(-50%) rotate(180deg);
}

.index {
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-size: 15px;
	font-weight: 100;
	color: white;
}

.large-image {
	margin-top: 5%;
	width: 80%;
	height: 80%;
	object-fit: contain;
	opacity: 0;
}

.bg-slider {
	background-color: #a9a327;
}
/* #mapapropFooter .powered{
    margin-right: 50px;
}
#mapapropFooter .derechos{
    margin-left: 50px;
} */

#mapapropFooter {
	display: none !important;
}

.none {
	display: none;
}

.bg-callToAction2 {
	background-color: #7aaaad;
}
nav {
	z-index: 9999 !important;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
}

/* Estilos para los links del nav - hover con línea negra debajo */
@media (min-width: 768px) {
	.nav-link {
		position: relative;
		display: inline-block;
		transition: color 0.3s ease, border-color 0.3s ease;
		border-bottom: 2px solid transparent !important;
		padding-bottom: 3px;
	}

	.nav-link:hover {
		color: black !important;
		border-bottom-color: black !important;
	}
}

/* Estilos para el banner - Fuente Oswald */
.banner-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 5.75rem;
	line-height: 1.2;
	letter-spacing: normal;
}

.banner-button {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

/* Estilos para el buscador flotante */
.searcher-tab {
	background-color: rgba(255, 255, 255, 0.5);
	color: #4b5563;
	cursor: pointer;
}

.searcher-tab:hover {
	background-color: rgba(255, 255, 255, 0.7);
}

.searcher-tab.active {
	background-color: rgba(255, 255, 255, 0.95);
	color: #000;
	font-weight: 600;
}

/* Estilos para tabs de operación en el panel de filtros */
.filter-operation-tab {
	background-color: #73a6bc;
	color: #ffffff;
	cursor: pointer;
	font-weight: 400;
}

.filter-operation-tab:hover {
	background-color: #5d8a9b;
}

.filter-operation-tab.active {
	background-color: #3b82f6;
	color: #ffffff;
	font-weight: 700;
}

/* Estilos para botones de modo de vista (Grilla, Lista, Mapa, etc) */
.view-mode-btn {
	background-color: #73a6bc;
	color: #ffffff;
	cursor: pointer;
}

.view-mode-btn:hover {
	background-color: #5d8a9b;
}

.view-mode-btn.active {
	background-color: #3b82f6;
	color: #ffffff;
	font-weight: 600;
}

/* Selectores agrupados con chevron negro */
.searcher-select-grouped {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 12px;
	padding-right: 2.5rem;
}

/* Estilos para Call to Action 2 (Tasaciones) */
.font-oswald {
	font-family: 'Oswald', sans-serif;
}

.cta-title {
	font-family: 'Oswald', sans-serif;
	color: #73C5D6; /* Color celeste/cian como en la imagen */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
	font-family: 'Oswald', sans-serif;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-btn-whatsapp {
	background-color: rgba(115, 115, 115, 0.7); /* Gris translúcido */
	backdrop-filter: blur(4px);
}

.cta-btn-whatsapp:hover {
	background-color: rgba(115, 115, 115, 0.85);
}

/* Estilos para radio buttons con apariencia de checkbox cuadrado */
input[type="radio"][name="type"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	background-color: white;
}

input[type="radio"][name="type"]:checked {
	background-color: #73a6bc;
	border-color: black;
}

/* Estilos para descripción truncada */
.description-truncated {
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.description-full {
	display: block;
}

.read-more-btn {
	color: #73a6bc;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 8px;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.read-more-btn:hover {
	color: #5d8a9b;
}

.read-more-btn svg {
	transition: transform 0.3s ease;
}

.read-more-btn.expanded svg {
	transform: rotate(180deg);
}
