/*
Theme Name: RME
Theme URI: https://renergeticos.com/
Author: Kaudex
Author URI: https://kaudex.mx/
Description: A premium WordPress theme for energy measurement solutions companies, with customizable sections for products, services and more.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/


body {
	font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6{
	color: #151616;
}
h1, h2{
	color: #151616;
	text-transform: capitalize;
	font-family: "EB Garamond", serif;
	line-height: 3.5rem;
}
header {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

/* Header transparente inicial */
.header-transparent {
	background-color: transparent;
	box-shadow: none;
	transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	border-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header con efecto glassmorphism al hacer scroll */
.header-glass {
	background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
a {
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Efecto de subrayado de izquierda a derecha al hover */
header nav ul li a {
    position: relative;
    text-decoration: none;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f08712; /* Color primario del tema */
    transition: width 0.3s ease;
    transform-origin: left center;
}

header nav ul li a:hover::after {
    width: 100%;
}

/* Mantener el subrayado en el elemento activo del menú */
header nav ul li.current-menu-item a::after {
    width: 100%;
}

/* Asegurarse que el subrayado sea visible en ambos estados del header */
.header-transparent nav ul li a::after {
    background-color: white;
}

.header-transparent nav ul li.current-menu-item a::after,
.header-transparent nav ul li a:hover::after {
    background-color: #f08712;
}

.header-glass nav ul li a::after {
    background-color: #f08712;
}
/* Ajustar colores de texto para mejor contraste */
.header-transparent .text-gray-700 {
	color: black;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: color 0.4s ease, text-shadow 0.4s ease;
}

.header-glass .text-gray-700 {
	color: #374151; /* Texto oscuro cuando el header tiene efecto glassmorphism */
	text-shadow: none;
	transition: color 0.4s ease, text-shadow 0.4s ease;
  }

/* Logo con fondo para mejor visibilidad en header transparente */
.header-transparent .logo-container {
	/* Color primario con transparencia */
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
}
.logo-container {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  header-transparent .logo-container {
	background-color: rgba(240, 135, 18, 0.8); /* Color primario con transparencia */
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
				padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Logo sin fondo cuando el header tiene efecto glassmorphism */
  .header-glass .logo-container {
	background-color: transparent;
	padding: 0;
	transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
				padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
.gradient-bg {
	background: linear-gradient(135deg, #f08712 0%, #ff9a3c 100%);
}

.hover-up:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease;
}

.product-card:hover .card-overlay {
	opacity: 1;
}

.custom-shadow {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.custom-logo {
	height: 90px;
	width: 180px;
}

footer .custom-logo {
	height: 75px;
	width: 160px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(16%) saturate(7434%) hue-rotate(290deg) brightness(126%) contrast(108%);
	object-fit: fill;
}
footer .custom-logo-2  {
	filter: brightness(0) saturate(100%) invert(100%) sepia(16%) saturate(7434%) hue-rotate(290deg) brightness(126%) contrast(108%);
}

@media only screen and (min-width: 1px) and (max-width: 999px) {
	.custom-logo {
		height: 40px;
		width: 60px;
	}
	footer .custom-logo {
		height: 40px;
		width: 60px;
	}
}

.salient-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	will-change: opacity, transform;
}

.salient-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.salient-zoom-in {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.8s ease, transform 0.8s ease;
	will-change: opacity, transform;
}

.salient-zoom-in.visible {
	opacity: 1;
	transform: scale(1);
}

.salient-slide-left {
	opacity: 0;
	transform: translateX(60px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	will-change: opacity, transform;
}

.salient-slide-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.salient-slide-right {
	opacity: 0;
	transform: translateX(-60px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	will-change: opacity, transform;
}

.salient-slide-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.stagger-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-visible:nth-child(1) {
	transition-delay: 0.1s;
}

.stagger-visible:nth-child(2) {
	transition-delay: 0.2s;
}

.stagger-visible:nth-child(3) {
	transition-delay: 0.3s;
}

.stagger-visible:nth-child(4) {
	transition-delay: 0.4s;
}

.stagger-visible:nth-child(5) {
	transition-delay: 0.5s;
}

.stagger-visible:nth-child(6) {
	transition-delay: 0.6s;
}

.stagger-visible {
	opacity: 1;
	transform: translateY(0);
}


/* Estilos para enlaces en el body */
.site-main a:not(.gradient-bg):not(.btn):not(.button) {
    color: #f08712; /* Color primario del tema */
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-main a:not(.gradient-bg):not(.btn):not(.button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px; /* Línea más fina que en el menú */
    bottom: -1px;
    left: 0;
    background-color: #f08712;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1); /* Transición suave con aceleración */
    transform-origin: left center;
}

.site-main a:not(.gradient-bg):not(.btn):not(.button):hover {
    color: #ff9a3c; /* Color secundario más claro para hover */
}

.site-main a:not(.gradient-bg):not(.btn):not(.button):hover::after {
    width: 100%;
}

/* Estilo específico para enlaces dentro de elementos de contenido */
.entry-content a:not(.gradient-bg):not(.btn):not(.button) {
    font-weight: 500; /* Un poco más grueso para destacar */
}

/* Efecto ondulado para enlaces en bloques de texto grandes */
p a:not(.gradient-bg):not(.btn):not(.button)::after {
    height: 1.5px;
    bottom: -2px;
    background: linear-gradient(90deg, #f08712, #ff9a3c);
}

/* Estilos para enlaces en el footer */
footer a:not(.gradient-bg):not(.btn):not(.button) {
    color: #e2e8f0; /* Color gris claro */
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:not(.gradient-bg):not(.btn):not(.button):not(.custom-logo-link)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease, background-color 0.3s ease;
    transform-origin: left center;
}

footer a:not(.gradient-bg):not(.btn):not(.button):hover {
    color: white;
}

footer a:not(.gradient-bg):not(.btn):not(.button):hover::after {
    width: 100%;
    background-color: #f08712; /* El subrayado cambia al color primario en hover */
}

/* Enlaces específicos del menú de footer */
footer .space-y-3 a::after {
    bottom: -4px; /* Ajustar la posición para el menú del footer */
}

/* Enlaces en la sección inferior del footer */
footer .border-t a::after {
    height: 1px;
    background-color: #9ca3af; /* Color gris más oscuro para el subrayado inicial */
}

footer .border-t a:hover::after {
    background-color: #e2e8f0; /* Color más claro para hover */
}

/* Estilos para iconos sociales en el footer */
footer .space-x-4 a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}

footer .space-x-4 a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 135, 18, 0.2); /* Color primario con transparencia */
    transition: left 0.3s ease;
    z-index: -1;
}

footer .space-x-4 a:hover {
    transform: translateY(-3px);
}

footer .space-x-4 a:hover::before {
    left: 0;
}

footer .space-x-4 a::after {
    display: none; /* Eliminar el subrayado para estos iconos */
}

/* Asegurar que botones no tengan el efecto de subrayado */
.btn, 
.button, 
.wp-block-button__link,
.gradient-bg,
a.gradient-bg {
    position: relative;
    text-decoration: none !important;
}

.btn::after, 
.button::after, 
.wp-block-button__link::after,
.gradient-bg::after,
a.gradient-bg::after {
    display: none !important;
}

/**
 * Estilos para la sección de banner con efecto de revelación al scroll
 * Versión con expansión horizontal
 */

/**
 * Estilos para la sección de banner con efecto de revelación al scroll
 * Versión con clip-path para el recorte progresivo
 */

/* Contenedor principal */
.reveal-banner-container {
    position: relative;
    height: 100vh; /* Altura completa de la ventana */
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Contenedor interno que permitirá la animación */
.reveal-banner-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.1s ease-out; /* Transición suave para el efecto */
    will-change: transform; /* Optimización de rendimiento */
}

/* Contenedor del medio (imagen o video) con clip-path */
.reveal-banner-media {
    position: relative;
    width: 100%; /* Siempre ancho completo */
    height: 76vh; /* Altura inicial */
    margin: 0 auto;
    overflow: hidden;
    /* Clip path inicial - recorta 4% de los lados y abajo, con bordes redondeados de 20px */
    clip-path: inset(0px 4% 4% round 20px);
    transition: clip-path 0.3s ease-out, height 0.3s ease-out;
    /* Fallback para navegadores que no soportan clip-path */
    border-radius: 20px; 
    margin: 0 4%;
    margin-bottom: 4%;
}

/* Imagen o video dentro del banner */
.reveal-banner-image,
.reveal-banner-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Placeholder cuando no hay imagen */
.reveal-banner-placeholder .aspect-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor del contenido (texto) */
.reveal-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 4rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 40vh; /* Altura mínima para el contenido */
    transform: translateY(0);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.reveal-banner-text {
    max-width: 640px; /* ancho máximo para el texto */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.2s;
}

/* Estado revelado - Aplicado por JavaScript según posición de scroll */
.reveal-banner-container.revealed .reveal-banner-inner {
    transform: translateY(-10%);
}

.reveal-banner-container.revealed .reveal-banner-media {
    /* Clip path completamente extendido - sin recortes y sin bordes redondeados */
    clip-path: inset(0px 0% 0% round 0px);
    height: 100vh;
    /* Fallback */
    border-radius: 0;
    margin: 0;
}

.reveal-banner-container.revealed .reveal-banner-text {
    opacity: 1;
    transform: translateY(0);
}

/* Estado semi-revelado - Estado intermedio durante el scroll */
.reveal-banner-container.semi-revealed .reveal-banner-inner {
    transform: translateY(0%);
}

.reveal-banner-container.semi-revealed .reveal-banner-media {
    /* Clip path intermedio - recorta 2% de los lados y abajo, con bordes redondeados de 10px */
    clip-path: inset(0px 2% 2% round 10px);
    height: 100vh;
    /* Fallback */
    border-radius: 10px;
    margin: 0 2%;
    margin-bottom: 2%;
}

.reveal-banner-container.semi-revealed .reveal-banner-text {
    opacity: 0.7;
    transform: translateY(10px);
}

/* Media queries para diferentes tamaños de pantalla */
@media (max-width: 1024px) {
    .reveal-banner-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .reveal-banner-container {
        height: auto;
        min-height: 100vh;
    }
    
    .reveal-banner-media {
        height: 50vh;
        /* Clip path más pronunciado en móviles para mejor visualización */
        clip-path: inset(0px 2% 2% round 10px);
        /* Fallback */
        border-radius: 10px;
        margin: 0 2%;
        margin-bottom: 2%;
    }
    
    .reveal-banner-content {
        position: relative;
        padding: 3rem 1.5rem;
        min-height: 0;
    }
    
    .reveal-banner-text {
        opacity: 1;
        transform: translateY(0);
        max-width: 100%;
    }
    
    /* Desactivar animación en dispositivos móviles */
    .reveal-banner-container.revealed .reveal-banner-inner,
    .reveal-banner-container.semi-revealed .reveal-banner-inner {
        transform: translateY(0);
    }
    
    .reveal-banner-container.revealed .reveal-banner-media,
    .reveal-banner-container.semi-revealed .reveal-banner-media {
        height: 50vh;
        clip-path: inset(0px 0% 0% round 0px);
        /* Fallback */
        border-radius: 0;
        margin: 0;
    }
}

/**
 * Estilos para el efecto parallax suave en la sección CTA
 * Con corrección para el overlay
 */

/* Contenedor principal para el efecto parallax */
.smooth-parallax {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* El contenedor de la imagen de fondo */
.parallax-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%; /* Más alto que el contenedor para permitir movimiento */
    z-index: 0;
    will-change: transform;
}

/* La imagen de fondo en sí */
.parallax-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateZ(0); /* Ayuda con la optimización */
}

/* Estilo para el overlay */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* El contenido que se moverá a velocidad normal */
.parallax-content {
    position: relative;
    z-index: 2;
}

/* Asegurar que el overlay cubra toda la sección */
/* .smooth-parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
} */

/* Soporte para browsers antiguos */
@supports not (will-change: transform) {
    .smooth-parallax .parallax-bg-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
    }
}

/* Mejoras específicas para móviles */
@media (max-width: 768px) {
    .parallax-bg-container {
        height: 120%; /* Un poco menos de efecto en móviles para evitar problemas */
    }
}


/**
 * Estilos para el efecto parallax en el elemento completo del Hero
 * Versión corregida para mover el contenedor completo
 */

/* Contenedor para el efecto parallax */
.hero-parallax {
    position: relative;
    will-change: transform;
    transition: transform 0.05s linear;
}

/* Asegurarse de que el elemento visible funciona correctamente con el efecto */
.hero-parallax.visible {
    opacity: 1;
    transform: translateY(0); /* Esto será sobrescrito por el JS */
}

/* Para asegurar que el efecto de fade-in funciona correctamente junto con el parallax */
.salient-fade-in.hero-parallax {
    opacity: 0; /* Inicialmente invisible por el fade-in */
    transform: translateY(30px); /* Posición inicial del fade-in */
    transition: opacity 0.8s ease; /* Mantener solo la transición de opacidad */
}

.salient-fade-in.hero-parallax.visible {
    opacity: 1; /* Visible después del fade-in */
    /* No establecemos transform aquí para que lo maneje el JS del parallax */
}

/* Ajustes para pantallas más pequeñas */



.hero-container {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.hero-content {
	position: relative;
	/* top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
	/* text-align: center; */
	width: 100%;
	padding: 0 20px;
	z-index: 10;
}

.hero-title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1s forwards;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1s 0.3s forwards;
}

.hero-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: linear-gradient(45deg, #5f2eea, #7b68ee);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1s 0.6s forwards;
}

.parallax-image {
	position: absolute;
	z-index: 5;
}

.image-1 {
	top: 10%;
	right: 5%;
	width: 400px;
	height: 400px;
	/* background-color: #5f2eea; */
	border-radius: 20px;
	opacity: 0.8;
	/* transform: rotate(10deg); */
}

.image-2 {
	bottom: 15%;
	left: 90%;
	width: 200px;
	height: 200px;
	/* background-color: #7b68ee; */
	border-radius: 50%;
	opacity: 0.9;
}

.image-3 {
	top: 0%;
    left: 47%;
    width: 30%;
    height: 210px;
    opacity: 0.9;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-col-float {
	position: relative;
	width: 100%;
	height: 70vh;
	background-color: #4285F4; /* Fondo azul */
	overflow: hidden;
}

.yellow-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffedd5; /* Sección amarilla */
	clip-path: circle(0% at 100% 0%); /* Comienza completamente escondido */
	animation: revealCircle 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.curve-divider {
	position: absolute;
	top: 0;
	right: 0;
	width: 35%;
	height: 100%;
	background-color: #4285F4; /* Mismo color que el fondo */
	border-radius: 100% 0 0 100% / 50%;
	transform: translateX(30%);
}

.content-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	z-index: 1;
}

/* Elementos de contenido */
.person-image {
	position: absolute;
    bottom: 10px;
    right: 0;
    width: 30%;
    max-width: 100%;
    opacity: 0;
    animation: fadeIn 1.2s ease-out 1.5s forwards;
    transform: scale(1.05);
}

.stats-card {
	position: absolute;
	top: 30%;
	left: -10%;
	width: 200px;
	padding: 20px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	opacity: 0;
	animation: fadeIn 1s ease-out 1.8s forwards, float 4s ease-in-out 2.8s infinite;
}

.profile-widget {
	position: absolute;
	top: 15%;
	right: -5%;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	background: white;
	border-radius: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	opacity: 0;
	animation: fadeIn 1s ease-out 2.1s forwards, float 4s ease-in-out 3.1s infinite alternate;
}

/* Estilos para el contenido de las tarjetas */
.revenue-label {
	color: #999;
	font-size: 12px;
	margin-bottom: 5px;
}

.revenue-amount {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 15px;
}

.stats-indicator {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	justify-content: center;
}

.indicator-circle {
	width: 50px;
	height: 50px;
	background-color: #ffedd5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.indicator-text {
	color: #FF6347;
	font-weight: bold;
}

.time-controls {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.time-btn {
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 10px;
	background: transparent;
	border: none;
	color: #666;
	cursor: pointer;
}

.time-btn.active {
	background: #333;
	color: white;
}

.profile-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ddd;
	margin-right: 10px;
}

.profile-info {
	display: flex;
	flex-direction: column;
}

.greeting {
	font-size: 12px;
	color: #999;
}

.username {
	font-size: 14px;
	font-weight: bold;
	color: #333;
}

/* Animaciones */
@keyframes revealCircle {
	0% {
		clip-path: circle(0% at 100% 0%);
	}
	100% {
		clip-path: circle(100% at 0% -10%);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.text-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-reveal-title {
	transition-delay: 0.1s;
}

.text-reveal-description {
	transition-delay: 0.3s;
}

.text-reveal-link {
	transition-delay: 0.5s;
}

.visible .text-reveal {
	opacity: 1;
	transform: translateY(0);
}

/* Estilo personalizado para el shadow y el efecto hover */
.custom-shadow {
	box-shadow: 0 90px 70px 0 rgba(0,0,0,0.04),0 40px 35px 0 rgba(0,0,0,0.03),0 25px 15px 0 rgba(0,0,0,0.03),0 11px 7px 0 rgba(0,0,0,0.03),0 2px 5px 0 rgba(0,0,0,0.03);
}

.hover-up {
	transition: transform 0.3s ease;
}

.hover-up:hover {
	transform: translateY(-10px);
}

/* Define el color primario */
.text-primary {
	color: #ff6b00;
}

.bg-orange-100 {
	background-color: #fff3e0;
}

.wpcf7-submit {
    background: linear-gradient(135deg, #f08712 0%, #ff9a3c 100%);
    font-weight: 600;
    padding: 0.5rem 2.5rem;
    border-radius: 10px;
    color: white; 
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-submit:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

@media (max-width: 768px) {
    .hero-parallax {
        transform: none !important; /* Desactivar en móviles para mejor rendimiento */
    }
    
    .salient-fade-in.hero-parallax.visible {
        transform: translateY(0) !important; /* Asegurar que sea visible en móviles */
    }
	
}
@media (max-width: 992px) {
    .hero-col-float {
        height: 50vh;
        width: 96vw;
    }
	.person-image{
		top: 20%;
		bottom: 0;
	}
	.stats-card {
		display: none	;
	}
	.profile-widget {
        bottom: 0;
        top: 70%;
        height: 60px;
        left: 0;
        max-width: 350px;
    }
	
}

.swiper-slide img {
	width: 100%;
}