/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: #f4f7fb;
}

h1, h2, h3 {
    color: #003366;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
}

/* Navbar */
.navbar {
    background: #003366;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}

.navbar .menu a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.navbar .menu a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), #003366;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
}

.btn {
    background: #0066cc;
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Lists */
.list {
    list-style: none;
    padding: 0;
}

.list li {
    background: white;
    margin: 8px 0;
    padding: 10px;
    border-left: 5px solid #003366;
    border-radius: 4px;
}

/* Contact */
.contact-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 450px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.logo-menu {
    height: 45px;
}

.logo-hero {
    height: 140px;
    margin-bottom: 25px;
}