.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

/* --- Top Bar Styles --- */
.top-bar {
    background-color: var(--dark-blue);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: #f5f5f5; /* Color de iconos en top bar */
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: 0.3s;
}

/* --- Main Nav Styles --- */
.main-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--dark-blue);
    font-size: 28px;
    font-weight: 800;
}

.logo i {
    color: #3e62e1;
    font-size: 32px;
    margin-right: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* --- Button Style --- */
.btn-appointment {
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(28, 181, 241, 0.3);
    transition: transform 0.3s;
}

.btn-appointment:hover {
    transform: translateY(-2px);
}