@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.font-size-1{
	font-size:1em !important;
}


.icono-footer {
    margin-left: 10px;
    display: inline-block;
    width: 20px; /* Asegura que ambos íconos ocupen el mismo espacio */
    text-align: center;
  }


.btn-descargar{
	font-size:1em;
	text-decoration:none;
	font-weight:normal;
	color:#000000;
}

.btn-descargar:hover{
	text-decoration:underline;
	color:#007AB7;
    
}




.btn-consultar{
background-color:#007AB7;	
color:#FFFFFF;
font-size:1.675em;
}

.btn-consultar:hover{
    background-color:#FFFFFF;
	 color:#007AB7;
	 border: 1px solid #007AB7;
}


.titulo-con-barra {
  position: relative;
  color: #666666;
  font-size: 1.675em;
  padding-left: 30px; /* espacio para la barra */
  margin-bottom: 1rem;
}

.titulo-con-barra::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 10px;
  height: 1.2em;
  border-left: 4px solid #007AB7;
}




.swiper-slide.swiper-destacadas {
    border: 1px solid #CCCCCC;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    transition: box-shadow 0.3s ease-in-out !important;
}

.swiper-slide.swiper-destacadas:hover {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3) !important;
}
/* Estilos generales */
.swiper-slide {
    border: 1px solid #CCCCCC;
    /*box-shadow: 5px 5px 5px #eeeeee;*/
    overflow: hidden;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease-in-out;
}
.swiper-slide:hover .btn_more_info{
     background-color:#FFFFFF;
	 color:#F79938;
	 border: 1px solid #F79938;
}


/* Imagen superior con bordes redondeados */
.swiper-slide img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}




.promo-content {
    padding: 15px;
}

.promo-title {
    color: #333;
    font-weight: bolder;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.promo-subtitle {
    color: #666;
    font-size: 1em;
    margin-bottom: 5px;
}

.promo-description {
    color: #666;
    font-size: 0.9em;
}




.breadcrumb-item a{
	color:#000000 !important;
}

.btn_more_info{
    position: absolute;
    bottom: 10px;
    right: 10px;
	padding:5px;
    padding-left:10px;
    background-color:#F79938;
    color: white;
	border-radius: 5px;
	font-size: 1em;
    transition: background-color 0.5s ease, color 0.5s ease; 
	width:7em;
}
.btn_more_info:hover {
     background-color:#FFFFFF;
	 color:#F79938;
	 border: 1px solid #F79938;
}


.btn_contacto{
	padding:5px;
    padding-left:10px;
    background-color:#F79938;
    color: white;
	border-radius: 5px;
	font-size: 1em;
    transition: background-color 0.5s ease, color 0.5s ease; 
	width:7em;
}
.btn_contacto:hover {
     background-color:#FFFFFF;
	 color:#F79938;
	 border: 1px solid #F79938;
}



.__slide-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top; /* Alinea la imagen en la parte superior */
    width: 100%;
    height: 100%;
}

/* Contenedor de la imagen con posición relativa */
.image-container-internas-xs {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}



/* Contenedor de la imagen con posición relativa */
.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Degradado oscuro sobre la imagen */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); /* Degradado de negro a transparente */
    z-index: 1;
}


.title-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: white;
}

.title-overlay h2,
.title-overlay h3 {
    position: static;
    margin: 0;
    font-weight: normal;
}

.title-overlay h2 {
    font-size: 1.785em !important;
}

.title-overlay h3 {
    font-size: 1.275em !important;
    margin-top: 5px;
}




/* Estilo de la imagen dentro del contenedor */
.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease; /* Animación suave */
}

/* Efecto de zoom al pasar el mouse */
.image-container:hover img {
    transform: scale(1.1); /* Zoom al 110% */
}

.image-container:hover::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0)); /* Intensificar degradado */
}

/* Transiciones suaves en los elementos flotantes */
.image-container:hover .title-overlay,
.image-container:hover .price-overlay {
    transition: transform 0.5s ease; /* Transición suave */
}



/* Hacer que las tarjetas tengan el mismo tamaño */
.card {
    height: 100%;
    overflow: hidden; /* Evita que el contenido se desborde */
    position: relative; /* Asegura el control sobre los elementos hijos */
}

/* Efecto de escala en las imágenes al pasar el mouse */
.card-img-top {
    min-height: 200px; /* Define el alto máximo de la imagen */
	max-height: 200px; /* Define el alto máximo de la imagen */
    object-fit: cover; /* Recorta la imagen para ajustarse al contenedor */
    width: 100%; /* Asegura que la imagen ocupe todo el ancho de la tarjeta */
    transition: transform 0.3s ease;
}

/* Mantener la imagen dentro del contenedor al hacer hover */
.card-img-top:hover {
    transform: scale(1.1);
}

/* Evitar que el contenido de la tarjeta se desborde */
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.s-layout_container {
  max-width:1280px;
  padding-left:50px;
  padding-right:50px;
  margin-left:auto;
  margin-right:auto;
  width:100%
}

@media only screen and (max-width: 768px) {
	.s-layout_container {
	  max-width:750px;
	  padding-left:15px;
	  padding-right:15px;
	  margin-left:auto;
	  margin-right:auto;
	  width:100%;
	}
}

/* Estilo del bloque de precio */
.price-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color:#007AB7;
    color: white;
	padding:5px;
    padding-left:10px;
	font-size: 1.175em;
    z-index: 2;
    border-radius: 5px;
    text-align: left;
    transition: background-color 0.5s ease, color 0.5s ease; /* Transición de color */
	width:7.5em;
}
/* Estilo del bloque de precio */
.price-overlay:hover {
	border-color:#007AB7 !important;
	background-color:#FFFFFF;
	color:#007AB7;
	
	
}


/* Estilo del bloque de precio */
.price-overlay-destacadas {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color:#00B29A;
    color: white;
	padding:5px;
    padding-left:10px;
	font-size: 1.175em;
    z-index: 2;
    border-radius: 5px;
    text-align: left;
    transition: background-color 0.5s ease, color 0.5s ease; /* Transición de color */
	width:7em;
}
.price-overlay-destacadas:hover {
     background-color:#008371;
}


.price-desde{
	padding-top:5px;
	font-size:0.685em !important;
	margin-bottom:-5px
}

.price-text {
   font-size:1.175em;
}

.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center; /*  flex-end Alinea el contenido abajo */
    padding: 15px;
    background: #fff;
    border-top: 1px solid #ddd;
    min-height: 10vh;
}
 


/* Contenedor interno para que el precio y el texto queden alineados a la izquierda */
.promo-footer div {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea a la izquierda */
}
.promo-price-label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 3px;
	white-space: nowrap; /* Evita el salto de línea */
}

/* Precio principal */
.promo-price {
    font-size: 1.525em;
    font-weight: bold;
    color: #333;
    margin: 0;
    white-space: nowrap;
}



/* Botón "Más info" */
.btn-mas-info {
    margin-top:25px;
	background-color:#007AB7;
    color: white;
    padding: 4px 15px;
    font-size: 1em;
    font-weight:400;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease-in-out;
    border: none;
	margin-top:0;
    align-self: flex-end; /* Lo coloca a la derecha dentro de su contenedor */
}

.btn-mas-info:hover {
     background-color:#FFFFFF;
	 color:#007AB7;
	 border: 1px solid #007AB7;
}




.btn-whatsapp-mobile {
    display: flex;
    width: 60px; /* Aumenta el tamaño */
    height: 60px; /* Aumenta el tamaño */
    position: fixed;
    right: 0px;
    bottom: 50vh;
    justify-content: center;
    align-items: center; /* Centra verticalmente */
    z-index: 999;
    background-color: #14A38B;
    color: #FFFFFF;
    border-top-left-radius: 15px; /* Borde superior izquierdo redondeado */
    border-bottom-left-radius: 15px; /* Borde inferior izquierdo redondeado */
    border-top-right-radius: 0; /* Borde superior derecho sin redondeo */
    border-bottom-right-radius: 0; /* Borde inferior derecho sin redondeo */
    padding: 0; /* Mantiene el contenido ajustado */
}



.btn-whatsapp {
    display: flex;
    width: 60px; /* Aumenta el tamaño */
    height: 60px; /* Aumenta el tamaño */
    position: fixed;
    right: 0px;
    bottom: 50vh;
    justify-content: center;
    align-items: center; /* Centra verticalmente */
    z-index: 999;
    background-color: #007AB7;
    color: #FFFFFF;
    border-top-left-radius: 15px; /* Borde superior izquierdo redondeado */
    border-bottom-left-radius: 15px; /* Borde inferior izquierdo redondeado */
    border-top-right-radius: 0; /* Borde superior derecho sin redondeo */
    border-bottom-right-radius: 0; /* Borde inferior derecho sin redondeo */
    padding: 0; /* Mantiene el contenido ajustado */
}

.lnk-whatsapp {
	text-decoration:none;
    color: #FFFFFF;
    font-size: 1.75em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lnk-whatsapp:hover {
    color: #000000;
}
	
.lnk_header{
    font-size: 0.875em;
    color: #FFFFFF !important;
    text-decoration: none;
	font-weight:bold
}

.lnk_header:hover {
    font-size: 0.875em;
    color: #000000 !important;
    text-decoration: underline;
}






.lnk_vermas {
    font-size: 0.875em;
    color: #E31167 !important;
    text-decoration: none;
	font-weight:bold
}

.lnk_vermas:hover {
    font-size: 0.875em;
    color: #000000 !important;
    text-decoration: underline;
}


body {
	font-family: 'Outfit', sans-serif;
	text-rendering: optimizeLegibility;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}







.bg_menu {
    background-color: #45C4B0;
}

.fixed-top {
    box-shadow: 0px 4px 3px rgba(170, 170, 170, .5);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar-nav a {
    font-weight: regular;
}

.img_brand {
    width: 100%;
}


.bg_container_menu {
    width: 100%;
    background-color: #45C4B0;
}

.hr_slider {
    margin: auto;
    border-bottom: 4px solid #28388e;
}

.title_slider h1 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
}

.sub-title_slider h1 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
}

.subtitle_slider h2 {
    color: #fff;
    font-weight: 400;
    font-size: 2.5rem;
}

.sub-subtitle_slider h2 {
    color: #fff;
    font-weight: 400;
    font-size: 1.6rem;
}

.list_carac {
    font-size: 1.2em;
    margin: 1em 0;
}

input[type="search"]::placeholder {
    color: #fff;
}



.full_height {
    height: 100%
}

.full_width {
    width: 100%
}




.dropdown-toggle {
    border: 0 !important;
    box-shadow: none !important;
}

.dropdown-toggle:focus,
.dropdown-toggle:active:focus,
.dropdown-toggle.active:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}



.color_pink {
    color: #E31167 !important;
    font-size: 1.2em
}

.color_footer {
    color: var(--main-color) !important;
    font-size: 1.2em
}

.lnk_footer {
    font-size: 1em;
    color: #FFFFFF !important;
    text-decoration: none;
}

.lnk_footer:hover {
    font-size: 1em;
    color: #F79938 !important;
    text-decoration: underline;
}

.btn-prev {
    z-index: 1000;
    margin-left: -50px !important;
}

.bordered {
    border-radius: 50px;
    border: 1px solid #E31167
}

.btn-agencias {
    background: #E31167;
    border-radius: 0;
    font-size: 0.9em;
    font-weight: 400;
    color: #fff;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn-agencias:hover {
    background: #fff;
    color: #E31167;
}

.login-form {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 8%;
    right: 15%;
    z-index: 1000;
    font-size: 0.9em;
}

.input-login-form {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: 0;
    border-bottom: 1px solid #000;
}
.btnn {
    position: absolute;
    bottom: 150px;
	left:150px;
    z-index: 1100;
    display: none;
}

.btnn-1 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1100;
    display: none;
}

.styled-input {
    margin: 1.2em 0 0em;
}


