p {
	font-family: Arial;
}
body {
	overflow: hidden;
	/*background: url("../img/mandalabackground.png") no-repeat center center fixed;*/
	background: url("../../img/mandalabackground.png") no-repeat center center fixed;
	background-size: cover;
	font-family: Arial, sans-serif;
}

hr {
	opacity: .3;
}
.contentLogin {
	/*background: #0fb0a7;*/
    height: calc(100vh - 16px);
    display: grid;
    align-items: center;
}

.gridLogin {
    position: relative;
    display: grid;
    grid-template-columns: 0.5fr 20px 1fr;
    /*max-width: 610px;*/
    width: fit-content;
    margin: 0 auto;
    background: #fff;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    grid-gap: 30px;
    max-height: 550px;
    overflow: auto;
}

.gridLogin img {
	width: 100%;
}


/*------------*/
/*---content product---*/
/*------------*/
.ctProd img {
    /* opacity: .7; */
    filter: grayscale(0);
    width: calc(100% - 60px);
    padding: 15px 30px;
}
.ctProd img:hover {
	/*background: #f9f9f9;*/
    border-radius: 5px;
    cursor: pointer;
    filter: grayscale(1);
}


/*------------*/
/*---select img---*/
/*------------*/
.select2-container {
	width: 100% !important;
}
.select2-selection {
	height: auto !important;
}
.select2-selection__rendered > div > p,
.select2-results__option > div > p {
	display: none;
}
.select2-selection__rendered > div > img,
.select2-results__option > div > img {
	/*width: calc(100% - 70px) !important;
    height: auto !important;*/
    width: auto !important;
    /* height: 70px !important; */
    padding: 5px;
}
.select2-results__option {
	border-bottom: 1px solid #f5f5f5;
}
.select2-search {
	display: none;
}
.select2-results__option[aria-selected="false"] {
	filter: grayscale(1);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	filter: grayscale(0);
    background-color: #d1efed;
    color: white;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: inherit;
}
.select2-container--default .select2-results > .select2-results__options {
	max-height: 250px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 37% !important;
}


/*------------*/
/*---scroll bar---*/
/*------------*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #898989;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


/*------------*/
/*---footer---*/
/*------------*/
.contentTextFt {
	max-width: 630px;
    margin: 0 auto;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.contentTextFt p {
	position: relative;
    float: right;
    margin: 15px;
    font-size: .7rem;
    color: #fff;
}
.contentTextFt p a {
	color: #fff;
}

.logoUnidos {
    width: 100%;
    max-width: 160px;
    position: absolute;
    top: 3%;
    right: 5%;
}

.info-panel {
    width: fit-content;
    max-width: min(620px, calc(100% - 40px));
    margin: 0 auto 32px;
    padding: 14px 24px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
}

.info-panel--legal {
    background: rgba(209, 239, 237, 0.92);
    border: 1px solid rgba(15, 176, 167, 0.28);
    color: #245f5b;
    box-shadow: 0 8px 20px rgba(36, 95, 91, 0.12);
}

@media (max-width: 600px) {
	body {
		overflow-y: auto;
		height: calc(100vh - 16px);
	}
	.gridLogin > div:nth-child(2) {
		display: none;
	}
	.contentLogin {
		height: 100%;
	}
	.gridLogin {
	    grid-template-columns: 1fr;
        margin: 80px 20px 7px;
	}
	.contentTextFt {
		position: relative;
	}
    .info-panel {
        margin: 80px 20px 24px;
        width: auto;
    }
}

/* --- grilla 3x3 para ambientes --- */
#ambientes {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 20px; /* espacio entre items */
    justify-items: center; /* centra cada tarjeta */
}

/* tarjeta estilo */
#ambientes a {
    text-decoration: none;
}

.card-option {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1),
                0px 1px 2px rgba(0,0,0,0.08);
    padding: 10px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 160px;
}

.card-option:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.card-option img {
    max-width: 160px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}

.card-option h6 {
    font-size: 14px;
    margin: 0;
    color: #333;
}