/* 
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 */

/* Asegurar que la cabecera sticky esté oculta al inicio */
.header-sticky {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
	height: 40px;
}

/* Ocultar la cabecera grande cuando se hace scroll */
.scrolled .header-big {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

/* Asegurar que la cabecera sticky aparezca cuando se hace scroll */
.scrolled .header-sticky {
    display: flex !important;
    transform: translateY(0);
    opacity: 1;
}
/* Menu hamburguesa en laptop*/
@media (max-width: 1366px) {

  .header-sticky .elementor-nav-menu--main {
    display: none !important;
  }

  .header-sticky .elementor-menu-toggle {
    display: flex !important;
  }
.header-sticky .elementor-nav-menu--dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    z-index: 9999;
    position: absolute; /* o fixed si prefieres */
    top: 30px !important; /* debajo del header */
    left: 0;
    width: 100%;
    background-color: white; /* o el color que uses */
  }
}


/*ICONO PAGO*/
.icono-personalizado {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #05A69A; 
    border-radius: 25%;
}

.icono-personalizado i {
    color: #ffffff; /* Color blanco */
    font-size: 14px;
}

/* Tamaño más pequeño en la cuadrícula */
.icono-pequeno {
    width: 20px;
    height: 20px;
}

.icono-pequeno i {
    font-size: 14px;
}


/* Colores personalizados según la categoría */
.categoria-salud {
    background-color: #d40061 !important; /* Rojo */
}

.categoria-nutricion {
    background-color: #009fe3 !important; /* Azul */
}

.categoria-bienestar {
    background-color: #a26e9d !important; /* Verde */
}


/*FORMULARIO REGISTRO*/
.ihc_locker_3 {
    background: none !important;
    padding: 20px !important;
    border-radius: 15px !important;
	max-width: 100%;
	border-style: solid !important;
	border-color: #05a79b !important;
	border-width: 3px;
	 
}
.lk_wrapper {
	background: none !important;
}

.salud-texto .ihc_locker_3  h2{
	color: #000000 !important;	
}
.ihc-login-template-11 .impu-form-submit input{
	background-color: #05a79b !important;
	color: #ffffff !important;
	border: none !important;
}

/*SALUD*/

.salud-texto h2{
	color: #d40061 !important;
	margin-top: 25px !important;
}
.salud-texto strong{
	color: #32363B !important;
}
.salud-texto ul li{
	padding: 3px !important;
}

.salud-texto ul li::marker {
	color: #d40061 !important;
	font-size: 1.2rem;	
}
.salud-seccio h1 {
	text-transform: uppercase !important;

}
.salud-seccio h3 {
	text-transform: uppercase !important;
}
.amp h2 {
	font-size: 2.5rem !important;
	
}

/*GRID SALUD*/
.bucle1 h2{
	font-size: 2.25rem !important;
}
.bucle2 h2{
	font-size: 1.75rem !important;
}
.bucle3 h2{
	font-size: 2.25rem !important;
}
.bucle4 h4{
	font-size:1rem !important;
}
.bucle4 h2{
	font-size: 1.35rem !important;
}

/*NUTRICION*/

.nutricion-texto h2{
	color: #009fe3 !important;
	margin-top: 25px !important;
}

.nutricion-texto strong{
	color: #32363B !important;
}

.nutricion-texto ul li{
	padding: 3px !important;
}



.nutricion-texto ul li::marker {
	color: #009fe3 !important;
	font-size: 1.2rem;	
}
.nutricion-seccio h2 {
	text-transform: uppercase !important;
}
.nutricion-recuadro h4{
	color: #ffffff !important;
	text-transform: none !important;
	font-weight: bold !important;
}
.nutricion-recuadro ul li{
	padding: 0px !important;
}
.nutricio-seccio h1 {
	text-transform: uppercase !important;

}
.nutricio-seccio h3 {
	text-transform: uppercase !important;
}

/*BIENESTAR*/

.bienestar-texto h2{
	color: #A26E9D !important;
	margin-top: 25px !important;
}
.bienestar-texto strong{
	color: #32363B !important;
}
.bienestar-texto ul li{
	padding: 3px !important;
}

.bienestar-texto ul li::marker {
	color: #A26E9D !important;
	font-size: 1.2rem;	
}
.bienestar-seccio h1 {
	text-transform: uppercase !important;

}
.bienestar-seccio h3 {
	text-transform: uppercase !important;
}

/*PUNTO DE ENCUENTRO*/
.encuentro-texto strong{
	color:#32363B !important;
}
.encuentro-seccio h1 {
	text-transform: uppercase !important;

}
.encuentro-seccio h3 {
	text-transform: uppercase !important;
}

/*RELACIONADO*/
.acf-articulos-grid {
    display: flex;
    flex-wrap: wrap; /* Permite que los artículos bajen de línea si no caben */
    gap: 15px; /* Espacio entre los elementos */
    justify-content: center; /* Alinea los elementos en el centro */
}

.acf-articulo-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s;
    width: 32%; 
	min-width: 300px;
}

.acf-articulo-item:hover {
    transform: translateY(-5px);
}

.acf-articulo-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .acf-articulos-grid {
        display: flex;
        flex-direction: column;
		
    }

    .acf-articulo-item {
        width: 95%;
        margin: 15px auto;
    }

}
/*FLASHES*/
.boton-flashes a{
	background-color: #93106f !important;
}
.boton-flashes a:hover{
	background-color: #ffffff !important;
	color: #93106f !important;
	border-color: #93106f !important;
	
}
/*HOME*/
.home-seccio h2{
	font-size: 2.5rem !important;
	text-transform: uppercase !important;
}
.movil-titular h1 {
	font-size: 3rem !important;
}
.entradeta p{
	font-size: 1.3rem !important;
}
@media (max-width: 768px){
	.movil-titular h1 {	font-size: 2rem !important;
}
	.entradeta p{
	font-size: 1rem !important;
}
}


/*VARIAT*/
.avant h4{
	font-size: 1.2rem !important;
}
ul {
	padding-bottom: 5px;
}

/*FLASHES*/






/*FORMULARI*/
.ihc-locker-wrap{
	
}
.ihc-login-template-11 .impu-form-line-fr{
	background-color: #ffffff !important;
	border-radius: 50px !important;
}
.impu-form-line-fr.impu-form-submit {
	background-color: rgba(255, 255, 255, 0) !important;
	width: 100% !important;
}

.elementor-widget-container.ihc-locker-wrap{
	background-color: rgba(255, 255, 255, 0) !important;
}

.ihc_locker_1{
	background-color: #dcf3f0 !important;
	padding: 25px !important;
	border-radius: 10px;
	min-width: 375px;
	max-width: 500px;
}


/*ICONO LOGIN*/
.usuario-logueado {
  font-weight: 600;
  color: #fff !important;
  font-size: 16px;
  padding: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.usuario-logueado:hover {
  color: #05A69A;
}


.icono-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background-color: #05A69A;
  border: 2px solid #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px){
	.icono-login {
		width: 30px;
  		height: 30px;
	}
}
.icono-login i {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.icono-login:hover {
  background-color: #fff;
  border-color: #ffffff;
}

.icono-login:hover i {
  color: #05A69A;
}


.empresa{
	font-size: 0.8rem !important;
	text-transform: uppercase !important;
	color: #777777 !important;
	font-weight: 700 !important;

	
	
}
.empresa p{
	padding: 5px 0 !important;
	font-size: 0.8rem !important;
	text-transform: uppercase !important;
	color: #777777 !important;
	font-weight: 700 !important;
	border-top: 1px solid #bebdbd;
}

.empresa-single{
	font-size: 0.8rem !important;
	text-transform: uppercase !important;
	color: #777777 !important;
	font-weight: 700 !important;
	
	
	
}
.empresa-single p{
	padding: 0px 0 !important;
}