@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.inter-Inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Inter, 'Segoe UI';
    line-height: 1.6;
    color: #000;
    background: #f8fafc;
}

/* Header */
.header {
    background: linear-gradient(135deg, #004570 0%, #001125 100%);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo img {
    height: 4rem;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.articulo{
    flex: 1;
    width: 90%;
    margin: 80px auto 20px auto;
    padding: 20px;
    background: white;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.articulo h2{
    text-align: center;
    font-size: 2.5rem;
    color: #004570;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px;
}

.fecha{
    color: #777;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer {
    background: #1e293b;
    color: white;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.footer-section {
    width: fit-content;
    max-width: 25%;
    margin: 1rem 0;
}

.footer-section img{
    width: 4.5rem;
    margin-top: 1.5rem;
    margin-right: 0.5rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .articulo {
        width: 95%;
        margin-top: 80px;
        padding: 15px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .articulo h2 {
        font-size: 6vw;
    }

    .footer-content{
        width: 100%;
        flex-direction: column;
    }

    .footer-section{
        max-width: 100%;
    }
}