body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0A2540;
}

.bg-naranja{
    background-color: #F15927;
}
.bg-azul{
background-color: #043b60;
}
.bg-1{
    background: #F15927;
    background: linear-gradient(80deg,rgba(241, 89, 39, 1) 0%, rgba(4, 59, 96, 1) 55%);
}
.bg-2 {
    position: relative; /* Crea el marco de referencia para la imagen */
    overflow: hidden;   /* Evita que la imagen se salga de los bordes redondeados si los hay */
}

.bg-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url('../img/fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    opacity: 0.7; 
    
    z-index: 0; 
}

/* Asegura que el contenido pase al frente */
.bg-2 > * {
    position: relative;
    z-index: 1;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Línea sutil divisoria */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Sombra ligera */
}

.bg-tech-gradient {
    background: linear-gradient(135deg, #0A2540 0%, #1B3A6B 100%);
}

.text-gradient {
    background: linear-gradient(90deg, #0A2540, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.card-saas {
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-saas:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

[x-cloak] {
    display: none !important;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-floating {
    animation: floating 3s ease-in-out infinite;
}