/*
 Theme Name:   Identiva
 Theme URI:    https://imaestudio.cl
 Description:  Tema hijo para personalizar el tema principal.
 Author:       Philippe Paris - IMA Estudio
 Author URI:   https://philippeparis.net/
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/


/* Estilos iniciales del header */
.header-wrapper {
    background-color: rgba(0, 0, 0, 0); /* Fondo transparente */
    height: 80px; /* Altura inicial */
    transition: all 0.3s ease; /* Transición suave para color y altura */
    position: sticky; /* Fija el header en la parte superior */
    top: 0;
    z-index: 1000; /* Asegura que esté encima de otros elementos */
}

/* Estilos cuando se hace scroll (clase dinámica) */
.header-wrapper.scrolled {
    background-color: #ffffff; /* Fondo blanco al hacer scroll */
    height: 60px; /* Altura reducida */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra opcional */
}