/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/*GENERALES*/
.semibold{
    font-weight:600;
}
.blur{
    backdrop-filter: blur(29.649999618530273px);
}
.bold{
	font-weight:700;
}
.resalta{
	display: inline-flex;
	color: #fff;
	background: linear-gradient(90deg, #FCF1DE -22.83%, #827DE5 35.33%);
	border-radius: 10px;
	padding-left:5px;
	padding-right:5px;
}
.fondo-morado{
	background: linear-gradient(93deg, #7672DF 0.88%, #815FD2 52.39%, #5853D2 99.37%);
	border-radius:15px;
}

/*productos con hover*/
.image-container {
    position: relative;
    width: 100%; /* Ancho total del contenedor padre */
    max-width: 600px; /* Opcional: establece un máximo para que sea responsivo */
    overflow: hidden;
    cursor: pointer;
    border-radius:30px;
}
.image-container img {
    display: block;
    width: 100%; /* Asegura que cubra el ancho del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    transition: opacity 0.3s ease;
}
.image-container img.overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Oculta la imagen de hover por defecto */
}
.image-container:hover img.overlay {
    opacity: 1; /* Muestra la imagen de hover al pasar el mouse */
}
.image-container:hover img.base {
    opacity: 0; /* Oculta la imagen base al pasar el mouse */
}

/*tres con ingredientes*/
/* Contenedor principal */
.container {
    position: relative;
    /* El contenedor tomará el tamaño de su contenedor padre */
    width: 100%;
    height: 100%;
    
}

/* Video de fondo */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius:21px;
}

/* Contenido inicial */
.content {
    position: relative;
    width: 100%;
    height: 634px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease-in-out;
    border-radius:21px;
}

/* Contenido alternativo al hacer hover */
.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding-left:50px;
    padding-right: 50px;
    border-radius:21px;
}
.container:hover .content {
    opacity: 0;
}
.container:hover .hover-content {
    opacity: 1;
}
/* Estilo del texto */
.tit-video {
    margin-top: 30px;
    color: #FFF;
    text-align: center;
    font-family: "Albert Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 100% */
    text-transform: uppercase;
}
/* Estilo del ícono SVG */
.img-ingre {
    width: 50px;
    height: 50px;
}
/* Estilo del contenido al hacer hover */
.hover-content div {
    margin: 10px 0;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}
.text-ingre{
    color: #FFF;
    text-align: center;
    font-family: "Albert Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-top: 30px;
}
.features{
    border-radius:50px;
}

/*FORMULARIO CONTACTO*/
.form label{
	color: #fff;
	font-family: "Albert Sans";
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width:100%;
}
.form .full{
	width:100%;
}
.form .medio{
	display:flex;
	gap:15px;
}
.form .medio .left{
	width:65%;
}
.form .medio .right{
	width:35%;
}
.form textarea{
	width:100%;
	min-width:100%;
	max-width:100%;
	height:87px;
	min-height:87px;
	max-height:150px;
	border-radius:10px;
	border: 1px solid #CFCFCF;
	outline:none;
	margin-top:5px;
	background:transparent;
}
.form input[type="text"],.form input[type="tel"],.form input[type="email"]{
	border-radius:10px;
	border: 1px solid #CFCFCF;
	outline:none;
	margin-top:5px;
	background:transparent;
	color:#fff;
}
.form input[type="text"]::placeholder,.form input[type="tel"]::placeholder,.form input[type="email"]::placeholder{
	color:#fff;
}
.form input[type="submit"]{
	width:100%;
	border:solid 1px #3987C4;
	background:#fff;
	color: #827DE5;
    text-align: center;
    font-family: Frutiger;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
	padding-top:20px;
	padding-bottom:20px;
	border-radius:20px;
}
.form input[type="submit"]:hover{
	background:#ebebeb;
	color:#1d1d1d;
}
.form .full{
	color:#fff;
}
.dirweb{
	color:#fff !important;
	text-decoration:underline !important;
}
.dirweb:hover{
	font-weight:700;
	cursor: pointer;
}

/*MAPA*/
.titulo-mapa{
	color: #827DE5;
	font-family: "Frutiger", Sans-serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 39.6px; /* 110% */
}
.buscar-mapa{
	border-radius: 15px !important;
	border: 1px solid #3987C4 !important;
	background:transparent;
	outline:none;
	color:#34487A;
}
#mapa{
	border-radius:42px !important;
}
#lista-oficinas{
	padding-left:8% !important;
}
#listado{
	height:60vh;
	overflow-y:scroll;
	padding-right:20px !important;
}	
/* Personalización del scrollbar para este div */
    #listado::-webkit-scrollbar {
      width: 8px; /* Ancho de la barra de desplazamiento */
    }
    #listado::-webkit-scrollbar-track {
      background: #D9D9D9; /* Color de fondo del track */
      border-radius: 9px; /* Bordes redondeados */
    }
    #listado::-webkit-scrollbar-thumb {
      background: #A6A6A6; /* Color del thumb */
      border-radius: 9px; /* Bordes redondeados */
    }
    #listado::-webkit-scrollbar-thumb:hover {
      background: #555; /* Color del thumb al pasar el ratón */
    }	

#listado li{
	padding-top:20px;
	padding-bottom: 20px;
	border-bottom: solid 1px #CFCFCF;
	display:flex;
}
#listado li .ciudad{
	display:flex;
	width:100%;
	color:#827DE5;
	font-family: "Frutiger", Sans-serif;
	font-weight:700;
}
#listado li .telefono{
	display:flex;
	width:100%;
	color:#34487A;
	font-family: "Frutiger", Sans-serif;
}
#listado .tag{
	padding-right:20px;
}
#listado .tag img{
	width:24px;
	height:auto;
	max-width:24px;
}
#listado .info{
	display:flex;
	flex-wrap:wrap;
	color:#34487A;
	font-family: "Frutiger", Sans-serif;
}
.contenedor-mapa{
	display: flex;	
}
/*RESPONSIVEEEEEE*/
@media only screen and (max-width: 768px) {
  .contenedor-mapa {
    flex-direction:column;
  }
	#mapa{
		width:100% !important;
		height:50vh !important;
	}
	#lista-oficinas{
		width:100% !important;
		height:50vh !important;
	}	
	.titulo-mapa{
		text-align:center;
	}
}