body {
    background: #000428;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #004e92, #000428);  
background: linear-gradient(to right, #004e92, #000428); 
}
header {
    margin: 30px 0;
}
.contenido {
    padding:20px;
}
.contenido-principal {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
}
.presupuesto p{
    margin-bottom: 0;
    font-weight: bold;
}
.presupuesto p span {
    font-weight: normal;
}
#gastos {
    margin-bottom: 30px;
}
h1{
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color: white;
}
h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    color:#004e92;
    font-size: 22px;
    margin-bottom:30px;
}

/* Footer */
.footer {
    background: #000428;  /* Fallback para navegadores antiguos */
    background: -webkit-linear-gradient(to right, #004e92, #000428);  
    background: linear-gradient(to right, #004e92, #000428);  
    color: white;  /* Texto blanco para contraste */
    text-align: center;
    padding: 2rem;  /* Más espaciado para mayor elegancia */
    position: relative;
    bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
    font-family: 'Arial', sans-serif;  
    border-radius: 20px;
}

/* Efecto al pasar el ratón (hover) */
.footer:hover {
    background: linear-gradient(to right, #004e92, #2c3e50);  /* Cambio de color en hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);  /* Sombra más pronunciada */
}

/* Contenido del footer */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

/* Estilo para la marca */
.footer .brand {
    font-size: 1.5rem;  /* Tamaño grande para la marca */
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);  /* Sombra de texto para resaltar */
    letter-spacing: 1px;  /* Espaciado entre letras para dar un toque único */
}

/* Estilo para el número de contacto */
.footer .contact {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-style: italic;  /* Cursiva para darle estilo */
}

/* Efecto responsivo para móviles */
@media (max-width: 768px) {
    .footer .brand {
        font-size: 1.2rem;
    }
    .footer .contact {
        font-size: 0.9rem;
    }
}