/*
Theme Name: ASR Consulting
Template: hello-elementor
Author: PlaneaWeb
Author URI: https://planeaweb.com
Version: 3.4.4.1752481426
Updated: 2025-07-14 08:23:46

*/

h2 {margin-top:50px;}

/* HEADER STICKY *****************************************************************************************/
/* Estado inicial */
.header-sticky {
  background: transparent !important;
  transition: all 0.3s ease;
}
.header-sticky .elementor-nav-menu a {
  color: white !important;
}
.header-sticky .boton-hablamos {
  background-color: white !important;
  color: #11324d !important;
  transition: all 0.3s ease;
}

/* Al hacer scroll */
.header-sticky.scrolled {
  background: rgba(17, 34, 51, 0.95) !important; /* fondo azul oscuro elegante */
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  background-image: none !important; /* esto anula el degradado de Elementor */
}
.header-sticky.scrolled .elementor-nav-menu a {
  color: white !important; /* asegúrate de que sigan siendo visibles */
}
.header-sticky.scrolled .boton-hablamos {
  background-color: #ffffff !important;
  color: #11324d !important;
}


/* Lista - Icono numerada *****************************************************************/

/* Contenedor principal - inicializar contador */
.lista-iconos .elementor-icon-list-items {
    position: relative;
    counter-reset: step-counter;
}

/* Cada elemento de la lista */
.lista-iconos .elementor-icon-list-item {
    position: relative;
    padding-left: 80px !important;
    padding-bottom: 40px;
    margin-bottom: 20px;
	margin-left:-23px !important;
}

/* IMPORTANTE: Ocultar completamente el icono original */
.lista-iconos .elementor-icon-list-icon {
    display: none !important;
}

/* Crear el número circular */
.lista-iconos .elementor-icon-list-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    background: #3a6077;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    z-index: 10;
    font-family: Arial, sans-serif;
}

/* Ajustar el texto */
.lista-iconos .elementor-icon-list-text {
    margin: 0 !important;
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .lista-iconos .elementor-icon-list-item {
        padding-left: 70px !important;
    }
    
    .lista-iconos .elementor-icon-list-item::before {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lista-iconos .elementor-icon-list-item:not(:last-child)::after {
        left: 23.5px;
        top: 65px;
    }
}

/******************************************************************************************/
.fondo-hover-azul::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(58, 96, 119, 0.1); /* Azul clarito de ASR Consulting */
  transition: left 0.5s ease;
  z-index: 1;
}

.fondo-hover-azul:hover::before {
  left: 0;
}

/* Asegurar que el contenido esté visible sobre el fondo */
.fondo-hover-azul * {
  position: relative;
  z-index: 2;
}

/* Opcional: Agregar cursor pointer para indicar interactividad */
.fondo-hover-azul {
  cursor: pointer;
}

.puntos, .puntos-blancos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.puntos::before, .puntos::after, .puntos-blancos::before, .puntos-blancos::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: relative;
	  background-color: #425F7D;

}

.puntos-blancos::before,
.puntos-blancos::after {background-color: #ffffff;}

/*********************************************************************************/

/* Estadísticas Grid */
.asr-estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.asr-estadistica-item {
    padding: 30px 20px;
    background: #f8f9fa;
    border: 2px solid #34495e;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.asr-estadistica-item:hover {
    background: #34495e;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 73, 94, 0.2);
}

.asr-numero-estadistica {
    font-size: 2.5em;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 15px;
    display: block;
    transition: color 0.3s ease;
}

.asr-estadistica-item:hover .asr-numero-estadistica {
    color: white;
}

.asr-etiqueta-estadistica {
    color: #7f8c8d;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.asr-estadistica-item:hover .asr-etiqueta-estadistica {
    color: rgba(255,255,255,0.9);
}

/* Cajas destacadas */
.asr-cuadro-destacado {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.asr-cuadro-destacado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9, #3498db);
    background-size: 200% 100%;
    animation: asr-gradiente-animado 3s infinite;
}

@keyframes asr-gradiente-animado {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Metodología */
.asr-metodologia-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #34495e;
    border-radius: 8px;
}

.asr-paso-metodologia {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #34495e;
    transition: all 0.3s ease;
}

.asr-paso-metodologia:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.15);
}

.asr-paso-metodologia:last-child {
    margin-bottom: 0;
}

.asr-titulo-paso {
    color: #34495e;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.1em;
}

.asr-descripcion-paso {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Cita destacada */
.asr-cita-destacada {
    text-align: center;
    font-size: 1.3em;
    font-style: italic;
    color: #34495e;
    margin: 50px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #34495e;
    border-radius: 8px;
    position: relative;
}

.asr-cita-destacada::before {
    content: '"';
    font-size: 6em;
    position: absolute;
    top: -10px;
    left: 30px;
    color: rgba(52, 73, 94, 0.1);
    font-family: Georgia, serif;
}

/* Grid de valores */
.asr-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.asr-valor-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #34495e;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.1);
    transition: all 0.3s ease;
}

.asr-valor-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(52, 73, 94, 0.15);
}

.asr-valor-titulo {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 700;
}

.asr-valor-descripcion {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Lista de funciones mejorada */
.asr-lista-funciones {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.asr-lista-funciones li {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #34495e;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.asr-lista-funciones li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.15);
}

.asr-lista-funciones li strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size: 1.05em;
}

/* Párrafo destacado */
.asr-parrafo-destacado {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Títulos con línea */
.asr-titulo-con-linea {
    position: relative;
    padding-left: 25px;
    color: #34495e;
    font-weight: 600;
}

.asr-titulo-con-linea::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .asr-estadisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .asr-valores-grid {
        grid-template-columns: 1fr;
    }
    
    .asr-metodologia-container {
        padding: 25px;
    }
    
    .asr-cita-destacada {
        font-size: 1.1em;
        padding: 30px 15px;
    }
}

/* SINGLE POST ********************************************************************************/
.intro {
            font-size: 1.3rem;
            color: #3a6077;
            margin-bottom: 2.5rem;
            padding: 2rem 0;
            border-top: 3px solid #3a6077;
            border-bottom: 3px solid #3a6077;
            text-align: center;
            font-style: italic;
        }

        .destacado {
            background: #f8f9fa;
            padding: 2rem;
            margin: 2.5rem 0;
            border-left: 4px solid #3a6077;
            font-size: 1.2rem;
            font-style: italic;
        }

        .caso {
            background: #fdfdfd;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #e8e8e8;
            position: relative;
        }

        .caso h3 {
            margin-top: 0;
            color: #2c3e50;
        }

        .cifra {
            font-size: 2rem;
            font-weight: bold;
            color: #3a6077;
            display: block;
            margin-bottom: 0.5rem;
        }

        .llamada {
            background: linear-gradient(135deg, #2c3e50 0%, #3a6077 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-top: 4rem;
        }

        .llamada h2 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
        }

        .llamada p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        

        .firma {
            text-align: center;
            margin-top: 3rem;
            font-style: italic;
            opacity: 0.8;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .estadistica {
            text-align: center;
            margin: 3rem 0;
            padding: 2rem;
            background: #f8f9fa;
        }

        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-numero {
            font-size: 2.5rem;
            font-weight: bold;
            color: #3a6077;
            display: block;
        }

        .stat-texto {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
           .stats {
                flex-direction: column;
                gap: 2rem;
            }

          
        }