@charset "utf-8";
/* CSS Document */

      .material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      }
      .glass-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
      }
      .hover-card {
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
      }
      .hover-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      }
      .btn-transition {
        transition: all 0.3s ease;
      }
      .nav-link {
        position: relative;
        transition: color 0.3s ease;
      }
      .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #149AD7;
        transition: width 0.3s ease;
      }
      .nav-link:hover::after {
        width: 100%;
      }
      [data-aos] {
        pointer-events: none;
      }
      .aos-animate {
        pointer-events: auto;
      }
	html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


/* VARIABLES DE COLOR */
:root {
    --rojo-urgencia: #ec3233;
    --azul-menu: #044083;
}

/* =========================================
   ESTILOS MOBILE FIRST (Por defecto)
========================================= */


/* Menú Inferior Sticky */
.menu-mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--azul-menu);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 10px 0 8px 0;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    font-family: inherit;
}

.menu-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    width: 25%;
    transition: opacity 0.3s ease;
}

.menu-mobile-item:hover,
.menu-mobile-item:focus {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
}

.menu-mobile-item i {
    font-size: 22px;
    margin-bottom: 4px;
}

/* Ítem Central Destacado en Mobile */
.item-central-destacado {
    position: relative;
    /* Añadimos un poco de altura base para asegurar que el contenido interno se distribuya bien */
    height: 40px; 
}

.circulo-rojo-urgencia {
    position: absolute;
    bottom: 5px; /* CORRECCIÓN: Valor positivo para que no se corte por debajo de la pantalla */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--rojo-urgencia);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #ffffff;
}

.circulo-rojo-urgencia i {
    font-size: 22px;
    margin-bottom: 2px;
}

.circulo-rojo-urgencia span {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}

/* =========================================
   MEDIA QUERIES (Desktop - Desde 768px)
========================================= */
@media (min-width: 768px) {
    /* Ocultar menú mobile en resoluciones mayores */
    .menu-mobile-sticky {
        display: none;
    }
}

@media (max-width: 500px) {
    /* Ocultar menú mobile en resoluciones mayores */
    .trabajo {
        display: block!important;
		width:50%!important;
		border-radius:0px;
		
    }   

 } 