@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    /* Nueva Paleta de Colores */
    --navy: #2F4156;
    --teal: #567C8D;
    --sky-blue: #C8D9E6;
    --beige: #F5EFEB;
    --white: #FFFFFF;

    --primary: var(--navy);
    --secondary: var(--teal);
    --accent: var(--sky-blue);
    --bg-light: var(--beige);

    --text-dark: #1F2A38;
    --text-muted: #4B5563;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-weight: 700;
}

a {
    transition: all 0.2s ease;
}

.container {
    padding: 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #ffffff;
    color: #2f4156;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #2f4156;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover {
    color: white;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2f4156;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }
}


.btn-nav-login {
    background: #2f4156;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px;
}

.btn-nav-login:hover {
    background: #e2e8f0;
    color: #2f4156 !important;
}

.btn-nav-login::after {
    display: none;
}

.container-full-height {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

main {
    flex: 1;
}

.main-footer {
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    padding: 2rem 5%;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #2f4156;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}